February 22, 2024
|
5
min read

What makes the ngrok Kubernetes Ingress Controller different?

Jonathan Stacks

The Ingress API has long provided Kubernetes users the ability to get external HTTP(s) traffic into their cluster. With a variety of Ingress Controller implementations, there are plenty of options to solve nearly any use case. In this blog post, we are going to look at some of the key differentiators of the ngrok Ingress Controller and why it might be right for you.

The ngrok Kubernetes Ingress Controller works behind NAT

One of my favorite features, and a key differentiator, of the ngrok Ingress Controller is that it works seamlessly behind Network Address Translation (NAT). With most other Ingress Controllers, you must have a public IP address attached to a load balancer or edge router to get ingress into your cluster. With the ngrok Ingress Controller, an outbound connection is made from the controller to ngrokā€™s global network, allowing traffic into the cluster. Because that traffic is routed through the ngrok platform, you can ingress traffic into any Kubernetes cluster, whether itā€™s in a public cloud, private data center, or even running on your laptop

You can manage less software

A common setup for fully automating the creation of Ingresses involves running an ingress controller, cert-manager (with an ACME Issuer such as Letā€™s Encrypt, for example), and ExternalDNS. Letā€™s dive into this flow to get a good idea of how these three pieces work together to fully automate HTTPS ingress traffic:

  1. A user creates a new Ingress Resource.
  2. cert-manager watches Ingress resources and provisions a TLS certificate into the secret referenced in the Ingress.
  3. The Ingress Controller reconciles the Ingress Resource with its TLS certificate and updates the IngressStatus with the <code>loadbalancer.ingress.hostname</code> or <code>loadbalancer.ingress.ip</code>.
  4. ExternalDNS watches Ingress resources, notices the status field change, and creates or updates DNS records with the configured provider.

The ngrok Ingress Controller collapses these steps into a simpler ingress configuration. You donā€™t need to install and manage cert-manager, as certificates are automatically provisioned and managed by ngrok. If you only use ngrok subdomains or manage DNS manually, you donā€™t need to install and configure ExternalDNS. If you are using your own subdomain with ngrok (app.yourdomain.com, for example), you can continue to use ExternalDNS to automatically create CNAME records pointing to ngrok for ingresses created by the ngrok Ingress Controller. This diagram below shows how the ingress controller automates edge provisioning in the ngrok API and forwards traffic from ngrokā€™s edge network to your service in Kubernetes.

Better support for dev/prod parity

One of the key differentiators of the ngrok platform is that it runs the same locally as it does in any production environment. This benefit also extends to the ngrok Ingress Controller. This means that you can run the Ingress Controller locally on your own machine using k3s, k3d, kind, with the same configuration (<code>NgrokModuleSet</code>s) that you use for prod.

Powerful, off-the-shelf modules

In addition to providing connectivity to your services, the ngrok platform includes a variety of modules to assist you in providing reliable and secure ingress. To access these modules, the ngrok Ingress Controller uses a custom resource, <code>NgrokModuleSet</code>, to allow users to build reusable and composable configuration for controlling Ingress traffic. For example, I can create the following <code>NgrokModuleSet</code> which requires users to authenticate to access my site. The OAuth settings will only allow ngrok employees access to my site.

This is just one example of the capabilities of the ngrok Ingress Controller. It supports all ngrok modules, including OAuth, OIDC, SAML, IP restrictions, header addition and removal, and webhook verification, to name a few.

You get the power of ngrokā€™s global network

All traffic intended for your application flows through ngrokā€™s global network, and your cluster only receives authorized trafficā€”keeping it safe from threats. You can add ngrokā€™s circuit breaker module to titrate traffic and prevent DDoS attacks. Your clients will often experience faster response times because ngrok routes client traffic to the Point of Presence (PoP) with the lowest latency to the client and automatically reroutes traffic if a PoP becomes unavailable.

Support for TCP/TLS ingress

The ngrok Ingress Controller provides ingress using the Ingress API, and ngrok modules are implemented using Custom Resource Definitions (CRDs) to extend the Kubernetes API. The Kubernetes Ingress API only supports getting HTTP(s) traffic into your cluster. However, the ngrok Ingress Controller watches and reconciles a number of different CRDs, making it possible for you to create TCP and TLS Edges in the ngrok platform in conjunction with the HTTP/HTTPs support provided by the Kubernetes Ingress API

Learn more about Kubernetes at ngrok

We are currently developing a ngrok Gateway Controller which implements the recently GAā€™d Kubernetes Gateway API. This will allow us to offer the same key differentiators and features that exist in the ngrok Ingress Controller in our Gateway Controller, along with first class support for exposing TCP and TLS services instead of having to use the <code>TLSEdge</code> and <code>TCPEdge</code> CRDs. While TLSRoute and TCPRoute are still <code>v1alpha2</code> in the Gateway API, we look forward to our users being able to use them to expose their services with all the benefits of the ngrok platform weā€™ve previously mentioned.

To learn more about the ngrok Kubernetes Ingress Controller, check out some of these other posts from ngrok:

Questions or comments? Hit us up on X (aka Twitter) @ngrokhq or LinkedIn, or join our community on Slack.

Share this post
Jonathan Stacks
Jonathan Stacks is a Staff Engineer @ ngrok, working on the Infrastructure team. He helped design and launch the ngrok Kubernetes Ingress Controller. His recent work includes ngrok Private Edition, CI/CD, and internal tooling. Jonathan has worked in the Healthcare IT, FinTech, and Networking industries with experience in on-prem/cloud infrastructure, kubernetes, application development & architecture, automation, and data engineering.
Kubernetes
Kubernetes
Production