You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2022/06/24 09:07:53 UTC

[dolphinscheduler] branch 2.0.6-prepare updated: Fix K8s deployment bitnami version error (#10569)

This is an automated email from the ASF dual-hosted git repository.

zhongjiajie pushed a commit to branch 2.0.6-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/2.0.6-prepare by this push:
     new 7dd7e4afe8 Fix K8s deployment bitnami version error (#10569)
7dd7e4afe8 is described below

commit 7dd7e4afe8806d60343588d7d78ae79795e437ec
Author: 旺阳 <qi...@cisco.com>
AuthorDate: Fri Jun 24 17:07:44 2022 +0800

    Fix K8s deployment bitnami version error (#10569)
---
 docker/kubernetes/dolphinscheduler/Chart.yaml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/docker/kubernetes/dolphinscheduler/Chart.yaml b/docker/kubernetes/dolphinscheduler/Chart.yaml
index 7f9561e8c4..26346e3b1b 100644
--- a/docker/kubernetes/dolphinscheduler/Chart.yaml
+++ b/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