Harshit Sahuharshitsahu2311.hashnode.dev·Jan 18, 2025Kubernetes Volumes - CKAIn a Kubernetes environment, managing data persistence is crucial, especially for stateful applications. By default, the lifecycle of a Pod and its storage are tightly coupled, meaning that when a Pod is deleted, the associated data is lost. This is ...65 readsCertified Kubernetes Administratorkubernetes-persistent-volumes
Rudraksh Laddharudrakshladdha.hashnode.dev·Jan 13, 2025Autoscaling in Kubernetes: An Advanced Analysis of HPA and VPAEffective resource management is an indispensable element in modern distributed systems, particularly for applications requiring high availability and cost efficiency. Kubernetes, a ubiquitous container orchestration platform, offers robust autoscali...1 likeKubernetes
Vikranth Sunkarpally 🇮🇳 vikranthsunkarpally.hashnode.dev·Dec 31, 2024Creation of AKS ClusterStep-01: Introduction Create Azure AKS Cluster Connect to Azure AKS Cluster using Azure Cloud Shell Explore Azure AKS Cluster Resources Install Azure CLI and Connect to Azure AKS Cluster using Azure CLI on local desktop Deploy Sample Application...Kubernetes
Rohit Jangradevops-docker.hashnode.dev·Dec 24, 2024Kubernetes BasicsIntroduction and Fundamentals What is Kubernetes? Overview: Kubernetes is a container orchestration platform for automating the deployment, scaling, and operations of application containers. Key Concepts: Cluster: A group of nodes. Master Node: Man...k8s
Naveennaveen-devops.hashnode.dev·Dec 17, 2024Kubernetes Volumes Explained: Types, Use Cases, and Best PracticesGlossary This article overviews Kubernetes volumes, focusing on their types, use cases, and best practices. It addresses the challenges of data persistence in Kubernetes, such as data loss on pod deletion or restart and sharing data across replicas. ...52 readstypes of kubernetes volumes
Shaik Mustafamustafa-k8s.hashnode.dev·Dec 4, 2024ConfigMaps vs. Secrets: The Silent Heroes of Kubernetes ConfigurationsCONFIGMAPS: A ConfigMap in Kubernetes is used to store configuration data in the form of key-value pairs. This data is typically non-confidential and helps to decouple the configuration settings from the application code, eliminating hardcoded values...141 likes·163 readskubernetes configmaps and secrets
Shaik Mustafamustafa-k8s.hashnode.dev·Dec 3, 2024The Ultimate Guide to Kubernetes Volumes: Types, Use Cases, and Best PracticesIn Kubernetes, containers often have short lifespans and can be created or terminated frequently. However, when a container is deleted, any data stored within it is also lost. This poses challenges when persistent storage is required for the applicat...146 likes·186 readsKubernetes
Chetan Mohanrao Mohoddevops-concepts-by-chetan.hashnode.dev·Dec 2, 2024Mastering Kubernetes Storage: Understanding PersistentVolumes and Claims in Simple TermsPersistent Volume & Persistent Volume Claim: A PersistentVolume (PV) in Kubernetes is like a storage room you rent for your app's data, separate from the app itself. A PersistentVolumeClaim (PVC) is your request to use a part of that room. Example:Im...Kubernetes
Shazia Masseymasseys.hashnode.dev·Dec 2, 2024Navigating Kubernetes Storage: A Full Spectrum GuideKubernetes storage refers to the management of persistent and ephemeral data for applications running in Kubernetes clusters. It plays a key role in ensuring that applications can store and retrieve data outside the lifecycle of the pods (containers)...Kubernetes
Nahidnahidislam.hashnode.dev·Nov 22, 2024Kubernetes Demystified: Understanding Its Core Components, Objects, and How It WorksKubernetes, often abbreviated as K8s, is an open-source platform for automating the deployment, scaling, and management of containerized applications. Think of it as the operating system for your containerized workloads, helping you efficiently manag...Kubernetes