summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2021-01-04 17:16:17 +0000
committerGerrit Code Review <gerrit@onap.org>2021-01-04 17:16:17 +0000
commite7771d008951059c94440e64582ef464581ed714 (patch)
tree5a7b7bb362ab0b405d08642c9eb6f99ac041303a
parentf4f78ae24e975e7eb9f5f884b5324f37d59a6b30 (diff)
parentb92ab9811d473a6a5fc702909b8064f8ecaa21d7 (diff)
Merge "[OOM] Skip faulty install of helm2 stable repo"
-rwxr-xr-xshell/helm2-repo-init.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/helm2-repo-init.sh b/shell/helm2-repo-init.sh
index fb2f81029..23bcdce02 100755
--- a/shell/helm2-repo-init.sh
+++ b/shell/helm2-repo-init.sh
@@ -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 ..