blob: fa0f4353feae719d68d0f53c2bc592452eee69be [file] [log] [blame]
# Including extraContainers and extraVolumes
## Values file for testing adding extraContainers and extraVolumeMounts to Vector Pods.
extraContainers:
- name: sleep
image: busybox
command: ['sh', '-c', "sleep 5"]
extraVolumes:
- name: podinfo
downwardAPI:
items:
- path: "labels"
fieldRef:
fieldPath: metadata.labels
- path: "annotations"
fieldRef:
fieldPath: metadata.annotations
extraVolumeMounts:
- name: podinfo
mountPath: "/etc/podinfo"