Add nginx deployment

This commit is contained in:
mohand ou idir belfares
2026-06-08 11:00:05 +02:00
committed by GitHub
parent 313537c3f5
commit 0b24cff6b3
+11 -2
View File
@@ -27,14 +27,23 @@ jobs:
- name: Setup Helm - name: Setup Helm
uses: azure/setup-helm@v4 uses: azure/setup-helm@v4
- name: Add Helm repos - name: Add Helm repos
run: | run: |
helm repo add apache-airflow https://airflow.apache.org helm repo add apache-airflow https://airflow.apache.org
helm repo add codecentric https://codecentric.github.io/helm-charts helm repo add codecentric https://codecentric.github.io/helm-charts
helm repo add bitnami https://charts.bitnami.com/bitnami helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update 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 - name: Deploy Airflow
if: ${{ inputs.service == 'all' || inputs.service == 'airflow' }} if: ${{ inputs.service == 'all' || inputs.service == 'airflow' }}
run: | run: |