-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(vector): Allow both extraContainers and extraVolumeMounts (#243)
* fix: extraVolumeMounts * feat(vector): Test combination of extraContainers and extraVolumeMounts in CI Signed-off-by: Spencer Gilbert <[email protected]> Signed-off-by: Spencer Gilbert <[email protected]> Co-authored-by: Spencer Gilbert <[email protected]>
- Loading branch information
1 parent
29f99d7
commit 09a18dd
Showing
2 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
charts/vector/ci/extraContainers-and-extraVolumeMounts-values.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# 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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters