Video Thumbnail for Lesson
6.1: Demo Application Overview

Demo Application Overview

To practice what we've learned we will deploy a small but realistic web application. The source code lives in the course repository.

Architecture

Diagram placeholder
  • React frontend – queries the APIs and renders their responses.
  • Node.js API and Go API – two implementations of a simple service exposing / and /ping endpoints.
  • PostgreSQL database – stores timestamps and tracks how many calls each API receives.
  • Python load generator – repeatedly calls the APIs to produce traffic.

The layout mirrors the application used in the Docker course with the addition of the load generator and a lightweight database schema for recording requests.

Screenshot placeholder

The UI displays the output from both APIs, the timestamp returned from the database, and a count of total requests processed by each service.

While this course focuses on Kubernetes—not application development—you can run the services locally using Task. The provided Taskfile contains targets to start Postgres in a container, launch the APIs, run the React frontend, and execute the load generator. We'll briefly review the code so you know how the pieces fit together before deploying everything to our cluster.