// πŸ”¨ PROJECT

Deploy a Microservices App

Write raw K8s manifests for a 3-service app (frontend, API, Postgres): Deployments, Services, ConfigMaps, Secrets, Ingress. No Helm.

Project 1: Deploy a Microservices App

What You'll Build

Deploy a 3-service application (frontend, API server, PostgreSQL database) to your local Kubernetes cluster using raw manifests β€” no Helm. This project ties together everything from Tracks 1–2.

Concepts Applied

Architecture

                    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”
         Internet β†’ β”‚ Ingress β”‚
                    β””β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”˜
                   β”Œβ”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”
                   β”‚           β”‚
              β”Œβ”€β”€β”€β”€β–Όβ”€β”€β”€β”  β”Œβ”€β”€β”€β–Όβ”€β”€β”€β”€β”
              β”‚Frontendβ”‚  β”‚  API   β”‚
              β”‚(nginx) β”‚  β”‚(node)  β”‚
              β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜  β””β”€β”€β”€β”¬β”€β”€β”€β”€β”˜
                              β”‚
                         β”Œβ”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”
                         β”‚ Postgres β”‚
                         β”‚  (PVC)   β”‚
                         β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Content coming soon. This project will walk you through deploying a real multi-service application, writing every manifest by hand. You'll practice the core K8s workflow: write YAML, apply, debug, iterate.