Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 1 | # Including extraContainers and extraVolumes |
| 2 | ## Values file for testing adding extraContainers and extraVolumeMounts to Vector Pods. |
| 3 | extraContainers: |
| 4 | - name: sleep |
| 5 | image: busybox |
| 6 | command: ['sh', '-c', "sleep 5"] |
| 7 | extraVolumes: |
| 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 |
| 17 | extraVolumeMounts: |
| 18 | - name: podinfo |
| 19 | mountPath: "/etc/podinfo" |