Tao Yi
Tao Yi
@ashishkumar256 As I confirmed with Kong gateway team, the key-auth plugin does not support only allowing part of the credentials but reject the others. The plugin does not support configuring...
I think both of the options (omitting whole plugin vs filling with defaults) will bring some confusion. However, when users are using `configFrom` for the plugins, they should know the...
@jakoberpf According to your original issue in cert-manager repo (https://github.com/cert-manager/cert-manager/issues/5918), The secret may fail on the webhook validation. So I would like to know your KIC version for further investigation....
Yes, I think installing `kong/ingress` charts includes installing KIC (with admission webhooks) and Kong gateway. Are you using all default values?
@luozhouyang How did you change the fields of upstreams? Did you configure them by directly calling admin APIs? If so, they will be overwritten when KIC syncs configuration to Kong...
@seh I used exactly the same Kong ingress controller and Kong version (KIC 2.9.2, Kong 3.2.2) and same manifest ``` apiVersion: configuration.konghq.com/v1 kind: KongPlugin metadata: name: opentelemetry-to-collector namespace: default plugin:...
@ms2008 @seh ALL requests sent from KIC are filled with JSON body, because they are sent by Kong/go-kong: https://github.com/Kong/go-kong/blob/main/kong/request.go#L14-59
@MostefaKamalLala What was your Kong charts version? The latest version of `kong/kong` charts (2.38.0) will not remove your existing `ingressClass`. charts 2.6.3 and KIC 2.0 is quite old now and...
Currently we have only `ResponseHeaderModifier` to modify response in filters of `HTTPRoute`. This filter could be fully supported by Kong's `ResponseTransformer` plugin: https://docs.konghq.com/hub/kong-inc/response-transformer. The filter supports the following operation on...
One possible method to implement `RequestRedirect` filter (See #2799): Run a server from KIC to return redirect responses, and use `RequestModifier` plugin to carry the specifications to the redirect server....