From 18a53babd8aaaadb91177dbd8c3c67299f5b09b5 Mon Sep 17 00:00:00 2001 From: "andreas.dinauer" Date: Sun, 16 Nov 2025 14:20:24 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=200.3.13?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chart/Chart.yaml | 2 +- chart/templates/nodeMonitor/deployment.yaml | 16 ++++++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 5016230..57f3dca 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: kubooboo-chart -version: 0.3.12 \ No newline at end of file +version: 0.3.13 \ No newline at end of file diff --git a/chart/templates/nodeMonitor/deployment.yaml b/chart/templates/nodeMonitor/deployment.yaml index 08a0dc4..ed5f37d 100644 --- a/chart/templates/nodeMonitor/deployment.yaml +++ b/chart/templates/nodeMonitor/deployment.yaml @@ -23,6 +23,18 @@ spec: image: harbor.dinauer.dev/kubooboo/node-monitor:1 resources: requests: - memory: 10Mi + memory: 5Mi limits: - memory: 50Mi + memory: 25Mi + env: + - name: HOST_PATH + value: /host + volumeMounts: + - name: host-root + mountPath: /host + readOnly: true + volumes: + - name: host-root + hostPath: + path: / + type: Directory \ No newline at end of file