From: Pawel Wieczorek Date: Fri, 15 Jan 2021 09:34:17 +0000 (+0100) Subject: Force new location of default Helm chart repository X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F05%2F116905%2F1;p=integration.git Force new location of default Helm chart repository 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 --- diff --git a/bootstrap/vagrant-minimal-onap/Vagrantfile b/bootstrap/vagrant-minimal-onap/Vagrantfile index fb1e40217..e0ddafd9d 100644 --- a/bootstrap/vagrant-minimal-onap/Vagrantfile +++ b/bootstrap/vagrant-minimal-onap/Vagrantfile @@ -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