Nov 9, 2025 · 4 min read · Store and stateful Some application like frontend or the backend does not required persistent volume because when we restart ot update the application the application will be the same But for deployment like MySql or any other DB resources persiste...
Join discussionSep 15, 2025 · 6 min read · So far in this Kubernetes journey, we have: Set up clusters using kubeadm and kops Understood Kubernetes architecture Learned how workloads run using Pods, ReplicaSets, and Deployments Managed traffic using Services Now we address a real produc...
Join discussion
Jul 27, 2025 · 3 min read · 📦 Secrets and ConfigMaps in Kubernetes: Complete Guide with YAML & Deployment Kubernetes provides powerful tools to manage configuration and sensitive data separately from application code. Two of the most important ones are: ConfigMaps – For non-s...
Join discussionJul 17, 2025 · 7 min read · We often see .env Files are used to store environment variables and configuration data for applications during development. Ever wonder how Kubernetes handles this when it comes to deploying applications in a Kubernetes cluster? The answer is ConfigM...
Join discussion
Jul 4, 2025 · 2 min read · In a modern DevOps environment, configuration management and secrets handling are essential for secure and scalable application deployments. Kubernetes offers two native mechanisms for managing configuration data: ConfigMaps and Secrets. These are de...
Join discussion
May 17, 2025 · 6 min read · Hey folks! Today I want to share what I've learned about two super useful Kubernetes resources: ConfigMaps and Ingress. When I first started with Kubernetes, these concepts seemed a bit confusing, but they're actually pretty straightforward once you ...
Join discussion
Mar 12, 2025 · 3 min read · 1️⃣ Task: Creating a ConfigMap 📝 Method 1: Using a YAML File Create a file named configmap.yml and add the following content: apiVersion: v1 kind: ConfigMap metadata: name: my-config # Name of the ConfigMap data: APP_ENV: "production" # Envi...
Join discussion
Nov 8, 2024 · 3 min read · ConfigMaps and Secrets are essential components in Kubernetes for managing configuration data and sensitive information. This guide will walk you through creating and using ConfigMaps and Secrets in your Kubernetes deployments, ensuring your applicat...
Join discussion
Oct 30, 2024 · 4 min read · In Kubernetes, a ConfigMap is a resource used to store configuration data in key-value pairs. This configuration data can then be used in your applications or Kubernetes components without embedding the configuration directly in the container images....
Join discussion