Skip to content

Commit

Permalink
bump helm
Browse files Browse the repository at this point in the history
  • Loading branch information
Constantin07 committed Aug 14, 2024
1 parent ec57247 commit 960a9ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ansible/roles/helm/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

helm_version: v3.15.3
helm_version: v3.15.4
helm_diff_version: 3.9.9
helm_url: https://get.helm.sh/helm-{{ helm_version }}-linux-amd64.tar.gz
install_dir: /usr/local/bin
Expand Down
8 changes: 4 additions & 4 deletions pipelines/dockerfiles/tool-box/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ RUN apk --no-cache add curl unzip

ARG INSTALL_DIR="/usr/local/bin"

ARG TERRAFORM_VERSION=1.9.2
ARG TERRAFORM_VERSION=1.9.4
ARG TERRAFORM_URL=https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
ARG TERRAFORM_FILE=terraform_${TERRAFORM_VERSION}_linux_amd64.zip
ARG TERRAFORM_SHA256=d5f5aaba0f8ebff88ef0b23935872e154e2abf3172596261be834605ba3ba714
ARG TERRAFORM_SHA256=6e9b2cc741875ab906d800af3134b076489f049565e0a1dbdb6deacd91f5054c

RUN set -exo pipefail; curl -fsSL --retry 3 -o ${TERRAFORM_FILE} ${TERRAFORM_URL}; \
sha256sum ${TERRAFORM_FILE} | grep ${TERRAFORM_SHA256}; \
Expand All @@ -30,10 +30,10 @@ RUN set -exo pipefail; curl -fsSL --retry 3 -o ${KUBECTL_FILE} ${KUBECTL_URL}; \
mv ${KUBECTL_FILE} ${INSTALL_DIR}/${KUBECTL_FILE}; \
chmod +x ${INSTALL_DIR}/${KUBECTL_FILE}

ARG HELM_VERSION=v3.15.3
ARG HELM_VERSION=v3.15.4
ARG HELM_URL=https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz
ARG HELM_FILE=helm-${HELM_VERSION}-linux-amd64.tar.gz
ARG HELM_SHA256=ad871aecb0c9fd96aa6702f6b79e87556c8998c2e714a4959bf71ee31282ac9c
ARG HELM_SHA256=11400fecfc07fd6f034863e4e0c4c4445594673fd2a129e701fe41f31170cfa9

RUN set -exo pipefail; curl -fsSL --retry 3 -o ${HELM_FILE} ${HELM_URL}; \
sha256sum ${HELM_FILE} | grep ${HELM_SHA256}; \
Expand Down

0 comments on commit 960a9ff

Please sign in to comment.