Pod Deployment

Get familiarized with some of the core concepts of Kubernetes.

While using kubectl, there are multiple ways to deploy our Pod.

  • Pod templates
  • Replication controllers
  • Replica sets
  • Deployments

Pod templates

A Pod template is a template that allows us to define the configurations of our Pod. It contains information and functionalities such as:

  • Container image
  • Container registry to fetch the image
  • Adding a name to the Pod
  • Attaching some tags to the Pod

Templates ...