blob: fa0f4353feae719d68d0f53c2bc592452eee69be [file] [log] [blame]
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +00001# Including extraContainers and extraVolumes
2## Values file for testing adding extraContainers and extraVolumeMounts to Vector Pods.
3extraContainers:
4 - name: sleep
5 image: busybox
6 command: ['sh', '-c', "sleep 5"]
7extraVolumes:
8 - name: podinfo
9 downwardAPI:
10 items:
11 - path: "labels"
12 fieldRef:
13 fieldPath: metadata.labels
14 - path: "annotations"
15 fieldRef:
16 fieldPath: metadata.annotations
17extraVolumeMounts:
18 - name: podinfo
19 mountPath: "/etc/podinfo"