我正在尝试使用kubernetes nginx入口控制器:(quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.22.0)。下面是我的入口对象。
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: cc-store-ingress
annotations:
kubernetes.io/ingress.class: "nginx"
nginx.ingress.kubernetes.io/rewrite-target: /$1
nginx.ingress.kubernetes.io/add-base-url: "true"
#nginx.ingress.kubernetes.io/configuration-snippet: |
# sub_filter "http://my-ip:30021/" "http://my-ip:30021/app/";
# sub_filter_once off;
spec:
#tls:
#- secretName: tls-secret
rules:
- host: my-ip
http:
paths:
- path: /app/?(.*)
backend:
serviceName: appsvc
servicePort: 7201
当我尝试通过入口访问该服务时,我打了一个空白页,我理解这是因为响应(一些Java脚本,CSS和其他脚本集)正在返回my-ip:30021 /而不是my-ip :30021 / app。 (检查了nginx日志的初始连接是否给出了200个响应,随后css和js的加载均失败了404)
有没有办法克服这个问题? “ sub_filter”和add-base-url注释都没有帮助。
是否有任何方法可以实现路径重写以响应。使用其他任何入口控制器(而不是nginx)可以使此问题更容易克服吗?
答案 0 :(得分:0)
这是我如何向基本不支持的服务添加基本路径的示例。还有一种用于处理重定向到没有基本路径的url的解决方案。
annotations:
kubernetes.io/ingress.class: nginx
# catch $1 from 'path' capture group
nginx.ingress.kubernetes.io/rewrite-target: /$1
# handle redirects
# nginx.ingress.kubernetes.io/proxy-redirect-from: http://<host>/
# nginx.ingress.kubernetes.io/proxy-redirect-to: /<basePath>/
nginx.ingress.kubernetes.io/configuration-snippet:
proxy_set_header Accept-Encoding "";
sub_filter_last_modified off;
# add base path to all static resources
sub_filter '<head>' '<head> <base href="/<basePath>/">';
sub_filter 'href="/' 'href="';
sub_filter 'src="/' 'src="';
# set types of files to 'sub-filter'
sub_filter_once off;
sub_filter_types text/html text/css text/javascript application/javascript;
...
- path: /<basePath>/?(.*)