Deploying HTTP Services on Kubernetes
This guide walks through deploying a containerized HTTP service on a Kubernetes cluster, covering container images, deployments, services, and ingres configuration.
Building and Pushing the Container Image
First, build the container image for your HTTP server and push it to a container registry. In this example, the image chengfengsunce/httpser ...
Posted on Mon, 20 Jul 2026 17:09:35 +0000 by billman
Configuring NGINX Ingress for HTTPS and WebSockets in Kubernetes
Securing Internal Pods with HTTPS via Ingress
When the internal pods communicate over HTTPS, the Ingress must be configured accordingly to ensure proper handling of encrypted traffic. Below is an example configuration that sets up an NGINX Ingress to forward traffic to HTTPS backend services.
apiVersion: networking.k8s.io/v1
kind: Ingress
meta ...
Posted on Sat, 27 Jun 2026 17:59:50 +0000 by knelson