Kubernetes

Kubernetes Articles

will-b-rbrVOaEWq7Q-unsplash
Kubernetes: How to create, view and delete a Pod
Pods are the smallest deployable objects in Kubernetes. A Pod can contain one or more containers. A pod running more than one container is considered...
Read More
victoire-joncheray-XsP7GCLMWjM-unsplash
Kubernetes: What is an init container
Init containers are the containers that are initialized before the application container in a Pod. Init containers usually contains the setup scripts and...
Read More
jon-tyson-_Vq_W4tg-2U-unsplash
Kubernetes: Sidecar container
What is a sidecar container A sidecar container is a container that runs along with the main application container in a pod. Just like init container,...
Read More
jorgen-haland-4yOgRb_b_i4-unsplash
Kubernetes: ReplicaSet
What is a ReplicaSet ReplicaSet is a Kubernetes object which ensures that a specified number of pods are running at any given time. The limitation...
Read More
growtika-developer-marketing-agency-GSiEeoHcNTQ-unsplash (1)
Kubernetes: Deployment
What is a Deployment? A deployment is an object in Kubernetes that helps you to manage a group of identical pods. A Deployment runs multiple replicas...
Read More