Skip to content

Commit

Permalink
Merge pull request #14 from Xtigyro/fixes/show-output-on-errors-for-h…
Browse files Browse the repository at this point in the history
…elm-plugins

Show Output on Errors
  • Loading branch information
Xtigyro authored Jul 20, 2020
2 parents d9eb360 + a603cf2 commit f3f0222
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions local-cluster/prerequisites-cmds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ echo -e "\nDownloading kubectl binary..." \
&& chmod +x ./kubectl \
&& yes | sudo mv ./kubectl /usr/local/bin/kubectl \
&& echo -e "\nkubectl version:" \
&& kubectl version --client=true 2>/dev/null \
&& kubectl version --client=true \
&& source <(kubectl completion bash 2>/dev/null)

# Install "helm"
Expand All @@ -62,13 +62,13 @@ echo -e "\nDownloading Helm Client binary..." \
&& yes | mv ./linux-amd64/helm /usr/local/bin \
&& rm -rf ./linux-amd64 helm-v"$HELM_VER"-linux-amd64.tar.gz \
&& echo -e "\nhelm version:" \
&& helm version 2>/dev/null \
&& helm version --client=true \
&& source <(helm completion bash 2>/dev/null)

# Install/update Helm plugins: "helm-diff"
echo -e "\nInstalling/updating Helm plugins: helm-diff..."
helm plugin install https://github.com/databus23/helm-diff >/dev/null 2>&1 \
|| helm plugin update diff >/dev/null 2>&1
|| helm plugin update diff >/dev/null
echo -e "\nInstalled Helm plugins:"
helm plugin list 2>/dev/null

Expand All @@ -77,7 +77,7 @@ echo -e "\nDownloading Helmfile binary..." \
&& curl -LO https://github.com/roboll/helmfile/releases/latest/download/helmfile_linux_amd64 \
&& chmod +x ./helmfile_linux_amd64 \
&& yes | mv ./helmfile_linux_amd64 /usr/local/bin/helmfile \
&& helmfile -v 2>/dev/null
&& helmfile -v

# Install kINd
KIND_VERSION=v0.8.1 \
Expand Down

0 comments on commit f3f0222

Please sign in to comment.