blob: 8688175f7f67671f3749a82cc75bbe509cb1c283 [file] [log] [blame]
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +00001# Including initContainers
2## Values file for testing adding initContainers to Vector Pods.
3initContainers:
4 - name: sleep
5 image: busybox
6 command: ['sh', '-c', "sleep 5"]
7 - name: touch
8 image: busybox
9 command:
10 - touch
11 - "/vector-data-dir/test"
12 volumeMounts:
13 - name: data
14 mountPath: "/vector-data-dir"