gpt4 book ai didi

basic-authentication - KongIngress 对象中的 strip_path 和 preserve_host 属性。他们在做什么?

转载 作者:行者123 更新时间:2023-12-05 08:50:47 26 4
gpt4 key购买 nike

我有一个关于 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_pathpreserve_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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com