1717 pullPolicy : IfNotPresent
1818 # Image tag defaults to AppVersion, but you can use the tag key
1919 # for the image tag, e.g:
20- tag : 4.4.1-4.5.2 -ubuntu22.04
20+ tag : 4.4.1-4.6.0 -ubuntu22.04
2121
2222# Change the following reference to "/etc/dcgm-exporter/default-counters.csv"
2323# to stop profiling metrics from DCGM
@@ -49,6 +49,10 @@ fullnameOverride: ""
4949# Overrides the deployment namespace
5050namespaceOverride : " "
5151
52+ # hostPID allows the DCGM-Exporter container to see processes on the host node
53+ # Default: false
54+ hostPID : false
55+
5256# Defines the runtime class that will be used by the pod
5357runtimeClassName : " "
5458# Defines serviceAccount names for components.
@@ -211,6 +215,16 @@ kubernetes:
211215 # This requires cluster-level read permissions to pods
212216 enablePodUID : false
213217
218+ # Pod label filtering configuration
219+ # Filter which pod labels are included in metrics using regex patterns
220+ # Empty list means all labels are included (default behavior)
221+ # Examples:
222+ # podLabelAllowlistRegex:
223+ # - "^app$" # Exact match for "app" label
224+ # - "^app\\.kubernetes\\.io/.*" # All labels starting with app.kubernetes.io/
225+ # - "^(tier|environment|version)$" # Match tier, environment, or version labels
226+ podLabelAllowlistRegex : []
227+
214228 # RBAC settings for Kubernetes integration
215229 rbac :
216230 # Automatically creates ClusterRole and ClusterRoleBinding for pod access when enablePodLabels or enablePodUID is true
@@ -321,4 +335,4 @@ livenessProbe:
321335 periodSeconds : 5
322336
323337readinessProbe :
324- initialDelaySeconds : 45
338+ initialDelaySeconds : 45
0 commit comments