lan-kubernetes-cluster
K3s
Redwood's "golden path" during a fresh install: curl -sfL https://get.k3s.io | sh -s - --disable=traefik
If you already have a K3s install, you do need to make sure Traefik is disabled at startup. For most, you're likely using systemd to startup K3s so you can modify /etc/systemd/system/k3s.service
(this is the path for Ubuntu 24.04) and add the --disable=traefik
command to the ExecStart
. For example:
ExecStart=/usr/local/bin/k3s \
server \
'--disable=traefik'