Skip to content

Commit

Permalink
Merge pull request volcano-sh#2103 from hwdef/update-helm-version
Browse files Browse the repository at this point in the history
update helm version in install.sh
  • Loading branch information
volcano-sh-bot authored Mar 22, 2022
2 parents ff87258 + 40aca58 commit 42aaeea
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions hack/lib/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,8 @@ function install-helm {
if [[ $? -ne 0 ]]; then
echo "Installing helm via script"
HELM_TEMP_DIR=$(mktemp -d)
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get > ${HELM_TEMP_DIR}/get_helm.sh
# TODO: There are some issue with helm's latest version, remove '--version' when it get fixed.
chmod 700 ${HELM_TEMP_DIR}/get_helm.sh && ${HELM_TEMP_DIR}/get_helm.sh --version v3.5.3
curl -fsSL -o ${HELM_TEMP_DIR}/get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 ${HELM_TEMP_DIR}/get_helm.sh && ${HELM_TEMP_DIR}/get_helm.sh
else
echo -n "Found helm, version: " && helm version
fi
Expand Down

0 comments on commit 42aaeea

Please sign in to comment.