shlogg · Early preview
Daniel Pepuho @danielcristho

Understanding Containers In Kubernetes: A Comprehensive Guide

Kubernetes & containers are inseparable. Understanding containers is key to managing containerized apps in Kubernetes, optimizing resource usage & ensuring isolation & failure recovery.

Okay, let's start again. Kubernetes and container are two things that cannot be separated from each other.
Understanding container is essential in the context of Kubernetes because Kubernetes is an orchestration system for managing containers. Knowing about containers will help you understand how Kubernetes organizes and distributes containerized applications, optimizes resource usage, and ensures isolation and failure recovery.

  
  
  🤔 Why Container?


The old way of deploying an application was to install the application on a machine (VM) and then install various libraries or dependencie...