Task A: Docker & Kubernetes Task

A2 - Introduction to Kubernetes

Tasks:

  • Setup Kubernetes through Docker Desktop, understand its basic components (service, deployment, nodes, pods) and configure kubectl
  • Connect to a deployed application image through a configured service, either by writing relevant service yml or through kubectl commands

Setup:

  1. Run the following command to start the server
    cd server
    node server.js
    
  2. Run the following command to start the front-end application
    cd client
    yarn start