Added virtual machines and talos config to create a three node cluster

This commit is contained in:
Max Pfeiffer
2024-11-09 12:32:59 +01:00
parent 9e2b64cc8c
commit ee675221d9
18 changed files with 411 additions and 1 deletions

15
locals.tf Normal file
View File

@@ -0,0 +1,15 @@
locals {
repo_root = "${dirname(abspath(path.root))}"
# Talos Linux
talos_linux_iso_image_filename = "talos-linux-qemu-guest-agent-amd64.iso"
# K8s control plane
k8s_control_plane_ip_address = "192.168.1.150"
# K8s worker 1
k8s_worker_1_ip_address = "192.168.1.151"
# K8s worker 2
k8s_worker_2_ip_address = "192.168.1.152"
}