Harshit Sahuharshitsahu2311.hashnode.dev·Jan 6, 2025Env & ConfigMaps in Kubernetes - CKAIn modern cloud-native applications, managing configuration and sensitive data efficiently and securely is essential. Kubernetes addresses this need with ConfigMaps. ConfigMaps store non-confidential configuration data, enabling dynamic updates and e...53 readsCertified Kubernetes Administrator.env
Cheedge Leenotes-renovation.hashnode.dev·Dec 30, 2024Kubenetes ConfigMap Examples1. ConfigMap type property-like key apiVersion: v1 kind: ConfigMap metadata: name: app-config data: api-url: "https://api.example.com" log-level: "debug" file-like key apiVersion: v1 kind: ConfigMap metadata: name: app-config data: con...Kubernetes Configuration and SecretKubernetes
Amulyaawscloudbasics.hashnode.dev·Dec 6, 2024Mastering Kubernetes ConfigMaps and Secrets: A Deep Dive into Configuration ManagementIntroduction In the complex world of Kubernetes, managing application configurations and sensitive data is a critical challenge for DevOps engineers and developers. ConfigMaps and Secrets are two powerful Kubernetes resources that provide elegant sol...DevOpsconfigmap
Subbu Tech Tutorialssubbutechtutorials.hashnode.dev·Nov 9, 2024Secrets Management in K8sUsing credentials directly in the Helm chart's values.yaml file is convenient for testing and development, but it's not recommended for production or real-world scenarios due to security risks. In real-world deployments, sensitive information like da...Kubernetes Basics: A Beginner’s GuideKubernetes
Syed Mahmood Alisyedmahmoodali.hashnode.dev·Oct 30, 2024ConfigMap in K8s simplifiedIn 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....Kubernetes
Subbu Tech Tutorialssubbutechtutorials.hashnode.dev·Oct 4, 2024K8s: ConfigMaps & SecretsWhat are ConfigMaps 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 ConfigMap allows y...37 readsKubernetes Basics: A Beginner’s GuideKubernetes
Rahul Vadakkiniyilrahulvadakkiniyil.hashnode.dev·Oct 1, 2024Day 19 of 40DaysofKubernetes : Kubernetes Configmaps and SecretsKubernetes is a powerful orchestration platform that helps manage containerized applications at scale. Two essential resources in Kubernetes for managing configuration data are ConfigMaps and Secrets. Both play a crucial role in configuring and secur...29 reads#40daysofkubernetes
linhbqforSRE Tribeblogs.sretribe.net·Sep 6, 2024ConfigMap, Secret and Role, RoleBinding and ServiceAccount replication for KubernetesThis repository contains a custom Kubernetes controller that can be used to make secrets and config maps available in multiple namespaces. Contents Deployment Using Helm Manual Usage "Role and RoleBinding replication "Push-based" replication ...rolebinding
Aniket Kharpatilaniket-on-cloud9.hashnode.dev·Jul 14, 2024Kubernetes Deployments with ConfigMaps: A Hands-On Guide🚀Welcome to the world of Kubernetes! 🌐 Today, we're going to create k8s deployments for NGINX server with the help of ConfigMaps, a handy tool for managing configuration data in Kubernetes. We'll make this journey interactive and fun, so let's get st...10 likes·270 readsKubernetes
Balabvm.hashnode.dev·Jun 14, 2024Kubernetes ConfigMaps Explained: What You Need to KnowWhat is a ConfigMap in Kubernetes? A ConfigMap is an API object that lets you store configuration data as a key-value pairs. This data is then consumed by other kubernetes resources such as pods. It is mainly used to store non-confidential data, as i...3 likes·643 readsKubernetes