From 759d97375bfe9c9fd2c4d4be2519911e3fd5d853 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Mon, 15 Sep 2025 17:00:35 +0200 Subject: [PATCH] feat: improved uninstall sections --- docs/talos-linux/basics.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/talos-linux/basics.md b/docs/talos-linux/basics.md index 7e5a21f..32cbed9 100644 --- a/docs/talos-linux/basics.md +++ b/docs/talos-linux/basics.md @@ -43,6 +43,12 @@ spec: EOF ``` +### Uninstall MetalLB + +```shell +helm uninstall metallb -n metallb-system +``` + ## NGINX - Install and Configure (option 1) ```shell @@ -61,7 +67,8 @@ helm install ingress-nginx ingress-nginx/ingress-nginx \ --set controller.nodeSelector."node-role\.kubernetes\.io/worker"="" ``` -### Uninstall +### Uninstall NGINX + ```shell helm uninstall ingress-nginx -n ingress-nginx ``` @@ -83,7 +90,7 @@ EOF helm install traefik traefik/traefik -n traefik-system --create-namespace -f traefik-values.yaml ``` -### Uninstall +### Uninstall Traefik ```shell helm uninstall traefik -n traefik-system