Debug School

Aravinda HB
Aravinda HB

Posted on

Assignment-2

What is Namespaces? Explain with Image

Logical separation / division of resources based on Org / Project.

Image description

What is Pod? Explain with Image

A pod is the smallest execution unit in Kubernetes. A pod encapsulates one or more applications. Pods are ephemeral by nature, if a pod (or the node it executes on) fails, Kubernetes can automatically create a new replica of that pod to continue operations.

Image description

What is ReplicaSets? Explain with Image

A ReplicaSet (RS) is a Kubernetes object used to maintain a stable set of replicated pods running within a cluster at any given time. A Kubernetes pod is a cluster deployment unit that typically contains one or more containers.

Image description

What is Deployment? Explain with Image

A Deployment manages a set of Pods to run an application workload, usually one that doesn't maintain state.

Image description

Top comments (0)