Projects

  • Pod
  • Namespace
  • ResplicaSet (Manages Pods)
  • DeploymentController (Manages Pods)
  • StatefulSet
  • DaemonSet
  • Service
  • ConfigMap
  • Volume
  • Job/Cronjob

The very first concept to understand is the difference between how Docker and Kubernetes run containers – with Docker, every docker run command will run an image (representing an application) as a container. The running container is a Docker’s smallest entity, it is the most basic deployable object. ...
Learn More