high-vase-92581
04/30/2025, 5:10 PMcurl -sfL <https://get.k3s.io> | INSTALL_K3S_EXEC="--disable=traefik --tls-san 10.10.230.10" K3S_KUBECONFIG_MODE="644" sudo sh -
bland-article-62755
04/30/2025, 6:01 PM="--d
bland-article-62755
04/30/2025, 6:02 PM=" --d
bland-article-62755
04/30/2025, 6:02 PMbland-article-62755
04/30/2025, 6:02 PMhigh-vase-92581
04/30/2025, 6:02 PMbland-article-62755
04/30/2025, 6:04 PMbland-article-62755
04/30/2025, 6:04 PMcurl -sfL <https://get.k3s.io> | INSTALL_K3S_EXEC="server" sh -s - --disable-traefik
bland-article-62755
04/30/2025, 6:04 PMbland-article-62755
04/30/2025, 6:04 PMbland-article-62755
04/30/2025, 6:05 PMRemoving Traefik from the already running k3s
```sudo rm -rf /var/lib/rancher/k3s/server/manifests/traefik.yaml
helm uninstall traefik traefik-crd -n kube-system
sudo systemctl restart k3s```
bland-article-62755
04/30/2025, 6:05 PMbland-article-62755
04/30/2025, 6:05 PMhigh-vase-92581
04/30/2025, 6:06 PMhigh-vase-92581
04/30/2025, 6:07 PMhigh-vase-92581
04/30/2025, 6:08 PMcurl -sfL <https://get.k3s.io> | sh -s - server --disable=traefik
This is working 😄bland-article-62755
04/30/2025, 6:08 PMhigh-vase-92581
04/30/2025, 6:08 PMhigh-vase-92581
04/30/2025, 6:09 PMhigh-vase-92581
04/30/2025, 6:16 PMhigh-vase-92581
04/30/2025, 6:17 PMcurl -sfL <https://get.k3s.io> | INSTALL_K3S_EXEC="server --disable=traefik --tls-san=10.10.230.10" sh -s -
This one is not:
curl -sfL <https://get.k3s.io> | INSTALL_K3S_EXEC="--disable=traefik --tls-san 10.10.230.10 --tls-san 10.43.0.1 --tls-san 127.0.0.1 --tls-san ::1" K3S_KUBECONFIG_MODE="644" sudo sh -
INSTALL_K3S_EXEC
is unset in the new sh
^_^ thats why everything was working “as is”sticky-summer-13450
05/11/2025, 8:42 PMThis one is working!
Copy codecurl -sfL <https://get.k3s.io> | INSTALL_K3S_EXEC="server --disable=traefik --tls-san=10.10.230.10" sh -s -
This one is not:
In the “not working” version you’re runningCopy codecurl -sfL <https://get.k3s.io> | INSTALL_K3S_EXEC="--disable=traefik --tls-san 10.10.230.10 --tls-san 10.43.0.1 --tls-san 127.0.0.1 --tls-san ::1" K3S_KUBECONFIG_MODE="644" sudo sh -
sudo
which will not take environment variables from the current user.high-vase-92581
05/13/2025, 7:33 AM