replace all mozilla/sops with getsops/sops (#1028)
replace all mozilla/sops with getsops/sops Signed-off-by: Lucas Fernando Cardoso Nunes <lucasfc.nunes@gmail.com>
This commit is contained in:
parent
5236a74f29
commit
ac19dde719
|
|
@ -62,7 +62,7 @@ vault:
|
||||||
.PHONY: vault
|
.PHONY: vault
|
||||||
|
|
||||||
sops:
|
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
|
chmod +x $(tmp)/sops
|
||||||
sudo mv ${tmp}/sops /usr/local/bin/
|
sudo mv ${tmp}/sops /usr/local/bin/
|
||||||
.PHONY: sops
|
.PHONY: sops
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ RUN set -x && \
|
||||||
ENV SOPS_VERSION="v3.7.3"
|
ENV SOPS_VERSION="v3.7.3"
|
||||||
ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}"
|
ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}"
|
||||||
RUN set -x && \
|
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}" && \
|
chmod +x "${SOPS_FILENAME}" && \
|
||||||
mv "${SOPS_FILENAME}" /usr/local/bin/sops && \
|
mv "${SOPS_FILENAME}" /usr/local/bin/sops && \
|
||||||
sops --version | grep -E "^sops ${SOPS_VERSION#v}"
|
sops --version | grep -E "^sops ${SOPS_VERSION#v}"
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,7 @@ RUN set -x && \
|
||||||
ENV SOPS_VERSION="v3.7.3"
|
ENV SOPS_VERSION="v3.7.3"
|
||||||
ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}"
|
ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}"
|
||||||
RUN set -x && \
|
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}" && \
|
chmod +x "${SOPS_FILENAME}" && \
|
||||||
mv "${SOPS_FILENAME}" /usr/local/bin/sops && \
|
mv "${SOPS_FILENAME}" /usr/local/bin/sops && \
|
||||||
sops --version | grep -E "^sops ${SOPS_VERSION#v}"
|
sops --version | grep -E "^sops ${SOPS_VERSION#v}"
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,7 @@ RUN set -x && \
|
||||||
ENV SOPS_VERSION="v3.7.3"
|
ENV SOPS_VERSION="v3.7.3"
|
||||||
ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}"
|
ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}"
|
||||||
RUN set -x && \
|
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}" && \
|
chmod +x "${SOPS_FILENAME}" && \
|
||||||
mv "${SOPS_FILENAME}" /usr/local/bin/sops && \
|
mv "${SOPS_FILENAME}" /usr/local/bin/sops && \
|
||||||
sops --version | grep -E "^sops ${SOPS_VERSION#v}"
|
sops --version | grep -E "^sops ${SOPS_VERSION#v}"
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ releases:
|
||||||
# DB host, port, and connection opts for the environment
|
# DB host, port, and connection opts for the environment
|
||||||
values:
|
values:
|
||||||
- "deploy/environments/{{ env "RAILS_ENV" }}/values.yaml"
|
- "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:
|
secrets:
|
||||||
- "deploy/environments/{{ env "RAILS_ENV" }}/secrets.yaml"
|
- "deploy/environments/{{ env "RAILS_ENV" }}/secrets.yaml"
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue