Apply only platform stack in CI (matches old pipeline scope)

This commit is contained in:
Viktor Barzin 2026-02-22 18:59:02 +00:00
parent 9415823ab8
commit 5cfe6595cd
2 changed files with 3 additions and 3 deletions

View file

@ -29,8 +29,8 @@ steps:
# Install Terragrunt
- "wget -O /usr/local/bin/terragrunt https://github.com/gruntwork-io/terragrunt/releases/download/v0.99.4/terragrunt_linux_amd64"
- "chmod 755 /usr/local/bin/terragrunt"
# Apply all stacks (--queue-ignore-errors: infra stack fails in CI due to no SSH to Proxmox, but other stacks should still run)
- "cd stacks && terragrunt run --all --non-interactive --queue-ignore-errors -- apply -auto-approve"
# Apply platform stack (core infrastructure services - equivalent to old terraform apply -target=module.kubernetes_cluster)
- "cd stacks/platform && terragrunt apply --non-interactive -auto-approve"
- name: Push commit
image: alpine