Fixed dns issue, updated Talos

This commit is contained in:
Max Pfeiffer
2026-01-03 17:48:11 +01:00
parent e533438a5b
commit c9fc58993c
5 changed files with 29 additions and 17 deletions

View File

@@ -22,24 +22,24 @@ variable "proxmox_storage_device" {
variable "talos_version" {
type = string
default = "1.11.4"
default = "1.11.6"
}
variable "kubernetes_version" {
type = string
default = "1.34.1"
default = "1.34.2"
}
variable "talos_linux_iso_image_url" {
description = "URL of the Talos ISO image for initially booting the VM"
type = string
default = "https://factory.talos.dev/image/ce4c980550dd2ab1b17bbf2b08801c7eb59418eafe8f279833297925d67c7515/v1.11.4/nocloud-amd64.iso"
default = "https://factory.talos.dev/image/ce4c980550dd2ab1b17bbf2b08801c7eb59418eafe8f279833297925d67c7515/v1.11.6/nocloud-amd64.iso"
}
variable "talos_linux_iso_image_filename" {
description = "Filename of the Talos ISO image for initially booting the VM"
type = string
default = "talos-linux-v1.11.4-qemu-guest-agent-amd64.iso"
default = "talos-linux-v1.11.6-qemu-guest-agent-amd64.iso"
}
variable "cluster_name" {
@@ -72,13 +72,13 @@ variable "node_data" {
controlplanes = {
"192.168.1.101" = {
install_disk = "/dev/vda"
install_image = "factory.talos.dev/nocloud-installer/ce4c980550dd2ab1b17bbf2b08801c7eb59418eafe8f279833297925d67c7515:v1.11.4"
install_image = "factory.talos.dev/nocloud-installer/ce4c980550dd2ab1b17bbf2b08801c7eb59418eafe8f279833297925d67c7515:v1.11.6"
},
}
workers = {
"192.168.1.102" = {
install_disk = "/dev/vda"
install_image = "factory.talos.dev/nocloud-installer/ce4c980550dd2ab1b17bbf2b08801c7eb59418eafe8f279833297925d67c7515:v1.11.4"
install_image = "factory.talos.dev/nocloud-installer/ce4c980550dd2ab1b17bbf2b08801c7eb59418eafe8f279833297925d67c7515:v1.11.6"
},
}
}