1
0
mirror of https://github.com/coreos/prometheus-operator.git synced 2026-02-05 15:46:31 +01:00

Add documentation bit about ignoring controlplane targets on managed controlplane solutions

This commit is contained in:
Wylie Hobbs
2018-07-20 11:28:57 -06:00
parent 59fa77c1e6
commit b990c8741a

View File

@@ -5,3 +5,18 @@ This is the helm chart equivalent of `contrib/kube-prometheus`.
# Prerequisites
Requires helm >= 2.5.0
# Installing on GKE/EKS/AKS
Since the controlplane is managed in these solutions, make sure you tell prometheus to not monitor the scheduler or controller-manager:
```
deployKubeScheduler: False
deployKubeControllerManager: False
```
Then install your custom values (for example):
```
helm upgrade --install kube-prometheus coreos/kube-prometheus --namespace monitoring -f /root/.helm/kube-prometheus-values.yml"
```