Compare commits

...

3 Commits

Author SHA1 Message Date
fce8f9c70c Merge pull request 'fix: allow required VM reboots and serialize apply' (#53) from stage into master
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 2m4s
Reviewed-on: #53
2026-02-28 19:02:04 +00:00
c1c1b3d7f7 Merge remote-tracking branch 'origin/master' into stage
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 19s
2026-02-28 19:00:36 +00:00
cc40dff49a fix: allow required VM reboots and serialize apply
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 18s
2026-02-28 18:55:07 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ jobs:
- name: Terraform Apply
working-directory: terraform
run: terraform apply -auto-approve tfplan
run: terraform apply -parallelism=1 -auto-approve tfplan
- name: Create SSH key
run: |

View File

@@ -25,7 +25,7 @@ resource "proxmox_vm_qemu" "control_planes" {
full_clone = true
os_type = "cloud-init"
agent = 1
automatic_reboot = false
automatic_reboot = true
cpu {
sockets = 1
@@ -83,7 +83,7 @@ resource "proxmox_vm_qemu" "workers" {
full_clone = true
os_type = "cloud-init"
agent = 1
automatic_reboot = false
automatic_reboot = true
cpu {
sockets = 1