File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
jsonnet/kube-prometheus/components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ local defaults = {
1212 limits: { cpu: '250m' , memory: '180Mi' },
1313 },
1414 listenAddress: '127.0.0.1' ,
15- filesystemIgnoredMountPoints : '^/(dev|proc|sys|var/lib/docker/.+|var/lib/kubelet/pods/.+)($|/)' ,
15+ filesystemMountPointsExclude : '^/(dev|proc|sys|var/lib/docker/.+|var/lib/kubelet/pods/.+)($|/)' ,
1616 port: 9100 ,
1717 commonLabels:: {
1818 'app.kubernetes.io/name' : defaults.name,
@@ -181,7 +181,7 @@ function(params) {
181181 '--path.rootfs=/host/root' ,
182182 '--no-collector.wifi' ,
183183 '--no-collector.hwmon' ,
184- '--collector.filesystem.mount-points-exclude=^/(dev|proc|sys|var/lib/docker/.+|var/lib/kubelet/pods/.+)($|/)' ,
184+ '--collector.filesystem.mount-points-exclude=' + ne._config.filesystemMountPointsExclude ,
185185 // NOTE: ignore veth network interface associated with containers.
186186 // OVN renames veth.* to <rand-hex>@if<X> where X is /sys/class/net/<if>/ifindex
187187 // thus [a-z0-9] regex below
You can’t perform that action at this time.
0 commit comments