fixed TLS handshake error on agents

This commit is contained in:
Karim Naufal
2022-03-03 19:08:12 +01:00
parent 52bb5f663f
commit c92868c054
5 changed files with 3 additions and 6 deletions

View File

@@ -44,11 +44,11 @@ resource "null_resource" "agents" {
provisioner "file" {
content = yamlencode({
node-name = module.agents[each.key].name
server = "https://${local.first_control_plane_network_ipv4}:6443"
server = "https://${module.control_planes[0].private_ipv4_address}:6443"
token = random_password.k3s_token.result
kubelet-arg = "cloud-provider=external"
flannel-iface = "eth1"
node-ip = module.agents[each.key].ipv4_address
node-ip = module.agents[each.key].private_ipv4_address
node-label = var.automatically_upgrade_k3s ? ["k3s_upgrade=true"] : []
})
destination = "/tmp/config.yaml"