Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: mount host root #30

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ extraVolumeMounts:
name: dockercontainers
- mountPath: /var/lib/kubelet/pods
name: kubelet
- mountPath: /hostroot
name: hostroot


extraVolumes:
- hostPath:
Expand All @@ -33,6 +36,10 @@ extraVolumes:
path: /var/lib/kubelet/pods
type: DirectoryOrCreate
name: kubelet
- hostPath:
path: /
type: DirectoryOrCreate
name: hostroot

extraEnvs: {}
timezone: Asia/Shanghai
Expand Down Expand Up @@ -100,6 +107,8 @@ config:
# If set to true, it means that the pipeline configuration generated does not contain specific Pod paths and meta information,
# and these data will be dynamically obtained by the file source, thereby reducing the number of configuration changes and reloads.
dynamicContainerLog: false
# Specify path where root of host mounts
hostRootMountPath: /hostroot
# Automatically add fields when selector.type is pod in logconfig/clusterlogconfig
typePodFields:
logconfig: "${_k8s.logconfig}"
Expand Down