Debug School

Aditya Ranjan
Aditya Ranjan

Posted on

k8s Assignment day-3

Pod usually acts as a wrapper around a single container or multiple containers, which represents either a single job or multiple jobs.
Characteristics of Pod:

  • Unique IP address.
  • simplified data sharing between containers.

Deployment is used to tell Kubernetes how to create or modify instances of the pods that hold a containerized application.
Features:

  • Scaling.
  • Rollout or Rollback.
  • Versioning.
  • Replica Controllers.

Service is a Network Loadbalancer.
Types:

  • External Load balancer like azure, AWS
  • Node port

Top comments (0)