[OOM] Skip faulty install of helm2 stable repo 58/116558/1
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>
Mon, 4 Jan 2021 10:03:25 +0000 (11:03 +0100)
committerSylvain Desbureaux <sylvain.desbureaux@orange.com>
Mon, 4 Jan 2021 10:03:25 +0000 (11:03 +0100)
Stable repo is not the right one and we also don't need it here for
linting.
So let's remove it at start.

Issue-ID: OOM-1
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: I2cdd105bf40c588bcea536fcb4af54ba54cdac14

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 ..