2021-07-30 10:12:37 +02:00
|
|
|
resource "hcloud_server" "first_control_plane" {
|
2021-11-30 23:09:34 +01:00
|
|
|
name = local.name_master
|
2021-07-30 10:12:37 +02:00
|
|
|
|
2021-09-01 00:37:11 +02:00
|
|
|
image = data.hcloud_image.linux.name
|
2021-11-30 23:09:34 +01:00
|
|
|
rescue = "linux64"
|
2021-09-01 00:37:11 +02:00
|
|
|
server_type = var.control_plane_server_type
|
|
|
|
location = var.location
|
|
|
|
ssh_keys = [hcloud_ssh_key.default.id]
|
|
|
|
firewall_ids = [hcloud_firewall.k3s.id]
|
2021-07-30 10:12:37 +02:00
|
|
|
|
|
|
|
labels = {
|
2021-09-01 00:37:11 +02:00
|
|
|
"provisioner" = "terraform",
|
2021-11-30 23:09:34 +01:00
|
|
|
"engine" = "k3s"
|
2021-07-30 10:12:37 +02:00
|
|
|
}
|
|
|
|
|
2021-11-30 23:09:34 +01:00
|
|
|
provisioner "file" {
|
|
|
|
content = data.template_file.master.rendered
|
|
|
|
destination = "/tmp/config.yaml"
|
2021-07-30 10:12:37 +02:00
|
|
|
|
|
|
|
connection {
|
|
|
|
user = "root"
|
|
|
|
private_key = file(var.private_key)
|
|
|
|
host = self.ipv4_address
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-30 23:09:34 +01:00
|
|
|
|
2021-07-30 10:12:37 +02:00
|
|
|
provisioner "remote-exec" {
|
|
|
|
inline = [
|
2021-11-30 23:09:34 +01:00
|
|
|
"apt install -y grub-efi grub-pc-bin mtools xorriso",
|
|
|
|
"latest=$(curl -s https://api.github.com/repos/rancher/k3os/releases | jq '.[0].tag_name')",
|
|
|
|
"curl -Lo ./install.sh https://raw.githubusercontent.com/rancher/k3os/$(echo $latest | xargs)/install.sh",
|
|
|
|
"chmod +x ./install.sh",
|
|
|
|
"./install.sh --config /tmp/config.yaml /dev/sda https://github.com/rancher/k3os/releases/download/$(echo $latest | xargs)/k3os-amd64.iso",
|
|
|
|
"shutdown -r now"
|
2021-07-30 10:12:37 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
connection {
|
|
|
|
user = "root"
|
|
|
|
private_key = file(var.private_key)
|
|
|
|
host = self.ipv4_address
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
provisioner "local-exec" {
|
2021-11-30 23:09:34 +01:00
|
|
|
command = <<-EOT
|
|
|
|
ping ${self.ipv4_address} | grep --line-buffered "bytes from" | head -1 && sleep 60 && scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ${var.private_key} rancher@${self.ipv4_address}:/etc/rancher/k3s/k3s.yaml ${path.module}/kubeconfig.yaml
|
|
|
|
sed -i -e 's/127.0.0.1/${self.ipv4_address}/g' ${path.module}/kubeconfig.yaml
|
|
|
|
EOT
|
2021-07-30 10:12:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
provisioner "local-exec" {
|
2021-11-30 23:09:34 +01:00
|
|
|
command = <<-EOT
|
|
|
|
kubectl -n kube-system create secret generic hcloud --from-literal=token=${random_password.k3s_token.result} --from-literal=network=${hcloud_network.k3s.name} --kubeconfig ${path.module}/kubeconfig.yaml
|
|
|
|
kubectl apply -f ${path.module}/manifests/hcloud-ccm-net.yaml --kubeconfig ${path.module}/kubeconfig.yaml
|
|
|
|
kubectl -n kube-system create secret generic hcloud-csi --from-literal=token=${random_password.k3s_token.result} --kubeconfig ${path.module}/kubeconfig.yaml
|
|
|
|
kubectl apply -f https://raw.githubusercontent.com/hetznercloud/csi-driver/master/deploy/kubernetes/hcloud-csi.yml --kubeconfig ${path.module}/kubeconfig.yaml
|
|
|
|
EOT
|
2021-07-30 10:12:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
network {
|
|
|
|
network_id = hcloud_network.k3s.id
|
2021-09-01 00:37:11 +02:00
|
|
|
ip = local.first_control_plane_network_ip
|
2021-07-30 10:12:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
depends_on = [
|
2021-09-01 00:37:11 +02:00
|
|
|
hcloud_network_subnet.k3s,
|
|
|
|
hcloud_firewall.k3s
|
2021-07-30 10:12:37 +02:00
|
|
|
]
|
|
|
|
}
|