From fcc7c9814aca3a84065a5c616ecb686dc9d0ba87 Mon Sep 17 00:00:00 2001 From: fenix-gitea-admin Date: Tue, 21 Oct 2025 19:24:32 +0000 Subject: [PATCH 1/2] Update proxmox.tf --- proxmox.tf | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/proxmox.tf b/proxmox.tf index 8cf0c99..8edc250 100644 --- a/proxmox.tf +++ b/proxmox.tf @@ -122,9 +122,6 @@ resource "proxmox_virtual_environment_vm" "proxmox-kubernetes-VM-template" { network_device { bridge = "vmbr0" # rede de gestão para comunicação com Cluster A } - network_device { - bridge = "vmbr2" - } initialization { dns { @@ -136,11 +133,6 @@ initialization { } } - ip_config { - ipv4 { - address = "dhcp" - } - } user_data_file_id = proxmox_virtual_environment_file.cloud_init_yaml.id } } @@ -178,12 +170,6 @@ resource "proxmox_virtual_environment_vm" "k8s_vms" { gateway = each.value.gateway } } - ip_config { - ipv4 { - address = each.value.ip2 - gateway = each.value.gateway - } - } user_data_file_id = proxmox_virtual_environment_file.vm_user_data[each.key].id } From a7f3b6d7e109232dedfbdbcf0165d39eeeff7fd8 Mon Sep 17 00:00:00 2001 From: fenix-gitea-admin Date: Tue, 21 Oct 2025 19:25:08 +0000 Subject: [PATCH 2/2] [deploy-opentofu] [deploy-opentofu] --- merge_yaml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/merge_yaml.py b/merge_yaml.py index 758c627..4b80838 100644 --- a/merge_yaml.py +++ b/merge_yaml.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -from ruamel.yaml import YAML +from ruamel.yaml import YAML import sys import json from collections.abc import Mapping