- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个关于 Ingress 资源的 KongIngress
对象配置属性,它调用 kong 作为 Ingress Controller 。我实际上有这个配置:
apiVersion: configuration.konghq.com/v1
kind: KongIngress
metadata:
name: echo-site-ingress
namespace: hello-world
annotations:
kubernetes.io/ingress.class: "kong"
proxy:
protocols:
- http
- https
# path: /
route:
methods:
- POST
- GET
strip_path: true
preserve_host: true
---
#My Ingress resource
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
kubernetes.io/ingress.class: kong
plugins.konghq.com: helloworld-customer-acceptance-basic-auth, hello-world-customer-acceptance-acl
name: echo-site-ingress
namespace: hello-world
spec:
rules:
- host: hello-world.bgarcial.me
http:
paths:
- backend:
serviceName: echo
servicePort: 80
path: /
tls:
- hosts:
- hello-world.bgarcial.me
secretName: letsencrypt-prod
问题是:
kind:KongIngress
对象资源中的 strip_path
和 preserve_host
属性在做什么?
我阅读了文档 here ,但我不清楚:
关于 strip_path
我看到了这个:
When matching a Route via one of the paths, strip the matching prefix from the upstream request URL. Defaults to true. but as we can see, I am not using the path attribute inside my KongIngress object (I commented for illustration purposes about my question)
那么,这里如何应用strip_path
属性值呢?
这是因为我在我的 Ingress 资源中使用了 path:/
属性并且我的 Ingress 和我的 KongIngress 资源一起工作?
我真的不知道,但我想知道幕后情况如何。
最佳答案
当启用 preserv_host
注释时,请求的 host
header 将按原样发送到 Kubernetes 中的服务。在 the documentation 中有很好的解释.
strip_path
可以配置为在代理之前从 HTTP 请求中剥离路径的匹配部分。
如果设置为"true"
,Ingress 规则中指定的路径部分将在请求发送到服务之前被剥离。例如设置为"true"
时,Ingress规则的路径为/foo
,匹配Ingress规则的HTTP请求的路径为/foo/bar/something
,那么发送到 Kubernetes 服务的请求将具有路径 /bar/something
。因此,当您使用 curl $YOUR_HOST/foo/bar/something
时,在输出的真实路径值下您将看到 /bar/something
如果设置为 false
,则不会执行任何路径操作,并且在您的情况下可以更改为没有要进行的操作。
关于basic-authentication - KongIngress 对象中的 strip_path 和 preserve_host 属性。他们在做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61339425/
我有一个关于 Ingress 资源的 KongIngress 对象配置属性,它调用 kong 作为 Ingress Controller 。我实际上有这个配置: apiVersion: configu
我是一名优秀的程序员,十分优秀!