We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70a4a4d commit 57b5bacCopy full SHA for 57b5bac
1 file changed
bootstrap/argocd-config.yaml
@@ -33,11 +33,16 @@ spec:
33
secret:
34
secretName: sops-age-keys
35
initContainers:
36
+ # Use alpine to download and install KSOPS binaries
37
- name: install-ksops
- image: viaductoss/ksops:latest-amd64
38
+ image: docker.io/alpine:3.21
39
command: ["/bin/sh", "-c"]
40
args:
- - echo "Installing KSOPS..."; cp ksops /custom-tools/; cp $GOPATH/bin/kustomize /custom-tools/; echo "Done.";
41
+ - |
42
+ set -e
43
+ echo "Downloading KSOPS v4.4.0..."
44
+ wget -qO- https://github.com/viaduct-ai/kustomize-sops/releases/download/v4.4.0/ksops_4.4.0_Linux_x86_64.tar.gz | tar xz -C /custom-tools
45
+ echo "Done."
46
volumeMounts:
47
- mountPath: /custom-tools
48
name: custom-tools
0 commit comments