fix(actions): add --server-side flag to the argocd kubectl apply since the manifest is too long
Some checks failed
/ validate (push) Failing after 2m53s

This commit is contained in:
jad0s 2026-05-21 10:08:38 +02:00
parent 8d1b8269c7
commit 5a77439798

View file

@ -48,7 +48,7 @@ jobs:
- name: Install ArgoCD - name: Install ArgoCD
run: | run: |
kubectl create namespace argocd 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 kubectl wait --for=condition=available --timeout=180s deployment/argocd-server -n argocd
- name: Install SealedSecrets - name: Install SealedSecrets
run: | run: |