-
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.
feat(vector): Add support for user defined initContainers for Vector …
…Pods (#79) * feat(vector): Add support for user defined initContainers for Vector Pods Signed-off-by: Spencer Gilbert <[email protected]> * helm lint Signed-off-by: Spencer Gilbert <[email protected]> * update initcontainer ci Signed-off-by: Spencer Gilbert <[email protected]> * Rename initContainer in CI Signed-off-by: Spencer Gilbert <[email protected]>
- Loading branch information
1 parent
0390a17
commit 44a2e5e
Showing
4 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
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
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,14 @@ | ||
# Including initContainers | ||
## Values file for testing adding initContainers to Vector Pods. | ||
initContainers: | ||
- name: sleep | ||
image: busybox | ||
command: ['sh', '-c', "sleep 5"] | ||
- name: touch | ||
image: busybox | ||
command: | ||
- touch | ||
- "/vector-data-dir/test" | ||
volumeMounts: | ||
- name: data | ||
mountPath: "/vector-data-dir" |
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
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