← All pathways

Put Your Kubernetes App on the Internet

It runs in the cluster. Now give the world a URL that reaches it.

Your app is deployed and healthy — but only you can reach it, through kubectl and port-forwards. This pathway covers everything between your Service and a stranger's browser: how DNS finds you, how TLS earns the padlock, and the Gateway API front door that ties it all together.

Deploying an app and exposing an app are different skills, and the second one crosses domains most Kubernetes tutorials skip entirely. The payoff for walking the route in order: when you wire it up for real, you'll know exactly what every piece between your Service and the internet is doing — not just which YAML to copy.

13 steps live · 4 sites

What you'll be able to do

  • Trace the full journey from a domain name to your Pod: DNS resolution, load balancing, TLS termination, and routing.
  • Explain what a certificate actually asserts — and why public-key cryptography makes strangers trustable.
  • Expose an app the current-standard way: a Gateway and HTTPRoute with Traefik, and know what type: LoadBalancer really provisions.
  • Automate certificates with cert-manager and wire your real domain to the cluster end to end.
01

Between the browser and your cluster

02

Earn the padlock

03

Open the front door

6

Services — Stable Networking for Pods

Kubernetes · Essentials

Inside the cluster first: the stable address your Pods hide behind.

Pod IPs are unreliable by design — they die and get replaced constantly — so a Service gives a stable name and address to a group of them instead. This is the cluster-internal version of the load balancing already covered outside it.

7

LoadBalancer Services: From Cloud to Bare Metal

Kubernetes · Essentials

type: LoadBalancer looks like magic — see what actually gets provisioned.

type: LoadBalancer is a request, not a built-in feature — Kubernetes ships nothing that fulfills it. On managed cloud, a controller provisions a real load balancer automatically; on bare metal, MetalLB (or you) has to become the fulfiller.

8

Gateway API: Gateways and HTTPRoutes with Traefik

Kubernetes · Efficiency

The current-standard front door: one Gateway, an HTTPRoute per app.

Gateway API splits the front door into two objects, two owners: a Gateway the platform team manages, and an HTTPRoute each app team claims for itself. This replaces one Ingress-per-app with a single Gateway serving every app, and is the current standard.

9

Kubernetes Ingress: Reading the Front Door You Inherit

Kubernetes · Essentials

The legacy front door you will inherit — read it, route with it, migrate from it.

Ingress is the front door you'll inherit in existing clusters, not the one to build new — ingress-nginx's maintenance is winding down, and the migration path runs straight through Gateway API. Reading it fluently still matters, because it's everywhere.

04

Make it real

10

Automating TLS Certificates: ACME and Let's Encrypt

Networking · Efficiency

How a machine proves it owns your domain — the protocol that ended certificate expiry.

ACME is the protocol that solved certificate expiry: a machine proves domain ownership automatically (HTTP-01 or DNS-01) and Let's Encrypt issues a certificate with no human in the loop. Every ACME client you'll ever meet, from a cron job to a cluster controller, is this same protocol in different packaging.

11

cert-manager: Certificates as Cluster Resources

Kubernetes · Efficiency

One annotation on the Gateway, and its certificates issue and renew themselves.

cert-manager brings the ACME protocol from the last step inside the cluster as a native resource — one annotation on a Gateway, and its certificates issue and renew themselves. Issuers, Certificates, and a debug chain are the entire operational surface.

12

Pointing Your Domain at the Cluster with external-dns

Kubernetes · Efficiency

Close the loop: the name you own points at the Gateway you built — automatically.

external-dns closes the last manual step: it watches your Gateway and keeps your real DNS provider's records pointed at it automatically, using a TXT ownership record so it never fights other tools for the same name.

13

Deploying Platform Services with Flux and OCI Artifacts

GitOps · Essentials

Ship the whole edge stack the production way: one versioned artifact, zero manual commands.

The entire edge stack from this pathway — Traefik, cert-manager, external-dns — ships as one versioned OCI artifact that Flux reconciles, with zero manual kubectl commands. The rule underneath everything here: if it is not in the artifact, it does not exist.

05

Go deeper

14

Hardening the Public Edge

coming soonKubernetes · Mastery

Rate limits, WAFs, and what changes once real strangers can reach you.

Rate limits, WAFs, and what changes operationally once real strangers — not just your team — can reach this address. Reserved for the paid Mastery tier — coming soon.