HOMELAB-437: disable bundled node-exporter (PodSecurity baseline blocks it) #79
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "plane/HOMELAB-437-disable-node-exporter"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Disables the bundled
prometheus-node-exporterin the Temporal Helm chart.Problem:
temporalnamespace has PodSecuritybaseline:latestwhich blocks node-exporter DaemonSet pods (requires hostNetwork, hostPID, hostPath, hostPort). DaemonSet stuck at 0/3, causing ArgoCD app health to show Progressing.Fix:
prometheus.prometheus-node-exporter.enabled: falseWhy not namespace relabeling to privileged? Relaxing PodSecurity is a worse trade-off than removing a redundant exporter. kube-prometheus-stack already deploys node-exporter cluster-wide.
Note:
prometheus.nodeExporter.enabled(temporal chart wrapper) is NOT wired to the sub-chart — correct key isprometheus.prometheus-node-exporter.enabled.