File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,9 +52,6 @@ This repository provides Infrastructure as Code (IaC) for deploying and managing
5252├── virtual_machines.tf # Proxmox VM definitions for control plane and workers
5353├── longhorn-values.yaml # Helm values for Longhorn persistent storage
5454├── LONGHORN_TALOS_SETUP.md # Longhorn setup guide and troubleshooting
55- ├── templates/
56- │ ├── worker-disks.yaml.tmpl # Worker disk configuration template
57- │ └── cpnetwork.yaml.tmpl # Control plane network template (unused)
5855├── .github/workflows/terraform-lint.yml # CI workflow for linting
5956└── README.md # Project documentation
6057```
Original file line number Diff line number Diff line change @@ -85,29 +85,20 @@ resource "talos_machine_configuration_apply" "worker_config_apply" {
8585 client_configuration = talos_machine_secrets. machine_secrets . client_configuration
8686 machine_configuration_input = data. talos_machine_configuration . machineconfig_worker . machine_configuration
8787 node = var. talos_worker_01_ip_addr
88- config_patches = [
89- templatefile (" ./templates/worker-disks.yaml.tmpl" , {})
90- ]
9188}
9289
9390resource "talos_machine_configuration_apply" "worker_config_apply_02" {
9491 depends_on = [proxmox_virtual_environment_vm . talos_worker_02 ]
9592 client_configuration = talos_machine_secrets. machine_secrets . client_configuration
9693 machine_configuration_input = data. talos_machine_configuration . machineconfig_worker_02 . machine_configuration
9794 node = var. talos_worker_02_ip_addr
98- config_patches = [
99- templatefile (" ./templates/worker-disks.yaml.tmpl" , {})
100- ]
10195}
10296
10397resource "talos_machine_configuration_apply" "worker_config_apply_03" {
10498 depends_on = [proxmox_virtual_environment_vm . talos_worker_03 ]
10599 client_configuration = talos_machine_secrets. machine_secrets . client_configuration
106100 machine_configuration_input = data. talos_machine_configuration . machineconfig_worker_03 . machine_configuration
107101 node = var. talos_worker_03_ip_addr
108- config_patches = [
109- templatefile (" ./templates/worker-disks.yaml.tmpl" , {})
110- ]
111102}
112103
113104# Bootstrap Control Plane (commented out - cluster already bootstrapped)
Load diff This file was deleted.
Load diff This file was deleted.
You can’t perform that action at this time.
0 commit comments