chore: update kube version

This commit is contained in:
Serge Logvinov
2025-11-04 10:32:07 +07:00
parent d4144c2adf
commit cb66e914bf
4 changed files with 4 additions and 4 deletions

View File

@@ -156,7 +156,7 @@ resource "proxmox_virtual_environment_vm" "db" {
}
}
datastore_id = "local"
datastore_id = lookup(try(var.nodes[each.value.zone], {}), "storage", "local")
meta_data_file_id = proxmox_virtual_environment_file.db_metadata[each.key].id
user_data_file_id = proxmox_virtual_environment_file.db_machineconfig[each.key].id
}

View File

@@ -177,7 +177,7 @@ resource "proxmox_virtual_environment_vm" "web" {
}
}
datastore_id = "local"
datastore_id = lookup(try(var.nodes[each.value.zone], {}), "storage", "local")
meta_data_file_id = proxmox_virtual_environment_file.web_metadata[each.key].id
user_data_file_id = proxmox_virtual_environment_file.web_machineconfig[each.key].id
}

View File

@@ -155,7 +155,7 @@ resource "proxmox_virtual_environment_vm" "worker" {
}
}
datastore_id = "local"
datastore_id = lookup(try(var.nodes[each.value.zone], {}), "storage", "local")
meta_data_file_id = proxmox_virtual_environment_file.worker_metadata[each.key].id
user_data_file_id = proxmox_virtual_environment_file.worker_machineconfig[each.key].id
}

View File

@@ -86,7 +86,7 @@ variable "instances" {
type = map(any)
default = {
"all" = {
version = "v1.33.5"
version = "v1.34.1"
},
"hvm-1" = {
enabled = false,