PODS

  • Pods it is bascially a environment to run a container.
  • Pods can have one or more container
  • All pods are “EMPERMERAL” meaning no pod is redeployed.
  • Pod will run as long as the container is running .

  • What POD contains? ONE imag
  • pods contain one / more container.
  • pods contain shared networks.
  • Pods contain Unique ip address

  • Lifecycle of the POD? ONE image
  • Pod life cycle startng with
  • PENDING PHASE
  • RUNNING PHASE
  • SUCEEDED/FAILED PHASE
  • pending: when pod is ready to run but one/more container is not set
  • running: pod is running i.e, starting
  • suceeding /failed phases: container in the Pod is terminated .

  • Types of PODS?
  • one pod per container- one container per pod
  • one pod for multiple container- multiple container per pod