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

Limited Time Offer!

For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!

Enroll Now
  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