k8s Storage
4 articles in this category.
Sharing Data Between Containers in a Multi-Container Pod
Introduction In Kubernetes, a Pod can contain multiple containers that need to share data with each other. Unlike inter-process communication (IPC) or networking, sharing data using volumes allows efficient and persistent storage within a pod. Scenario Imagine you have a logging system where one container generates logs, and another container processes those logs in real…
Kubernetes Persistent Volumes: A Comprehensive Guide
Persistent Volumes (PVs) are a critical part of Kubernetes for managing durable storage. This blog explains the concepts of PVs, their types, and how to set up NFS and AWS EBS-backed PVs. We also highlight the necessary access privileges and detailed steps for setting up and connecting various components. Steps Overview Understanding Persistent Volumes and…
StatefulSets
StatefulSets in Kubernetes provide a unique and robust solution for managing stateful applications. They offer a set of Pods with distinct identities and stable hostnames, ensuring stable network identifiers, persistent storage, and ordered deployment and scaling. Let’s dive deeper into understanding StatefulSets and how to effectively manage them. What are StatefulSets? StatefulSets are ideal for…

Kubernetes Easy to Learn and Practice Labs end2end
Learn and Practice