Skip to content

Commit

Permalink
chore: update terraform, helm, k9s
Browse files Browse the repository at this point in the history
  • Loading branch information
keskiju committed Aug 7, 2024
1 parent 25fda47 commit 4b0d5f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/install-helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ set -eux; \
curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get \
> get_helm.sh && \
chmod 700 get_helm.sh && \
export HELM_VERSION=${HELM_VERSION:-v3.15.1} && \
export HELM_VERSION=${HELM_VERSION:-v3.15.3} && \
./get_helm.sh -v "${HELM_VERSION}" && \
rm ./get_helm.sh
2 changes: 1 addition & 1 deletion tools/install-k9s.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eux; \
cd /tmp && \
export K9S_VERSION=${K9S_VERSION:-0.32.4} && \
export K9S_VERSION=${K9S_VERSION:-0.32.5} && \
export K9S_ARCH="Linux_amd64" && \
if [ ${TARGETPLATFORM} = "linux/arm64" ]; then export K9S_ARCH="Linux_arm64"; fi && \
curl -L "/~https://github.com/derailed/k9s/releases/download/v${K9S_VERSION}/k9s_${K9S_ARCH}.tar.gz" | tar -xz && \
Expand Down
2 changes: 1 addition & 1 deletion tools/install-terraform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -eux; \

mkdir /terraform && \
cd /terraform && \
export TERRAFORM_VERSION=${TERRAFORM_VERSION:-1.8.4} && \
export TERRAFORM_VERSION=${TERRAFORM_VERSION:-1.9.4} && \
curl -o terraform.zip "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_${TARGETPLATFORM#linux/}.zip" && \
unzip terraform.zip && \
mv terraform /usr/local/bin/terraform && \
Expand Down

0 comments on commit 4b0d5f9

Please sign in to comment.