From 5a77439798dc6d92618fad098c584784748f1745 Mon Sep 17 00:00:00 2001 From: jad0s Date: Thu, 21 May 2026 10:08:38 +0200 Subject: [PATCH] fix(actions): add --server-side flag to the argocd kubectl apply since the manifest is too long --- .forgejo/workflows/validate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/validate.yaml b/.forgejo/workflows/validate.yaml index 6fd2004..ba1bece 100644 --- a/.forgejo/workflows/validate.yaml +++ b/.forgejo/workflows/validate.yaml @@ -48,7 +48,7 @@ jobs: - name: Install ArgoCD run: | kubectl create namespace argocd - kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml + kubectl apply -n argocd --server-side -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml kubectl wait --for=condition=available --timeout=180s deployment/argocd-server -n argocd - name: Install SealedSecrets run: |