feat: add longhorn application #4
1 changed files with 7 additions and 1 deletions
|
|
@ -48,7 +48,13 @@ jobs:
|
||||||
kubectl rollout status deployment/sealed-secrets-controller -n kube-system --timeout=60s
|
kubectl rollout status deployment/sealed-secrets-controller -n kube-system --timeout=60s
|
||||||
|
|
||||||
- name: Apply ArgoCD apps
|
- 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
|
- name: Wait for ArgoCD sync
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue