2022-02-06 08:40:51 +01:00
|
|
|
resource "hcloud_server" "agents" {
|
|
|
|
count = var.agents_num
|
|
|
|
name = "k3s-agent-${count.index}"
|
|
|
|
|
|
|
|
image = data.hcloud_image.linux.name
|
|
|
|
rescue = "linux64"
|
|
|
|
server_type = var.agent_server_type
|
|
|
|
location = var.location
|
|
|
|
ssh_keys = [hcloud_ssh_key.k3s.id]
|
|
|
|
firewall_ids = [hcloud_firewall.k3s.id]
|
2022-02-10 03:01:40 +01:00
|
|
|
placement_group_id = hcloud_placement_group.k3s.id
|
2022-02-06 08:40:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
labels = {
|
|
|
|
"provisioner" = "terraform",
|
|
|
|
"engine" = "k3s",
|
|
|
|
}
|
|
|
|
|
2022-02-11 16:00:19 +01:00
|
|
|
connection {
|
|
|
|
user = "root"
|
|
|
|
private_key = local.ssh_private_key
|
|
|
|
agent_identity = local.ssh_identity
|
|
|
|
host = self.ipv4_address
|
|
|
|
}
|
|
|
|
|
2022-02-06 08:40:51 +01:00
|
|
|
provisioner "file" {
|
|
|
|
content = templatefile("${path.module}/templates/config.ign.tpl", {
|
|
|
|
name = self.name
|
|
|
|
ssh_public_key = local.ssh_public_key
|
|
|
|
})
|
|
|
|
destination = "/root/config.ign"
|
|
|
|
}
|
|
|
|
|
2022-02-17 13:19:21 +01:00
|
|
|
# Combustion script file to install k3s-selinux
|
|
|
|
provisioner "file" {
|
|
|
|
content = local.combustion_script
|
|
|
|
destination = "/root/script"
|
|
|
|
}
|
|
|
|
|
2022-02-06 08:40:51 +01:00
|
|
|
# Install MicroOS
|
|
|
|
provisioner "remote-exec" {
|
2022-02-16 03:18:40 +01:00
|
|
|
inline = local.microOS_install_commands
|
2022-02-06 08:40:51 +01:00
|
|
|
}
|
|
|
|
|
2022-02-16 03:18:40 +01:00
|
|
|
# Issue a reboot command and wait for the node to reboot
|
2022-02-07 09:11:07 +01:00
|
|
|
provisioner "local-exec" {
|
2022-02-17 21:49:03 +01:00
|
|
|
command = "ssh ${local.ssh_args} root@${self.ipv4_address} '(sleep 2; reboot)&'; sleep 5"
|
2022-02-07 09:11:07 +01:00
|
|
|
}
|
2022-02-06 08:40:51 +01:00
|
|
|
provisioner "local-exec" {
|
2022-02-07 22:50:44 +01:00
|
|
|
command = <<-EOT
|
|
|
|
until ssh ${local.ssh_args} -o ConnectTimeout=2 root@${self.ipv4_address} true 2> /dev/null
|
|
|
|
do
|
2022-02-10 03:31:20 +01:00
|
|
|
echo "Waiting for MicroOS to reboot and become available..."
|
2022-02-07 22:50:44 +01:00
|
|
|
sleep 2
|
|
|
|
done
|
|
|
|
EOT
|
2022-02-06 08:40:51 +01:00
|
|
|
}
|
|
|
|
|
2022-02-09 13:03:31 +01:00
|
|
|
# Generating k3s agent config file
|
2022-02-06 08:40:51 +01:00
|
|
|
provisioner "file" {
|
2022-02-07 12:56:13 +01:00
|
|
|
content = yamlencode({
|
|
|
|
node-name = self.name
|
2022-02-16 04:24:20 +01:00
|
|
|
server = "https://${local.first_control_plane_network_ip}:6443"
|
|
|
|
token = random_password.k3s_token.result
|
2022-02-07 12:56:13 +01:00
|
|
|
kubelet-arg = "cloud-provider=external"
|
|
|
|
flannel-iface = "eth1"
|
2022-02-16 10:56:22 +01:00
|
|
|
node-ip = cidrhost(hcloud_network_subnet.k3s.ip_range, 513 + count.index)
|
2022-02-16 11:06:47 +01:00
|
|
|
node-label = var.automatically_upgrade_k3s ? ["k3s_upgrade=true"] : []
|
2022-02-06 08:40:51 +01:00
|
|
|
})
|
2022-02-16 03:18:40 +01:00
|
|
|
destination = "/tmp/config.yaml"
|
2022-02-06 08:40:51 +01:00
|
|
|
}
|
|
|
|
|
2022-02-16 03:18:40 +01:00
|
|
|
# Install k3s agent
|
2022-02-06 08:40:51 +01:00
|
|
|
provisioner "remote-exec" {
|
2022-02-16 04:24:20 +01:00
|
|
|
inline = local.install_k3s_agent
|
2022-02-16 03:18:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Upon reboot verify that k3s agent starts correctly
|
|
|
|
provisioner "remote-exec" {
|
|
|
|
inline = [
|
|
|
|
<<-EOT
|
|
|
|
timeout 120 bash <<EOF
|
|
|
|
until systemctl status k3s-agent > /dev/null; do
|
|
|
|
echo "Waiting for the k3s agent to start..."
|
2022-02-16 04:24:20 +01:00
|
|
|
sleep 2
|
2022-02-10 03:01:40 +01:00
|
|
|
done
|
2022-02-16 03:18:40 +01:00
|
|
|
EOF
|
2022-02-10 03:01:40 +01:00
|
|
|
EOT
|
2022-02-06 08:40:51 +01:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
network {
|
|
|
|
network_id = hcloud_network.k3s.id
|
2022-02-16 10:56:22 +01:00
|
|
|
ip = cidrhost(hcloud_network_subnet.k3s.ip_range, 513 + count.index)
|
2022-02-06 08:40:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
depends_on = [
|
|
|
|
hcloud_server.first_control_plane,
|
|
|
|
hcloud_network_subnet.k3s
|
|
|
|
]
|
|
|
|
}
|