Add FlexVolume for agents

This commit is contained in:
Philipp 2022-04-10 21:05:01 +02:00
parent cda6baf3f2
commit f4dc291429
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432

View File

@ -44,7 +44,7 @@ resource "null_resource" "agents" {
# Generating k3s agent config file
provisioner "file" {
content = yamlencode({
content = yamlencode(merge({
node-name = module.agents[each.key].name
server = "https://${module.control_planes[0].private_ipv4_address}:6443"
token = random_password.k3s_token.result
@ -52,7 +52,11 @@ resource "null_resource" "agents" {
flannel-iface = "eth1"
node-ip = module.agents[each.key].private_ipv4_address
node-label = var.automatically_upgrade_k3s ? ["k3s_upgrade=true"] : []
})
},
var.cni_plugin == "calico" ? {
flannel-backend = "none"
kube-controller-manager-arg = "flex-volume-plugin-dir=/var/lib/kubelet/volumeplugins"
} : {}))
destination = "/tmp/config.yaml"
}