Assignment #1: Let’s have a look at the kubernetes Pods

  1. What is POD?
  • Pod is a single instance of the running process
  • Pod contains one or more container
Kubernetes Essentials: the basic components - pods, services

2. Types of PODS?

Ans: There are two types of Pods −

  • Single container pod
  • Multi container pod

3. What POD contains?

  • Pods contain shared networking and storage resources Network: 
  • Pods have unique IP addresses. 
  • Pod containers share the same network namespace, including IP address and network port.
What is Kubernetes Node? - Definition from WhatIs.com

4. Lifecycle of the POD?

Ans: Pod Initializing -> Running -> Ready -> Completed

6 Managing the lifecycle of the Pod's containers - Kubernetes in Action,  Second Edition MEAP V07