This message was deleted.
# general
a
This message was deleted.
w
-> #rancher-desktop
c
A problem with an ingress controller is only a Gui problem? I don't think that you solve this problem using the gui alone. Unfortunately, the gui is part of rancher and, because it's there, it should work.
b
@clean-pilot-41175 So this is Rancher, not the Rancher-Desktop 😉 When you install k3s you need to add the install option
--disable traefik
but you should just be able to modify the k3s.service (not tested this), but my k3s.service has;
Copy code
ExecStart=/usr/local/bin/k3s \
    server \
	'--disable' \
	'traefik' \
    ....
👍 1
c
Thank you, that works for me (edit k3s.service). I had to set ClusterIP Rancher Service to Nodeport to get back to the web interface. (This is a local test System in a VM.)
k get service/rancher -n cattle-system -o wide
NAME      TYPE       CLUSTER-IP    EXTERNAL-IP   PORT(S)                      AGE    SELECTOR
rancher   NodePort   10.43.0.138   <none>        80:30855/TCP,443:31155/TCP   144m   app=rancher
You can then install Nginx Ingress and adjust the Traefik Ingress configuration on Nginx.
🙌 1