Skip to content

Commit

Permalink
Merge pull request #13 from dysnix/bump-versions
Browse files Browse the repository at this point in the history
Update tools versions
  • Loading branch information
voron committed Nov 18, 2023
2 parents 4790588 + 0ba5c7f commit 42c0571
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/sh

HELM_VERSION=v3.8.2
HELM_SHA=6cb9a48f72ab9ddfecab88d264c2f6508ab3cd42d9c09666be16a7bf006bed7b
HELMFILE_VERSION=v0.144.0
HELMFILE_SHA=dcf865a715028d3a61e2fec09f2a0beaeb7ff10cde32e096bf94aeb9a6eb4f02
SOPS_VERSION=v3.7.3
SOPS_SHA=53aec65e45f62a769ff24b7e5384f0c82d62668dd96ed56685f649da114b4dbb
YQ_VERSION=v4.25.1
YQ_SHA=57b6247bc2406c20a887aee3594399e081759601fd2f8ae9df21938499d76c81
HELM_VERSION=v3.13.2
HELM_SHA=55a8e6dce87a1e52c61e0ce7a89bf85b38725ba3e8deb51d4a08ade8a2c70b2d
HELMFILE_VERSION=v0.158.1
HELMFILE_SHA=b8843105157d4281847f54c35a3100afce4175a8b44a3539d54f9194f5497162
SOPS_VERSION=v3.8.1
SOPS_SHA=d6bf07fb61972127c9e0d622523124c2d81caf9f7971fb123228961021811697
YQ_VERSION=v4.35.2
YQ_SHA=8afd786b3b8ba8053409c5e7d154403e2d4ed4cf3e93c237462dc9ef75f38c8d
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG KUBECTL_VERSION=v1.24.0
# follow DL4006 (hadolint)
SHELL ["/bin/sh", "-o", "pipefail", "-c"]

ENV GOSU_VERSION 1.14
ENV GOSU_VERSION 1.17
RUN set -eux; \
\
apk add --no-cache --virtual .gosu-deps \
Expand Down Expand Up @@ -60,12 +60,12 @@ RUN . /.versions && \
( cd /tmp && file="helm-${HELM_VERSION}-linux-amd64.tar.gz" && curl -sSLO https://get.helm.sh/$file && \
printf "${HELM_SHA} ${file}" | sha256sum - && tar zxf ${file} && mv linux-amd64/helm /usr/local/bin/ ) && \
## Install helmfile \
( cd /usr/local/bin && curl --retry 3 -sSLo helmfile \
"https://github.com/roboll/helmfile/releases/download/${HELMFILE_VERSION}/helmfile_linux_amd64" && \
printf "${HELMFILE_SHA} helmfile" | sha256sum -c && chmod 755 helmfile ) && \
( cd /tmp && file="helmfile_${HELMFILE_VERSION//v/}_linux_amd64.tar.gz" && curl --retry 3 -sSLO \
"https://github.com/helmfile/helmfile/releases/download/${HELMFILE_VERSION}/$file" && \
printf "${HELMFILE_SHA} ${file}" | sha256sum -c && tar zxf ${file} && mv helmfile /usr/local/bin/ ) && \
## Install sops \
( cd /usr/local/bin && curl -sSLo sops \
"https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux" && \
"https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64" && \
printf "${SOPS_SHA} sops" | sha256sum -c && chmod 755 sops ) && \
## Install yq \
( cd /usr/local/bin && curl -sSLo yq \
Expand All @@ -76,7 +76,7 @@ RUN . /.versions && \
## Install plugins (already as the specified user)
RUN sudo -iu kubectl bash -c 'set -e; \
helm plugin install https://github.com/databus23/helm-diff; \
helm plugin install https://github.com/jkroepke/helm-secrets --version v3.12.0; \
helm plugin install https://github.com/jkroepke/helm-secrets; \
helm plugin install https://github.com/hypnoglow/helm-s3.git; \
helm plugin install https://github.com/aslafy-z/helm-git.git; \
helm plugin install https://github.com/hayorov/helm-gcs.git; \
Expand Down

0 comments on commit 42c0571

Please sign in to comment.