Category: Kubernetes, containerization, automation

Kubernetes is an open-source container orchestration engine for automating deployment, scaling, and management of containerized applications. Kubernetes manages pods instead of containers and pods encapsulate containers.

A pod that contains one container refers to a single container pod and it is the most common kubernetes use case.

Most of the time these ambassador containers are simple and small that consume fewer resources than the main container.

Make sure all your Ambassador containers are simple and small enough because you have to sum up all the resources/request limits while defining resource limits for the pod.

Related Articles