fix(k3s cluster): fix typo, remove traefik

This commit is contained in:
Ryan Yin
2024-03-17 11:25:26 +08:00
parent 26ee648569
commit fbd13d6f00
7 changed files with 19 additions and 13 deletions
+3 -2
View File
@@ -35,8 +35,9 @@ in {
+ " --kube-apiserver-arg='--allow-privileged=true'" # required by kubevirt
+ " --node-taint=CriticalAddonsOnly=true:NoExecute" # prevent workloads from running on the master
+ " --data-dir /var/lib/rancher/k3s"
+ " --disable-helm-controller"
+ " --disable-helm-controller" # we use fluxcd instead
+ " --disable=traefik" # deploy our own ingress controller instead
+ " --etcd-expose-metrics true"
+ ''--etcd-snapshot-schedule-cron "0 */12 * * *"'';
+ " --etcd-snapshot-schedule-cron '0 */12 * * *'";
};
}