Configuring Caddy With Kubernetes: A Step-by-Step Guide
Configuring Caddy as reverse proxy in Kubernetes: demo-api.dango.space responds with 'Hello, World!' and proxies localhost:8080. PersistentVolume & PVClaim created for data persistence.
Previous Post Time to get into Kubernetes! I'm going to go through this process manually at first, in order to familiarize myself with some of the details, before I start involving tools such as Terraform and Helm. I've explored Caddy in the past, and I'm highly fond of its automatic HTTPS and straightforward syntax, so part of this setup is going to be configuring Caddy to be used as a reverse proxy: demo-api.dango.space, localhost { respond / "Hello, World!" respond /health-check 204 reverse_proxy localhost:8080 } This will need to be availa...