Sep 12, 2025 · 1 min read · Pods in k8s can run more than one container. The main once are the application containers with two additional types which include. Init Containers Sidecar Init Container These container run task before the actual application container start, runn...
Join discussionSep 11, 2025 · 3 min read · In the previous parts of this series, we explored Core Concepts, Scheduling, and Logging & Monitoring. Now it’s time to tackle Application Lifecycle Management (ALM) — the process of deploying, updating, scaling, and configuring applications in Kuber...
Join discussion
Jul 8, 2025 · 4 min read · Introduction :- Kubernetes has revolutionised how modern applications are deployed, scaled, and managed. While most developers and DevOps engineers are familiar with Deployments and StatefulSets to manage long-running services, one of the most import...
Join discussion
Apr 13, 2025 · 5 min read · As Kubernetes adoption grows, understanding some advanced pod-related concepts can help you build more resilient, secure, and observable workloads. In this article, we break down four such concepts and provide real-world use cases where they shine. ...
Join discussion
Mar 2, 2025 · 4 min read · What is an Init Container? As Kubernetes pods can have more than one container.Init containers are specialized containers that run before app containers in a Kubernetes Pod. Unlike regular containers, init containers must complete successfully before...
Join discussion
Dec 28, 2024 · 6 min read · A pod is the smallest deployable unit in Kubernetes and can contain one or more containers that share the same network namespace and storage. Multi-container pods are often used to enable tightly coupled application components to share resources and ...
Join discussion
Nov 16, 2024 · 4 min read · A pod can have multiple containers, this init container is run before the main app containers. Init containers are run before the main app containers. Init containers always run to completion before the pod can be ready and it not continuously runnin...
Join discussionOct 19, 2024 · 16 min read · fImage Security : Trivy The image has several layer and sometimes in one of these layers there CVE(Common Vulnarability and Exposers), in simple words a kind of backdoor is there so chances of hacking is greater. So we want to make sure that the im...
Join discussion
Sep 5, 2024 · 5 min read · A sidecar container is commonly used in real-world applications to augment the functionality of the primary container. And here we will see some simplified examples of typical sidecar container use cases, along with their scripts or configurations. 1...
Join discussion