
ConfigMaps - Kubernetes
Nov 21, 2025 · 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 …
Configure a Pod to Use a ConfigMap - Kubernetes
Nov 27, 2023 · The ConfigMap concept allow you to decouple configuration artifacts from image content to keep containerized applications portable. For example, you can download and run the same …
Updating Configuration via a ConfigMap | Kubernetes
Jan 29, 2025 · This page provides a step-by-step example of updating configuration within a Pod via a ConfigMap and builds upon the Configure a Pod to Use a ConfigMap task. At the end of this tutorial, …
ConfigMap - Kubernetes
Nov 22, 2025 · ConfigMap 是一种 API 对象,用来将非机密性的数据保存到键值对中。 使用时, Pod 可以将其用作环境变量、命令行参数或者存储卷中的配置文件。 ConfigMap 将你的环境配置信息和容 …
kubectl create configmap - Kubernetes
Dec 21, 2025 · kubectl create configmap my-config --from-literal=key1=config1 --from-literal=key2=config2 # Create a new config map named my-config from the key=value pairs in the file
Configuring Redis using a ConfigMap - Kubernetes
Nov 5, 2025 · Configuring Redis using a ConfigMap This page provides a real world example of how to configure Redis using a ConfigMap and builds upon the Configure a Pod to Use a ConfigMap task.
配置 Pod 使用 ConfigMap - Kubernetes
Oct 14, 2024 · 大多数时候,存在要调整配置参数所设置的数值的需求。 ConfigMap 是 Kubernetes 的一种机制,可让你将配置数据注入到应用的 Pod 内部。 ConfigMap 概念允许你将配置清单与镜像内容 …
ConfigMap - Kubernetes
Jan 15, 2023 · この手法では、Kubernetes APIに直接アクセスすることで、別の名前空間にあるConfigMapにもアクセスできます。 以下に、Podを設定するためにgame-demoから値を使用す …
Customizing DNS Service - Kubernetes
Jan 8, 2025 · As a cluster administrator, you can modify the ConfigMap for the CoreDNS Corefile to change how DNS service discovery behaves for that cluster. In Kubernetes, CoreDNS is installed …
Configurer un pod pour utiliser une ConfigMap | Kubernetes
Sep 4, 2023 · Vous pouvez utiliser des variables d'environnement définies par ConfigMap dans la section command de la spécification du Pod en utilisant la syntaxe de substitution Kubernetes …