Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ helm init --client-only >/dev/null
# Remove local repo to increase reproducibility and remove errors
helm repo list |grep -qc local && $BINARY repo remove local >/dev/null

helm plugin list | grep -qc tiller || $BINARY plugin install $(dirname $(rlocation __main__/external/helm_tiller/WORKSPACE))
HELM_TILLER="$(rlocation helm_tiller)"
HELM_TILLER=${HELM_TILLER:-external/helm_tiller}

helm plugin list | grep -qc tiller || $BINARY plugin install "$HELM_TILLER"

cd "${BUILD_WORKING_DIRECTORY:-}"
helm $*