Skip infra stack in CI, remove DRONE_IMAGE_CLONE setting
This commit is contained in:
parent
45b4528f0f
commit
2547a155ed
2 changed files with 4 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ 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
|
||||
# Apply all stacks (infra stack auto-skips in CI via terragrunt skip directive)
|
||||
- "cd stacks && terragrunt run --all --non-interactive -- apply -auto-approve"
|
||||
|
||||
- name: Push commit
|
||||
|
|
|
|||
|
|
@ -3,6 +3,9 @@ include "root" {
|
|||
path = find_in_parent_folders()
|
||||
}
|
||||
|
||||
# Skip in CI - infra stack manages Proxmox VMs which require SSH to the hypervisor
|
||||
skip = get_env("CI", "") != ""
|
||||
|
||||
# Override provider generation to include proxmox (instead of k8s providers)
|
||||
generate "providers" {
|
||||
path = "providers.tf"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue