From 18ca8cd9790f0c7da93a76845580f55575318ebe Mon Sep 17 00:00:00 2001 From: wbsong111 Date: Wed, 8 Jul 2026 16:32:22 +0900 Subject: [PATCH] fix(catalog): exclude windowsExporter from rancher-monitoring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Windows 노드 미사용 + Windows 이미지라 trivy 스캔 불가 → windowsExporter.enabled=false 로 SBOM/패키징 대상에서 제외. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../rancher-monitoring/104.1.2+up57.0.3/custom-values.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/manifests/helm/rancher-monitoring/104.1.2+up57.0.3/custom-values.yaml b/manifests/helm/rancher-monitoring/104.1.2+up57.0.3/custom-values.yaml index e56a2bd..b402ed2 100644 --- a/manifests/helm/rancher-monitoring/104.1.2+up57.0.3/custom-values.yaml +++ b/manifests/helm/rancher-monitoring/104.1.2+up57.0.3/custom-values.yaml @@ -60,4 +60,9 @@ alertmanager: # helm 배포한 ingressNginx가 배포되어 있을 때 사용한다. # ingressNginx: -# enabled: true \ No newline at end of file +# enabled: true + +# Windows 노드를 사용하지 않으므로 windowsExporter 제외. +# (Windows 이미지라 Linux 에서 trivy 스캔도 불가 → SBOM 대상에서 제외) +windowsExporter: + enabled: false \ No newline at end of file