installer: welcome
diff --git a/scripts/homelab/k3s-install.sh b/scripts/homelab/k3s-install.sh
index b48b508..01639fd 100755
--- a/scripts/homelab/k3s-install.sh
+++ b/scripts/homelab/k3s-install.sh
@@ -6,7 +6,8 @@
MASTER_INIT="192.168.0.11"
MASTERS=()
-WORKERS=("192.168.0.12" "192.168.0.13" "192.168.0.14" "192.168.0.15")
+WORKERS=("192.168.0.12")
+# WORKERS=("192.168.0.12" "192.168.0.13" "192.168.0.14" "192.168.0.15")
k3sup install \
--k3s-channel stable \
@@ -14,7 +15,7 @@
--user $USER \
--ip $MASTER_INIT \
--k3s-version $K3S_VERSION \
- --k3s-extra-args "--disable traefik --disable local-storage --disable servicelb --kube-proxy-arg proxy-mode=ipvs --kube-proxy-arg ipvs-strict-arp --flannel-backend host-gw"
+ --k3s-extra-args "--node-taint dodo=dodo:NoSchedule --disable traefik --disable local-storage --disable servicelb --kube-proxy-arg proxy-mode=ipvs --kube-proxy-arg ipvs-strict-arp --flannel-backend host-gw"
for IP in "${MASTERS[@]}";
do