From ac19dde7191f8896c4ac08600724f1726ed37939 Mon Sep 17 00:00:00 2001 From: Lucas Fernando Cardoso Nunes Date: Sun, 17 Sep 2023 20:50:21 -0300 Subject: [PATCH] replace all mozilla/sops with getsops/sops (#1028) replace all mozilla/sops with getsops/sops Signed-off-by: Lucas Fernando Cardoso Nunes --- .github/workflows/Makefile | 2 +- Dockerfile | 2 +- Dockerfile.debian-stable-slim | 2 +- Dockerfile.ubuntu | 2 +- examples/README.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Makefile b/.github/workflows/Makefile index 846d4c88..6702df17 100644 --- a/.github/workflows/Makefile +++ b/.github/workflows/Makefile @@ -62,7 +62,7 @@ vault: .PHONY: vault sops: - curl -sSLo $(tmp)/sops "https://github.com/mozilla/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" chmod +x $(tmp)/sops sudo mv ${tmp}/sops /usr/local/bin/ .PHONY: sops diff --git a/Dockerfile b/Dockerfile index ce8e90b7..b7c3085e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -78,7 +78,7 @@ RUN set -x && \ ENV SOPS_VERSION="v3.7.3" ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}" RUN set -x && \ - curl --retry 5 --retry-connrefused -LO "https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ + curl --retry 5 --retry-connrefused -LO "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ chmod +x "${SOPS_FILENAME}" && \ mv "${SOPS_FILENAME}" /usr/local/bin/sops && \ sops --version | grep -E "^sops ${SOPS_VERSION#v}" diff --git a/Dockerfile.debian-stable-slim b/Dockerfile.debian-stable-slim index 412cbde2..fd83e462 100644 --- a/Dockerfile.debian-stable-slim +++ b/Dockerfile.debian-stable-slim @@ -83,7 +83,7 @@ RUN set -x && \ ENV SOPS_VERSION="v3.7.3" ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}" RUN set -x && \ - curl --retry 5 --retry-connrefused -LO "https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ + curl --retry 5 --retry-connrefused -LO "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ chmod +x "${SOPS_FILENAME}" && \ mv "${SOPS_FILENAME}" /usr/local/bin/sops && \ sops --version | grep -E "^sops ${SOPS_VERSION#v}" diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 50e1bdc3..3f608787 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -83,7 +83,7 @@ RUN set -x && \ ENV SOPS_VERSION="v3.7.3" ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}" RUN set -x && \ - curl --retry 5 --retry-connrefused -LO "https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ + curl --retry 5 --retry-connrefused -LO "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ chmod +x "${SOPS_FILENAME}" && \ mv "${SOPS_FILENAME}" /usr/local/bin/sops && \ sops --version | grep -E "^sops ${SOPS_VERSION#v}" diff --git a/examples/README.md b/examples/README.md index 1a74322b..bd8b0813 100644 --- a/examples/README.md +++ b/examples/README.md @@ -17,7 +17,7 @@ releases: # DB host, port, and connection opts for the environment values: - "deploy/environments/{{ env "RAILS_ENV" }}/values.yaml" - # DB username and password encrypted with helm-secrets(mozilla/sops) + # DB username and password encrypted with helm-secrets (getsops/sops) secrets: - "deploy/environments/{{ env "RAILS_ENV" }}/secrets.yaml" ```