-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Helm chart now supports injecting sidecar containers, adding envFrom instructions to read either configMaps as well as secrets. - Add sample sidecar to minikube values that prints the event file to stdout Signed-off-by: Raul Gonzales <gonzalesraul03@gmail.com>
- Loading branch information
1 parent
5ef6c8e
commit aaa89f3
Showing
5 changed files
with
58 additions
and
18 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
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 |
---|---|---|
@@ -1,12 +1,22 @@ | ||
storageClass: standard | ||
image: | ||
tag: latest | ||
pullPolicy: Never | ||
composer: | ||
logLevel: "Debug" | ||
coreEvents: true | ||
daemonset: | ||
mountContainerRuntimeEndpoint: true | ||
hostContainerRuntimeEndpoint: "/var/run/cri-dockerd.sock" | ||
crioEndpoint: "unix:///var/run/cri-dockerd.sock" | ||
deployCrioConfig: true | ||
includeCrioExe: true | ||
sidecarContainers: | ||
- name: simple-printer | ||
image: alpine | ||
command: | ||
- /bin/sh | ||
- -c | ||
- | | ||
apk --no-cache add inotify-tools | ||
cd /var/mnt/core-dump-handler/events | ||
inotifywait -mq -e create .| while read directory action file; do cat $file; done |
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