Skip to main content

How ngrok Creats Kubernetes Services

After a kubernetes-bound endpoint is created, the ngrok cloud service notifies Kubernetes Operators that a new kubernetes-bound endpoint exists. Kubernetes Operators create v1.Service objects in their Kubernetes clusters which forward traffic they receive to the operators' pods.

ClusterIP Service

A Cluster IP service is created in the operator's namespace.

Loading…

ExternalName Service

An ExternalName service is created in the namespace targeted by the second part of the URL's hostname.

Loading…