Deploy a Dockerized App to Kubernetes

Build and run a Dockerized NGINX web server on Kubernetes using a 3-replica Deployment and expose it with a LoadBalancer Service on port 80

Deploy a Dockerized App to Kubernetes

Build and run a Dockerized NGINX web server on Kubernetes using a 3-replica Deployment and expose it with a LoadBalancer Service on port 80.

 📂 /root/learn-kubernetes-docker/ ├── Dockerfile # Build NGINX with custom index.html ├── index.html # Web content for NGINX ├── deployment.yaml # Kubernetes Deployment (3 replicas) └── service.yaml # LoadBalancer Service (port 80) 
Launch Lab