Skip to content

Commit

Permalink
v4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
devstein committed May 26, 2023
1 parent 0d4da38 commit ac33c40
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,12 @@ spec:
# 2. Use an init container to download/copy custom binaries into the emptyDir
initContainers:
- name: install-ksops
image: viaductoss/ksops:v4.2.0
image: viaductoss/ksops:v4.2.1
command: ["/bin/sh", "-c"]
args:
- echo "Installing KSOPS...";
mv ksops /custom-tools/;
mv $GOPATH/bin/kustomize /custom-tools/;
mv kustomize /custom-tools/;
echo "Done.";
volumeMounts:
- mountPath: /custom-tools
Expand Down Expand Up @@ -398,7 +398,7 @@ Alternatively, for more control and faster pod start times you can build a custo
```Dockerfile
ARG ARGO_CD_VERSION="v2.6.7"
# https://github.com/argoproj/argo-cd/blob/master/Dockerfile
ARG KSOPS_VERSION="v4.2.0"
ARG KSOPS_VERSION="v4.2.1"
#--------------------------------------------#
#--------Build KSOPS and Kustomize-----------#
Expand Down Expand Up @@ -446,12 +446,12 @@ repoServer:
initContainers:
- name: install-ksops
image: viaductoss/ksops:v4.2.0
image: viaductoss/ksops:v4.2.1
command: ["/bin/sh", "-c"]
args:
- echo "Installing KSOPS...";
mv ksops /custom-tools/;
mv $GOPATH/bin/kustomize /custom-tools/;
mv kustomize /custom-tools/;
echo "Done.";
volumeMounts:
- mountPath: /custom-tools
Expand Down

0 comments on commit ac33c40

Please sign in to comment.