little-fountain-97815
03/08/2025, 5:23 AMFor example, to disable traefik from being installed on a new cluster, or to uninstall it and remove the manifest from an existing cluster, you can start K3s withFrom this document, does using. Multiple items can be disabled by separating their names with commas, or by repeating the flag.--disable=traefik
--disable=traefik
arg from the server start cmd also works the same? or it needs to be from installation cmd?most-holiday-73526
03/10/2025, 8:59 AMhelpful-monkey-18537
03/10/2025, 11:40 AM/etc/rancher/k3s/config.yaml
file on my master contains:
disable:
- traefik
That is read when the server/master starts. You could put it on the command line of the server too.
However if you have already started the server with traefik, I do not know if there are any resources that would now need to be cleaned up.most-holiday-73526
03/10/2025, 7:55 PM