Skip to content

Commit

Permalink
Update disable charts (#127)
Browse files Browse the repository at this point in the history
* Update disable charts

Signed-off-by: Derek Nola <[email protected]>
  • Loading branch information
dereknola authored Nov 27, 2023
1 parent d86174e commit 8d0b208
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions docs/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,22 @@ systemctl start rke2-server

The server charts bundled with `rke2` deployed during cluster bootstrapping can be disabled and replaced with alternatives. A common use case is replacing the bundled `rke2-ingress-nginx` chart with an alternative.

To disable any of the bundled system charts, set the `disable` parameter in the config file before bootstrapping. The full list of system charts to disable is below:
To disable any of the bundled system charts, set the `disable` parameter in the config file before bootstrapping. An example of disabling all avaliable system charts is:

- `rke2-canal`
- `rke2-coredns`
- `rke2-ingress-nginx`
- `rke2-metrics-server`

Note that it is the cluster operator's responsibility to ensure that components are disabled or replaced with care, as the server charts play important roles in cluster operability. Refer to the [architecture overview](./architecture.md#server-charts) for more information on the individual system charts role within the cluster.
```yaml
# /etc/rancher/rke2/config.yaml
disable:
- rke2-coredns
- rke2-ingress-nginx
- rke2-metrics-server
- rke2-snapshot-controller
- rke2-snapshot-controller-crd
- rke2-snapshot-validation-webhook
```
:::warning
It is the cluster operator's responsibility to ensure that components are disabled or replaced with care, as the server charts play important roles in cluster operability. Refer to the [architecture overview](./architecture.md#server-charts) for more information on the individual system charts role within the cluster.
:::
## Installation on classified AWS regions or networks with custom AWS API endpoints
Expand Down

0 comments on commit 8d0b208

Please sign in to comment.