This is a cache of https://docs.openshift.com/container-platform/4.9/serverless/knative-serving/external-ingress-routing/kourier-gateway-service-type.html. It is a snapshot of the page at 2024-09-20T15:12:44.217+0000.
Kourier Gateway service type - Serving | Serverless | OpenShift Container Platform 4.9
×

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
...