mirror of
https://github.com/prometheus-operator/kube-prometheus.git
synced 2025-08-12 17:27:14 +02:00
With the objective of improving our README, customization examples are being moved to a dedicated folder under `docs/`. Signed-off-by: ArthurSens <arthursens2005@gmail.com>
26 lines
634 B
Markdown
26 lines
634 B
Markdown
### Running kube-prometheus on specific platforms
|
|
|
|
A common example is that not all Kubernetes clusters are created exactly the same way, meaning the configuration to monitor them may be slightly different. For the following clusters there are mixins available to easily configure them:
|
|
|
|
* aws
|
|
* bootkube
|
|
* eks
|
|
* gke
|
|
* kops
|
|
* kops_coredns
|
|
* kubeadm
|
|
* kubespray
|
|
|
|
These mixins are selectable via the `platform` field of kubePrometheus:
|
|
|
|
```jsonnet mdox-exec="cat examples/jsonnet-snippets/platform.jsonnet"
|
|
(import 'kube-prometheus/main.libsonnet') +
|
|
{
|
|
values+:: {
|
|
common+: {
|
|
platform: 'example-platform',
|
|
},
|
|
},
|
|
}
|
|
```
|