Last active
April 27, 2023 16:31
-
-
Save ekristen/a1a95049baf79c24a2ada5627efae781 to your computer and use it in GitHub Desktop.
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
# -- Default volume mounts. Corresponds to `volumes`. | |
# @default -- See `values.yaml` | |
defaultVolumeMounts: | |
- name: run | |
mountPath: /run/promtail | |
- name: containers | |
mountPath: /var/lib/docker/containers | |
readOnly: true | |
- name: pods | |
mountPath: /var/log/pods | |
readOnly: true | |
defaultVolumes: | |
- name: run | |
hostPath: | |
path: /run/promtail | |
- name: containers | |
hostPath: | |
path: /var/lib/docker/containers | |
- name: pods | |
hostPath: | |
path: /var/log/pods |
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
defaultVolumeMounts: | |
- name: pods | |
mountPath: /var/log/pods | |
readOnly: true | |
- name: run | |
mountPath: /run/promtail | |
defaultVolumes: | |
- name: pods | |
hostPath: | |
path: /var/log/pods | |
- name: run | |
emptyDir: {} |
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
defaultVolumeMounts: | |
- mountPath: /var/log/pods | |
name: pods | |
readOnly: true | |
- mountPath: /run/promtail | |
name: run | |
readOnly: true | |
defaultVolumes: | |
- hostPath: | |
path: /var/log/pods | |
name: pods | |
- hostPath: | |
path: /var/log/pods | |
name: run | |
emptyDir: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment