K8s中的气流-卷曲URL显示重定向

时间:2020-01-26 14:04:13

标签: kubernetes airflow kubernetes-helm

我在kubernetes中部署了气流。当我卷曲base_url时,它显示:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<title>Redirecting...</title>
<h1>Redirecting...</h1>
* Connection #0 to host <my_base_url> left intact
<p>You should be redirected automatically to target URL: <a href="/admin/">/admin/</a>.  If not click the link.

如果我浏览base_url / health,则表明它是健康的。 如果运行kubectl port-forward命令,则可以看到UI。

是什么原因导致重定向消息?

1 个答案:

答案 0 :(得分:1)

最适合我的解决方案是设置环境变量。

FORWARDED_ALLOW_IPS = *

在部署yaml文件中添加此环境变量。

          env:          
            - name: FORWARDED_ALLOW_IPS
              value: "*"

我在airflow.cfg中设置了enable_proxy_fix = False

我在这里找到了一个相关的SO问题:Cannot access airflow web server via AWS load balancer HTTPS because airflow redirects me to HTTP