Jan 8 · 4 min read · In Part 4, we explored Kubernetes networking - how traffic flows securely and efficiently inside and outside the cluster. Now we move to a topic that truly separates stateless demos from real production systems: Configuration management and persisten...
Join discussion
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
Sep 14, 2025 · 10 min read · Kubernetes is a container orchestration (coordinating and automating the management) platform that automates deployment, scaling, and management of containerized applications. As I have decided to learn Kubernetes, i found out the these are the basic...
Join discussionAug 28, 2025 · 8 min read · Introduction: When running applications in Kubernetes, you’ll quickly realize that application configuration and secrets management are just as important as the code itself. Hardcoding configs or credentials into containers is a recipe for disaster. ...
Join discussionJul 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 discussionMay 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
May 1, 2025 · 2 min read · What are ConfigMaps and Secrets in k8s? A ConfigMap is an API object used to store non-confidential data in key-value pairs.Pods can consume ConfigMaps as environment variables, command-line arguments, or as configuration files in a volume. A ConfigM...
Join discussion