Browse Source

Fix K8s deployment bitnami version error (#10569)

2.0.7-release
旺阳 3 years ago committed by GitHub
parent
commit
7dd7e4afe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      docker/kubernetes/dolphinscheduler/Chart.yaml

10
docker/kubernetes/dolphinscheduler/Chart.yaml

@ -44,9 +44,15 @@ appVersion: 2.0.5
dependencies:
- name: postgresql
version: 10.3.18
repository: https://charts.bitnami.com/bitnami
# Due to a change in the Bitnami repo, https://charts.bitnami.com/bitnami was truncated only
# containing entries for the latest 6 months (from January 2022 on).
# This URL: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
# contains the full 'index.yaml'.
# See detail here: https://github.com/bitnami/charts/issues/10833
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
condition: postgresql.enabled
- name: zookeeper
version: 6.5.3
repository: https://charts.bitnami.com/bitnami
# Same as above.
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
condition: zookeeper.enabled

Loading…
Cancel
Save