From 16e819dc01d3022877559b8bc8f6d05778bde2f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Fri, 29 May 2026 10:53:42 +0000 Subject: [PATCH] monitoring prometheus version 86.0.1 --- monitoring/prometheus/deploy/README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/monitoring/prometheus/deploy/README.md b/monitoring/prometheus/deploy/README.md index a1716b5..b5d67e4 100644 --- a/monitoring/prometheus/deploy/README.md +++ b/monitoring/prometheus/deploy/README.md @@ -19,12 +19,13 @@ helm repo add prometheus-community https://prometheus-community.github.io/helm-c ```bash kubectl get namespace monitoring || kubectl create namespace monitoring helm upgrade --install prometheus-stack prometheus-community/kube-prometheus-stack \ +--version=86.0.1 \ --namespace monitoring \ ---values=./helm/01-only-crd-and-operator.yaml \ ---values=./helm/02-kube-metrics.yaml \ ---values=./helm/03-node-exporter.yaml \ ---values=./helm/04-kubelet.yaml \ ---values=./helm/10-testing-values.yaml +--values=./deploy/helm/01-only-crd-and-operator.yaml \ +--values=./deploy/helm/02-kube-metrics.yaml \ +--values=./deploy/helm/03-node-exporter.yaml \ +--values=./deploy/helm/04-kubelet.yaml \ +--values=./deploy/helm/10-testing-values.yaml ``` ## deploy prometheus agent @@ -40,5 +41,5 @@ kubectl label namespace monitoring prometheus-monitoring=enabled --overwrite ``` ```bash -kubectl apply -f ./prometheus-agent.yaml +kubectl apply -f ./deploy/prometheus-agent.yaml ```