This is a cache of https://docs.openshift.com/serverless/1.31/knative-serving/external-ingress-routing/kourier-gateway-service-type.html. It is a snapshot of the page at 2024-09-19T16:45:13.764+0000.
Kourier Gateway service type - External and <strong>ingress</strong> routing | Serving | Red Hat OpenShift Serverless 1.31
×

The Kourier Gateway is exposed by default as the ClusterIP service type. This service type is determined by the service-type ingress spec in the KnativeServing custom resource (CR).

Default spec
...
spec:
  ingress:
    kourier:
      service-type: ClusterIP
...

Setting the Kourier Gateway service type

You can override the default service type to use a load balancer service type instead by modifying the service-type spec:

LoadBalancer override spec
...
spec:
  ingress:
    kourier:
      service-type: LoadBalancer
...