From 0b24cff6b352766577168bb4fca7b9483fbd4d29 Mon Sep 17 00:00:00 2001 From: mohand ou idir belfares <85136127+idirbfs@users.noreply.github.com> Date: Mon, 8 Jun 2026 11:00:05 +0200 Subject: [PATCH] Add nginx deployment --- .github/workflows/deploy.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9bf106c..230ceac 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,14 +27,23 @@ jobs: - name: Setup Helm uses: azure/setup-helm@v4 - + - name: Add Helm repos run: | helm repo add apache-airflow https://airflow.apache.org helm repo add codecentric https://codecentric.github.io/helm-charts helm repo add bitnami https://charts.bitnami.com/bitnami helm repo update - + + - name: Deploy Nginx + run: | + helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx + helm repo update + helm install ingress-nginx ingress-nginx/ingress-nginx \ + --namespace ingress-nginx \ + --create-namespace \ + --wait + - name: Deploy Airflow if: ${{ inputs.service == 'all' || inputs.service == 'airflow' }} run: |