From 43df414c4d9fbfb7c5ec68ecf51caf3bb4c40136 Mon Sep 17 00:00:00 2001 From: Hermes Date: Tue, 14 Jul 2026 10:17:23 -0300 Subject: [PATCH] fix: CI manifest validation offline (--validate=false, no cluster on runner) --- .gitea/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index b1581dd..f09992d 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -37,7 +37,7 @@ jobs: - name: Validate Kubernetes manifest run: | if command -v kubectl >/dev/null 2>&1; then - kubectl apply --dry-run=client -f deploy/havenllo.yaml + kubectl apply --dry-run=client --validate=false -f deploy/havenllo.yaml fi build: name: Build and push image