-
I'm sorry to be always bothering you all, but I'm stuck and I cannot debug this error:
ContextSystem: Windows with WSL2 and Docker Desktop I'm trying to deploy KIC DB-backed, to test Oauth2 plugin on a service. I'm using kong/kong helm chart to deploy it: helm install kong/kong --generate-name --create-namespace -n kong -f values.yaml And the image:
repository: kong/kong-gateway
tag: "3.5"
admin:
enabled: true
http:
enabled: true
servicePort: 8001
containerPort: 8001
enterprise:
enabled: false
vitals:
enabled: false
portal:
enabled: false
rbac:
enabled: false
smtp:
enabled: false
portal:
enabled: false
portalapi:
enabled: false
env:
prefix: /kong_prefix/
database: postgres
pg_user: kong-db-user
pg_password: kong-db-password-test
postgresql:
enabled: true
auth:
database: kong
username: kong-db-user
password: kong-db-password-test
ingressController:
enabled: true Pods: $ kubectl get pods -n kong
NAME READY STATUS RESTARTS AGE
kong-1702379291-kong-6f6f65cb9f-qtsph 2/2 Running 0 48s
kong-1702379291-kong-init-migrations-6q8np 0/1 Completed 0 48s
kong-1702379291-postgresql-0 1/1 Running 0 47s Is there anyone that could be so kind to help me out and tell how to solve it or just address me to some resource/documentation to that could be useful to understand it? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Using This is being used in the chart in The log that you attached indicates that you installed a Gateway API Is that the case? Can you share the |
Beta Was this translation helpful? Give feedback.
-
Just for wider reference, there's an issue that I created to make the error message clearer and document the internal usage of mentioned annotation on the |
Beta Was this translation helpful? Give feedback.
You can either remove that
Gateway
to get rid of the error or make it use a differentGatewayClass
which would specify a differentcontrollerName
(this way your installation from the original message here would not interfere with that olderGateway
).See an example which does that here:
kubernetes-ingress-controller/examples/gateway-httproute.yaml
Line 84 in 628fe6a