summaryrefslogtreecommitdiffstats
path: root/shell/helm2-repo-init.sh
diff options
context:
space:
mode:
Diffstat (limited to 'shell/helm2-repo-init.sh')
-rwxr-xr-xshell/helm2-repo-init.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/shell/helm2-repo-init.sh b/shell/helm2-repo-init.sh
deleted file mode 100755
index 23bcdce02..000000000
--- a/shell/helm2-repo-init.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-# Ensure we fail the job if any steps fail
-set -e -o pipefail
-
-# client only init, tiller will not be installed
-helm init --client-only --skip-refresh
-helm repo rm stable
-cd kubernetes/ || exit
-make repo
-cd ..