Harish Sharmaharishsharma.hashnode.dev·Nov 6, 2024Static and Dynamic Provisioning in KubernetesIn Kubernetes, storage provisioning refers to the process of creating storage resources, such as PersistentVolumes (PVs), which can then be used by applications within the cluster. Kubernetes offers two main types of provisioning: dynamic provisionin...Kubernetes
Saurabh Adhaudevopsvoyager.hashnode.dev·Oct 24, 2024How can you store persistent data for a Kubernetes application running on EKS?Scenario: You are deploying a Kubernetes-based web application on Amazon EKS that includes a database for storing user data and configurations. The database needs to maintain its data across pod restarts and re-scheduling, requiring persistent storag...10 likesQ & AAWS
DevOpsheliandevopshelian.hashnode.dev·Sep 1, 2024Explore Stateful Applications in KubernetesKubernetes is primarily known for its powerful management of stateless applications, where the application’s state doesn’t need to persist between pod restarts. However, many real-world applications — like databases, messaging systems, and file stora...PVC
Luc Caocaoluc.hashnode.dev·Aug 15, 2024AKS - Persistent Data StorageTo mount an Azure Disk or Azure Files volume in a pod, developers must create a PersistentVolume (PV) and a PersistentVolumeClaim (PVC) object. The PV object represents the actual storage resource, while the PVC object requests a specific amount of s...aks
Gopi Vivek Mannevivekmanne.hashnode.dev·Aug 6, 2024Day 28,29/40 Days of K8s: Docker Volumes, Kubernetes Volumes Explained !!Before diving into Kubernetes volumes, let's look at how Docker volumes work for data persistence in containers. ❓ Why Do We Need Docker Volumes? Docker containers are ephemeral in nature, meaning their data is lost when the container is removed or r...2 likes·34 reads𝐂𝐊𝐀𝐒𝐞𝐫𝐢𝐞𝐬-𝟐𝟎𝟐𝟒 🚀🎯PVC
Gaurav Kumarkubernetes-by-gaurav.hashnode.dev·Jun 18, 2024Creating and Attaching Persistent Storage in KubernetesIn this blog post, we will walk through the step to create Persistent Volume (PV) and a Persistent Volume Claim (PVC) in Kubernetes, and then attaching them to a Deployment so that we can mount host path to the path of containers running. It is essen...27 readsPVC
Christophe PerroudforDINA Technical's Blogdevops.dina.ch·Apr 16, 2024Longhorn: a game changer in the distributed block storageDuring te last Kubecon in Paris, David Ko of SUSE presented us Longhorn, a distributed block storage solution, highlighting its latest features and teasing the upcoming version 2.0 of the product. What is Longhorn ? Longhorn implements distributed bl...160 readslonghorn
Maher Messaoudimaherdevopsjourney.hashnode.dev·Feb 4, 2024Day 36 Task: Managing Persistent Volumes in Your Deployment 💥1. Kuberenetes Volume Containers are short-lived in nature. So all the data stored inside a container is also deleted if the container crashes. But kubelet will restart it with a clean state, so it will not have any old data. So, for this problem k8s...DevOps Journey
Karan Idnanikaranidnani6.hashnode.dev·Sep 11, 2023#Day36:Managing Persistent Volumes in Your Deployment 💥Introduction Kubernetes, often abbreviated as K8s, is a powerful container orchestration platform that simplifies the deployment and management of containerized applications. One essential aspect of running stateful applications in Kubernetes is mana...1 like#90daysofdevops
Amit Pawaravp23.hashnode.dev·Sep 11, 2023Day 36- 90DaysOfDevOpsHey Learners! Welcome back. In the previous task, we learned about ConfigMap and Secret to store our non-confidential as well as confidential data. In this challenge, we'll dig in depth with the concept of Persistent Volume. Let's start... What are P...#day36