Merge pull request 'fix: prevent kubelet auto-start during rebuild' (#85) from stage into master
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 18m58s

Reviewed-on: #85
This commit was merged in pull request #85.
This commit is contained in:
2026-03-02 12:14:38 +00:00

View File

@@ -227,6 +227,7 @@ in
systemd.services.kubelet = {
description = "Kubernetes Kubelet";
wantedBy = lib.mkForce [];
wants = [ "network-online.target" ];
after = [ "containerd.service" "network-online.target" ];
unitConfig.ConditionPathExists = "/var/lib/kubelet/config.yaml";