123456789101112131415161718192021222324252627282930 |
- mode: daemonset
- global:
- image: busybox:latest
- initContainers:
- - name: test
- command:
- - cp
- args:
- - /bin/sleep
- - /test/sleep
- image: "{{ .Values.global.image }}"
- volumeMounts:
- - name: test
- mountPath: /test
- extraVolumes:
- - name: test
- emptyDir: {}
- extraVolumeMounts:
- - name: test
- mountPath: /test
- lifecycleHooks:
- preStop:
- exec:
- command:
- - /test/sleep
- - "5"
|