From 2c2326a13c9867ec1cbf0e64e127ff28c7149404 Mon Sep 17 00:00:00 2001
From: Pawel Wieczorek
Date: Fri, 15 Jan 2021 10:34:17 +0100
Subject: 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
---
bootstrap/vagrant-minimal-onap/Vagrantfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'bootstrap/vagrant-minimal-onap/Vagrantfile')
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
--
cgit 1.2.3-korg