Tao Yi

Results 107 comments of Tao Yi

@konsti @fredericve I will close the issue as "Not reproducible" in 7 days if there are no further detailed reproduction that I can follow. If you have further evidence of...

Closed it as not reproducible. If you have any clear steps of reproducing, please reopen it.

Mark it as blocked since this needs go-database-reconciler to support dumping custom entities. Blocked by: https://github.com/Kong/go-database-reconciler/issues/110.

@dlamotte If a `KongPlugin` is using a non-exist plugin, it will be rejected by KIC's webhook. So please confirm that how did the `KongPlugin` be created in your cluster. Also,...

The `/kong_prefix/sockets/we` is the path of the socket for worker events. The old socket may not get cleared because the `clear-stale-pid` does not touch the path `/kong_prefix/sockets/` . > a...

@joran-fonjallaz Thanks for pointing out. We will try to optimize logs to reduce excessive amount of error logs.

Do you want the requests to `/Echo/*` to be forwarded to `/foo/*`? You can use the `konghq.com/rewrite` annotation: https://docs.konghq.com/kubernetes-ingress-controller/latest/guides/requests/rewrite-annotation/. The feature needs you to set `RewriteURIs` feature gate to `true`....

@Rockyjr-git Looks like the URI in the request was not rewritten correctly. Did you enable the `RewirteURIs` feature gate? If the feature gate is not enabled, the rewrite does not...

@Rockyjr-git Similar to the example in the doc https://docs.konghq.com/kubernetes-ingress-controller/3.1.x/guides/requests/rewrite-annotation/ , you can define your `Ingress` like this to keep your path after the matched prefix: ```yaml apiVersion: networking.k8s.io/v1 kind: Ingress...

@Rockyjr-git You need to change `pathType` to `ImplementationSpecific` to make it work. The `pathType` should be `ImplementationSpecific` to tell that the `path` should be interpreted as a regular expression when...