feat: add longhorn application #4

Merged
jad0s merged 5 commits from dev into main 2026-06-13 18:52:16 +00:00
Showing only changes of commit a7cef4df68 - Show all commits

View file

@ -48,7 +48,13 @@ jobs:
kubectl rollout status deployment/sealed-secrets-controller -n kube-system --timeout=60s
- name: Apply ArgoCD apps
run: kubectl apply -f apps/
run: |
for f in apps/*.yaml; do
case "$f" in
apps/longhorm.yaml) echo "Skipping $f" ;;
*) kubectl apply -f "$f" ;;
esac
done
- name: Wait for ArgoCD sync
run: |