Compare commits

...

2 Commits

Author SHA1 Message Date
84513f4bb8 Merge pull request 'fix: run kube-vip in control-plane-only mode during bootstrap' (#96) from stage into master
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 16m50s
Reviewed-on: #96
2026-03-02 22:53:22 +00:00
c445638d4a fix: run kube-vip in control-plane-only mode during bootstrap
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 17s
Remove --services from kube-vip static pod manifests for init/join. Service LB mode can crash-loop during kubeadm bootstrap before cluster RBAC is ready, which prevented VIP binding.
2026-03-02 22:52:44 +00:00

View File

@@ -187,7 +187,6 @@ in
--interface "$iface" \ --interface "$iface" \
--address "$vip" \ --address "$vip" \
--controlplane \ --controlplane \
--services \
--arp \ --arp \
--leaderElection \ --leaderElection \
> /etc/kubernetes/manifests/kube-vip.yaml > /etc/kubernetes/manifests/kube-vip.yaml
@@ -297,7 +296,6 @@ in
--interface "$iface" \ --interface "$iface" \
--address "$vip" \ --address "$vip" \
--controlplane \ --controlplane \
--services \
--arp \ --arp \
--leaderElection \ --leaderElection \
> /etc/kubernetes/manifests/kube-vip.yaml > /etc/kubernetes/manifests/kube-vip.yaml