Skip to content

Commit

Permalink
Add NGINX Ingress Controller installation to ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
lennartdohmann committed Oct 22, 2024
1 parent 5231299 commit 325f73c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,14 @@ jobs:
with:
version: v3.13.3

- name: Install NGINX Ingress Controller
run: |
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/cloud/deploy.yaml
kubectl wait --namespace ingress-nginx \
--for=condition=ready pod \
--selector=app.kubernetes.io/component=controller \
--timeout=300s
- name: Deploy Helm Chart
run: |
cat <<EOF > values-local.yaml
Expand All @@ -84,7 +92,6 @@ jobs:
allowlistLookup:
enabled: false
EOF
cat values-local.yaml
helm dep up charts/vaas
helm upgrade --install vaas charts/vaas -f values-local.yaml -n vaas --create-namespace --debug
Expand Down

0 comments on commit 325f73c

Please sign in to comment.