Skip to content
Discussion options

You must be logged in to vote

HI,

I have found the solution :) from this source https://docs.konghq.com/kubernetes-ingress-controller/latest/guides/services/tcp/

  • Install the experimental Gateway API CRDs before installing Kong Ingress Controller:

kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.1.0/experimental-install.yaml

  • Create kong namespace:

kubectl create ns kong-ingress

  • Create a Gateway and GatewayClass instance to use:
echo "
---
apiVersion: gateway.networking.k8s.io/v1
kind: GatewayClass
metadata:
  name: kong
  namespace: kong-ingress
  annotations:
    konghq.com/gatewayclass-unmanaged: 'true'

spec:
  controllerName: konghq.com/kic-gateway-controller
---
apiVersion…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by rchekhina
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
1 participant