diff --git a/charts/dependency/node-exporter/Chart.yaml b/charts/dependency/node-exporter/Chart.yaml index 32fe4935976..b1b375f1a23 100644 --- a/charts/dependency/node-exporter/Chart.yaml +++ b/charts/dependency/node-exporter/Chart.yaml @@ -21,7 +21,7 @@ name: node-exporter sources: - https://github.com/truecharts/charts/tree/master/charts/dependency/node-exporter type: application -version: 1.0.28 +version: 1.0.29 annotations: truecharts.org/catagories: | - metrics diff --git a/charts/dependency/node-exporter/values.yaml b/charts/dependency/node-exporter/values.yaml index 6bc4d799d92..6f6db0bfb8d 100644 --- a/charts/dependency/node-exporter/values.yaml +++ b/charts/dependency/node-exporter/values.yaml @@ -17,6 +17,7 @@ workload: containers: main: args: + - --path.rootfs=/host - --path.procfs=/hostproc - --path.sysfs=/hostsys - --web.listen-address=0.0.0.0:{{ .Values.service.main.ports.main.port }} @@ -44,16 +45,19 @@ podOptions: persistence: host: enabled: true + type: hostPath hostPath: / mountPath: /host readOnly: true proc: enabled: true + type: hostPath hostPath: /proc mountPath: /hostproc readOnly: true sys: enabled: true + type: hostPath hostPath: /sys mountPath: /hostsys readOnly: true