From b6d619e5df1da03d208261f712dcfd309352d96a Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 15 Mar 2026 22:59:34 +0000 Subject: [PATCH] fix: increase terragrunt-apply step memory to 2Gi LimitRange defaults containers to 192Mi which is insufficient for terragrunt apply on the platform stack (48 vault refs, many modules). Set explicit 1Gi request / 2Gi limit via backend_options. --- .woodpecker/default.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.woodpecker/default.yml b/.woodpecker/default.yml index 4fdea779..d51df71f 100644 --- a/.woodpecker/default.yml +++ b/.woodpecker/default.yml @@ -28,6 +28,13 @@ steps: - name: terragrunt-apply image: alpine + backend_options: + kubernetes: + resources: + requests: + memory: 1Gi + limits: + memory: 2Gi commands: - "apk update && apk add curl unzip git openssh-client" # Install Terraform