Force new location of default Helm chart repository 05/116905/1
authorPawel Wieczorek <p.wieczorek2@samsung.com>
Fri, 15 Jan 2021 09:34:17 +0000 (10:34 +0100)
committerPawel Wieczorek <p.wieczorek2@samsung.com>
Fri, 15 Jan 2021 09:34:24 +0000 (10:34 +0100)
Location of the default Helm chart repository changed
from: https://kubernetes-charts.storage.googleapis.com
to:   https://charts.helm.sh/stable

This change has been addressed by Helm 2.17 release [1] but recommended
Helm version for Guilin is 2.16.10 which still requires manual override.

[1] https://github.com/helm/helm/pull/8901

Issue-ID: ONAPARC-551
Change-Id: I63d94e37f639a213cff38c2e92166c41f29d1a9c
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
bootstrap/vagrant-minimal-onap/Vagrantfile

index fb1e402..e0ddafd 100644 (file)
@@ -196,7 +196,7 @@ $setup_helm_cluster = <<-SCRIPT
   kubectl config use-context onap
   kubectl -n kube-system create serviceaccount tiller
   kubectl create clusterrolebinding tiller --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
-  helm init --service-account tiller
+  helm init --stable-repo-url https://charts.helm.sh/stable --service-account tiller
   kubectl -n kube-system rollout status deploy/tiller-deploy
 SCRIPT