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. ...50 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...101 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...14 likes·100 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
Kandlagunta Venkata Siva Niranjan Reddygetting-started-with-kubernetes.hashnode.dev·Nov 18, 2024Understanding Kubernetes Volumes: Using EmptyDir, HostPath, and NFS for Persistent StorageIn Kubernetes, volumes provide a way to persist data outside the lifecycle of containers. This ensures that data generated by a pod remains accessible even if the pod is deleted, restarted, or replaced. Volumes play a critical role in supporting stat...kubernetes-persistent-volumes
Nahidnahidislam.hashnode.dev·Nov 8, 2024Kubernetes Cluster Setup: Step-by-Step ProcessPrerequisite: One master (Control Plane) Node Two or more servers for worker Node 2 GB or more of RAM per machine 2 CPUs or more for control plane machines Full network connectivity between all machines in the cluster Unique hostname, MAC addre...Kubernetes
Anurag Hatoleanuraghatole.hashnode.dev·Nov 2, 2024Kubernetes - The Ultimate Orchestration ToolKubernetes is a powerful tool for automating application deployment, scaling, and management in containerized environments. As an industry standard, it provides solutions to run and scale complex applications efficiently. This guide is crafted to tak...8 likes·98 readsKubernetes
Utsav Sonkarsigmadevutsav.hashnode.dev·Oct 20, 2024Get Started with KUBERNETES(Including HELM): Basic to IntermediateWelcome to Week 10 of my ‘Learn in Public’ journey! 🚀 This week, I’m excited to explore Kubernetes, one of the most powerful tools for managing containerized applications across multiple hosts. Kubernetes automates deployment, scaling, and managing ...DevOps Basics in 3 MonthsDevops