- What is a container orchestrator?
A container orchestrator is a system where we can deploy multiple containers that work in unison, as well as manage provisioning and deployment in an ordered fashion.
- In Kubernetes, what is a node?
A node is a physical server or virtual machine that is part of the cluster. Nodes can be added or removed from the cluster and Kubernetes will migrate or restart the running containers accordingly.
- What is the difference between a pod and a container?
A pod can contain several containers that share the same IP. To deploy a container in Kubernetes, we need to associate it with a pod.
- What is the difference between a job and a pod?
A pod is expected to run constantly. A job, or cron job, performs a single action, and then all the pod containers finish their execution.
- When should we add an Ingress?
We should add an Ingress when we...