Merge "[OOM] Skip faulty install of helm2 stable repo"
authorJessica Wagantall <jwagantall@linuxfoundation.org>
Mon, 4 Jan 2021 17:16:17 +0000 (17:16 +0000)
committerGerrit Code Review <gerrit@onap.org>
Mon, 4 Jan 2021 17:16:17 +0000 (17:16 +0000)
shell/helm2-repo-init.sh

index fb2f810..23bcdce 100755 (executable)
@@ -3,7 +3,8 @@
 set -e -o pipefail
 
 # client only init, tiller will not be installed
-helm init --client-only
+helm init --client-only --skip-refresh
+helm repo rm stable
 cd kubernetes/ || exit
 make repo
 cd ..