Update cluster options

This commit is contained in:
Sebastiaan van Steenis
2019-03-22 10:20:45 -07:00
committed by Denise Schannon
parent f1a7e785e0
commit dc6860bffb
5 changed files with 107 additions and 16 deletions
@@ -8,6 +8,7 @@ RKE supports pluggable add-ons. Add-ons are used to deploy several cluster compo
* [Network plug-ins]({{< baseurl >}}/rke/v0.1.x/en/config-options/add-ons/network-plugins/)
* [Ingress controller]({{< baseurl >}}/rke/v0.1.x/en/config-options/add-ons/ingress-controllers/)
* [DNS provider]({{< baseurl >}}/rke/v0.1.x/en/config-options/add-ons/dns/)
* [Metrics Server]({{< baseurl >}}/rke/v0.1.x/en/config-options/add-ons/metrics-server/)
The images used for these add-ons under the [`system_images` directive]({{< baseurl >}}/rke/v0.1.x/en/config-options/system-images/). For each Kubernetes version, there are default images associated with each add-on, but these can be overridden by changing the image tag in `system_images`.
@@ -0,0 +1,21 @@
---
title: Metrics Server
weight: 263
---
By default, RKE deploys [Metrics Server](https://github.com/kubernetes-incubator/metrics-server) to provide metrics on resources in your cluster.
RKE will deploy Metrics Server as a Deployment.
The image used for Metrics Server is under the [`system_images` directive]({{< baseurl >}}/rke/v0.1.x/en/config-options/system-images/). For each Kubernetes version, there is a default image associated with the Metrics Server, but these can be overridden by changing the image tag in `system_images`.
## Disabling the Metrics Server
_Available as of v0.2.0_
You can disable the default controller by specifying `none` to the monitoring `provider` directive in the cluster configuration.
```yaml
monitoring:
provider: none
```