From 0f35e97e598c5e94a584c2e1f7ce7041522bd3a3 Mon Sep 17 00:00:00 2001 From: David Sondermann Date: Wed, 4 Dec 2024 14:03:03 +0000 Subject: [PATCH] Disable hostRootFsMount for Prometheus node exporter to prevent pod crash loop --- .../java/com/hivemq/helmcharts/AbstractHelmMonitoringIT.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests-hivemq-platform-operator/src/integrationTest/java/com/hivemq/helmcharts/AbstractHelmMonitoringIT.java b/tests-hivemq-platform-operator/src/integrationTest/java/com/hivemq/helmcharts/AbstractHelmMonitoringIT.java index 487dd18d..da9d50d4 100644 --- a/tests-hivemq-platform-operator/src/integrationTest/java/com/hivemq/helmcharts/AbstractHelmMonitoringIT.java +++ b/tests-hivemq-platform-operator/src/integrationTest/java/com/hivemq/helmcharts/AbstractHelmMonitoringIT.java @@ -31,6 +31,8 @@ final void setup() throws Exception { helmChartContainer.addHelmRepo("prometheus-community", "https://prometheus-community.github.io/helm-charts"); helmChartContainer.installChart(MONITORING_RELEASE, "prometheus-community/kube-prometheus-stack", + "--set", + "prometheus-node-exporter.hostRootFsMount.enabled=false", "-n", MONITORING_NAMESPACE, "--create-namespace");