From d25dbb1ae8a1a8c85c5c4c7abeb5ad34702555d1 Mon Sep 17 00:00:00 2001 From: Anton Petruhin Date: Wed, 1 May 2024 16:38:09 +0400 Subject: [PATCH] node-agent: mount `debugfs` --- charts/node-agent/Chart.yaml | 2 +- charts/node-agent/templates/daemonset.yaml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/charts/node-agent/Chart.yaml b/charts/node-agent/Chart.yaml index 3df71ff..840aa1e 100644 --- a/charts/node-agent/Chart.yaml +++ b/charts/node-agent/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: node-agent description: A Prometheus exporter based on eBPF that gathers comprehensive container metrics. type: application -version: 0.1.66 +version: 0.1.67 appVersion: "1.18.10" diff --git a/charts/node-agent/templates/daemonset.yaml b/charts/node-agent/templates/daemonset.yaml index 82c9271..5d6bfee 100644 --- a/charts/node-agent/templates/daemonset.yaml +++ b/charts/node-agent/templates/daemonset.yaml @@ -79,6 +79,9 @@ spec: - mountPath: /sys/kernel/tracing name: tracefs readOnly: false + - mountPath: /sys/kernel/debug + name: debugfs + readOnly: false - mountPath: /tmp name: tmp readOnly: false @@ -89,5 +92,8 @@ spec: - hostPath: path: /sys/kernel/tracing name: tracefs + - hostPath: + path: /sys/kernel/debug + name: debugfs - emptyDir: {} name: tmp