fix(control-plane): use correct taints and labels for first control plane node and fix existing default taints

This commit is contained in:
Henk van Maanen
2022-04-11 17:44:50 +02:00
parent 4117776994
commit b142be2d84
2 changed files with 7 additions and 4 deletions

View File

@@ -18,8 +18,8 @@ resource "null_resource" "first_control_plane" {
kubelet-arg = "cloud-provider=external"
node-ip = module.control_planes[keys(module.control_planes)[0]].private_ipv4_address
advertise-address = module.control_planes[keys(module.control_planes)[0]].private_ipv4_address
node-taint = var.allow_scheduling_on_control_plane ? [] : ["node-role.kubernetes.io/master:NoSchedule"]
node-label = var.automatically_upgrade_k3s ? ["k3s_upgrade=true"] : []
node-taint = local.control_plane_nodepools[keys(module.control_planes)[0]].taints
node-label = local.control_plane_nodepools[keys(module.control_planes)[0]].labels
})
destination = "/tmp/config.yaml"
}