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: |