This also enables the refactor to have multiple root level charts. Resolves #100 Signed-off-by: Marco Franssen <[email protected]>
62 lines
1.2 KiB
YAML
62 lines
1.2 KiB
YAML
spire-agent:
|
|
initContainers:
|
|
- name: extra-init
|
|
image: cgr.dev/chainguard/busybox:latest-glibc
|
|
command:
|
|
- sh
|
|
- -xec
|
|
- |
|
|
echo 'hi there' > /extra/file
|
|
volumeMounts:
|
|
- name: extra
|
|
mountPath: /extra
|
|
extraContainers:
|
|
- name: extra
|
|
image: cgr.dev/chainguard/busybox:latest-glibc
|
|
command:
|
|
- sh
|
|
- -xec
|
|
- |
|
|
[ -f /extra/file ]
|
|
while true; do sleep 1000; done
|
|
volumeMounts:
|
|
- name: extra
|
|
mountPath: /extra
|
|
extraVolumeMounts:
|
|
- name: extra
|
|
mountPath: /extra
|
|
extraVolumes:
|
|
- name: extra
|
|
emptyDir: {}
|
|
|
|
spire-server:
|
|
initContainers:
|
|
- name: extra-init
|
|
image: cgr.dev/chainguard/busybox:latest-glibc
|
|
command:
|
|
- sh
|
|
- -xec
|
|
- |
|
|
echo 'hi there' > /extra/file
|
|
volumeMounts:
|
|
- name: extra
|
|
mountPath: /extra
|
|
extraContainers:
|
|
- name: extra
|
|
image: cgr.dev/chainguard/busybox:latest-glibc
|
|
command:
|
|
- sh
|
|
- -xec
|
|
- |
|
|
[ -f /extra/file ]
|
|
while true; do sleep 1000; done
|
|
volumeMounts:
|
|
- name: extra
|
|
mountPath: /extra
|
|
extraVolumeMounts:
|
|
- name: extra
|
|
mountPath: /extra
|
|
extraVolumes:
|
|
- name: extra
|
|
emptyDir: {}
|