© 2026 Hashnode
Welcome back! 👋 Day 62 of the 100 Days Cloud DevOps Challenge, and today we're mastering Kubernetes Secrets! This is critical security practice - storing sensitive data like passwords, API keys, and licenses securely in the cluster. Let's secure! 🎯...

content Why we using external secret operator Step 1: Creating a service account or IAM user & secret key and access key in Aws. Step 2: Installation of an external secret operator. Step 3: Creating secret store , secrets , and external secret S...

Let’s dive into the details of ConfigMaps and Secrets in Kubernetes. ConfigMaps ConfigMaps are used to store non-confidential configuration data in key-value pairs. They allow you to decouple configuration artifacts from image content to keep your co...

🤔 Need for ConfigMaps and Secrets in Kubernetes? Let’s just say we have a web application that needs environment variables for configuration. However, managing these variables directly in multiple YAML manifests can become hard and repetitive proce...

Kubernetes (K8s) Kubernetes, often abbreviated as K8s, is an open-source platform designed for automating the deployment, scaling, and management of containerized applications. It allows you to manage your applications more efficiently and effectivel...

ConfigMaps: ConfigMaps in Kubernetes is a resource object which allow us to store non-sensitive configuration data related to application in key-value pair. Suppose we are running an application which requires some environment variables, command-line...

In the world of Kubernetes (k8s), managing configuration and sensitive data efficiently is crucial. This is where ConfigMaps and Secrets come into play. Let's dive into what they are, how they differ, and why they're essential for your Kubernetes clu...
