feat: Bootstrap Talos k8s cluster

This commit is contained in:
Peter 2025-10-28 22:46:17 +01:00
parent 9ca0f7c431
commit 7d3c60325f
Signed by: Peter
SSH key fingerprint: SHA256:B5tYaxBExaDm74r1px9iVeZ6F/ZDiyiy9SbBqfZYrvg
7 changed files with 336 additions and 0 deletions

View file

@ -0,0 +1,23 @@
variable "node_config" {
description = "Talos node configuration"
type = object({
ipv4_gateway = string
talos_version = string
cilium_version = string
cluster_name = string
kubernetes_version = string
cluster_endpoint = string
proxmox_node = string
controlplane_addresses = list(string)
worker_addresses = list(string)
})
}
variable "talos_nodes" {
description = "List of Talos nodes to bootstrap"
type = list(object({
name = string
type = string
ipv4_address = string
}))
}