Kubernetes Ingress + Apache airflow

前端 未结 1 370
夕颜
夕颜 2021-01-21 12:31

Can you please help me?

I\'m trying to start Apache airflow in Kubernetes (AWS), in vpc. I\'m using helm stable/airflow 7.1.1

Everything starts ok. But to get ac

1条回答
  •  被撕碎了的回忆
    2021-01-21 12:59

    Is not actual anymore. Have won it using:

    nginx.ingress.kubernetes.io/server-snippet: |
              proxy_set_header Host $host;
              proxy_redirect off;
              proxy_http_version 1.1;
              proxy_set_header Upgrade $http_upgrade;
              proxy_set_header Connection "upgrade";
    

    Also it will be needed to setup in airflow:

    ENABLE_PROXY_FIX: "True"
    

    and

    baseUrl: "http://local.airflow/airflow"
    

    0 讨论(0)
提交回复
热议问题