From 2a7e5775cb756f1773250126c58929b896a7fc5e Mon Sep 17 00:00:00 2001 From: Cyril Jouve Date: Sat, 2 Dec 2023 00:47:22 +0100 Subject: [PATCH] [dockerfile] latest sops (#1185) Signed-off-by: Cyril Jouve --- .github/workflows/Makefile | 4 ++-- Dockerfile | 2 +- Dockerfile.debian-stable-slim | 2 +- Dockerfile.ubuntu | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Makefile b/.github/workflows/Makefile index 6702df17..732c174f 100644 --- a/.github/workflows/Makefile +++ b/.github/workflows/Makefile @@ -2,7 +2,7 @@ HELM_VERSION ?= v3.7.2 KUSTOMIZE_VERSION ?= v4.5.7 K8S_VERSION ?= v1.13.12 MINIKUBE_VERSION ?= v0.30.0 -SOPS_VERSION ?= v3.6.1 +SOPS_VERSION ?= v3.8.1 # --- CHANGE_MINIKUBE_NONE_USER ?= true @@ -62,7 +62,7 @@ vault: .PHONY: vault sops: - curl -sSLo $(tmp)/sops "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux" + curl -sSLo $(tmp)/sops "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64" chmod +x $(tmp)/sops sudo mv ${tmp}/sops /usr/local/bin/ .PHONY: sops diff --git a/Dockerfile b/Dockerfile index ebf6110b..ccfdf16d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -75,7 +75,7 @@ RUN set -x && \ rm "${KUSTOMIZE_FILENAME}" && \ kustomize version --short | grep "kustomize/${KUSTOMIZE_VERSION}" -ENV SOPS_VERSION="v3.7.3" +ENV SOPS_VERSION="v3.8.1" ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}" RUN set -x && \ curl --retry 5 --retry-connrefused -LO "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ diff --git a/Dockerfile.debian-stable-slim b/Dockerfile.debian-stable-slim index 7cd08397..aaee2298 100644 --- a/Dockerfile.debian-stable-slim +++ b/Dockerfile.debian-stable-slim @@ -80,7 +80,7 @@ RUN set -x && \ rm "${KUSTOMIZE_FILENAME}" && \ kustomize version --short | grep "kustomize/${KUSTOMIZE_VERSION}" -ENV SOPS_VERSION="v3.7.3" +ENV SOPS_VERSION="v3.8.1" ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}" RUN set -x && \ curl --retry 5 --retry-connrefused -LO "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 4e162229..0842fb5d 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -80,7 +80,7 @@ RUN set -x && \ rm "${KUSTOMIZE_FILENAME}" && \ kustomize version --short | grep "kustomize/${KUSTOMIZE_VERSION}" -ENV SOPS_VERSION="v3.7.3" +ENV SOPS_VERSION="v3.8.1" ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}" RUN set -x && \ curl --retry 5 --retry-connrefused -LO "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \