Closed crazyelectron-io closed 7 months ago
Did you disable traefik on all server nodes?
What is the output of kubectl get node -o yaml | grep node-args
?
Did you disable traefik on all server nodes?
@brandond Thanks for your suggestion. I installed a 1 node cluster with my Ansible playbook and that worked as it should (no Traefik installed). Need to check what changes when installing the additional nodes, I guess...
Once I can confirm, I will close this issue.
After tweaking the arguments and variables in the Ansible roles, it now installs a 6 node cluster without Traefik. So, it was a user error... issue closed.
Environmental Info: K3s Version: v1.29.3+k3s1
Node(s) CPU architecture, OS, and Version: Linux k3s-prod-m01 6.1.0-18-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.76-1 (2024-02-01) x86_64 GNU/Linux
Cluster Configuration: I started setup of a 6 node cluster. So far I installed 3 master nodes (through Ansible).
Describe the bug: With the option
--disable traefik
in place at install time, it still deploys Traefik.The K3s service file (
/etc/systemd/system/k3s.service
):Steps To Reproduce:
--disable servicelb --tls-san 10.100.0.10 --disable traefik
.kubectl get pods -A
, which will show Traefik running.Expected behavior: Treafik should not have been installed.
Actual behavior: Despite the disable option, Traefik is installed as shown by the
kubectl get pods -A
command.