apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: kong-ingress-test
annotations:
kubernetes.io/ingress.class: "kong-ingress"
konghq.com/strip-path: "true"
namespace: test
spec:
rules:
- host: test.com
http:
paths:
- backend:
serviceName: test
servicePort: 8080
path: /path/test/{id1}/{id2}/我想知道是否有可能在plugin / path /test/{id1}/{id2}/中设置这样的路径
发布于 2022-06-15 07:34:03
路径的解决方案是使用regex
/path/test/a-fA-F0-9+/a-fA-F0-9+/
https://stackoverflow.com/questions/72616467
复制相似问题