From 2a75ea99a74cbebf7cb75044681e696b8944958f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Sun, 7 Jun 2026 21:44:30 +0000 Subject: [PATCH] deleted: services/monitoring/prometheus/deploy/README.md --- .../monitoring/prometheus/deploy/README.md | 43 ------------------- 1 file changed, 43 deletions(-) delete mode 100644 services/monitoring/prometheus/deploy/README.md diff --git a/services/monitoring/prometheus/deploy/README.md b/services/monitoring/prometheus/deploy/README.md deleted file mode 100644 index ea8e352..0000000 --- a/services/monitoring/prometheus/deploy/README.md +++ /dev/null @@ -1,43 +0,0 @@ -# Prometheus Setup - - -## helm chart - -```bash -#add repo -helm repo add prometheus-community https://prometheus-community.github.io/helm-charts -``` - -**This helm chart, installs:** - -- crd -- Operator -- kubernetes services monitors - -```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=./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 - -**requirements:** - -On namespaces running prometheus monitors add label `prometheus-monitoring=enabled` - -**Example:** - -``` bash -kubectl label namespace monitoring prometheus-monitoring=enabled --overwrite -``` - -```bash -kubectl apply -f ./deploy/prometheus-agent.yaml -```