Unverified Commit 931c80ed authored by James Meickle's avatar James Meickle Committed by GitHub
Browse files

Don't request Tiller version in installer

This makes the script hang for quite a while if it can't connect to Tiller to retrieve this information that isn't being used anyways.
Showing with 1 addition and 1 deletion
+1 -1
...@@ -92,7 +92,7 @@ checkDesiredVersion() { ...@@ -92,7 +92,7 @@ checkDesiredVersion() {
# if it needs to be changed. # if it needs to be changed.
checkHelmInstalledVersion() { checkHelmInstalledVersion() {
if [[ -f "${HELM_INSTALL_DIR}/${PROJECT_NAME}" ]]; then if [[ -f "${HELM_INSTALL_DIR}/${PROJECT_NAME}" ]]; then
local version=$(helm version | grep '^Client' | cut -d'"' -f2) local version=$(helm version -c | grep '^Client' | cut -d'"' -f2)
if [[ "$version" == "$TAG" ]]; then if [[ "$version" == "$TAG" ]]; then
echo "Helm ${version} is already ${DESIRED_VERSION:-latest}" echo "Helm ${version} is already ${DESIRED_VERSION:-latest}"
return 0 return 0
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment