About 21,300 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. 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 …

  4. 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 …

  5. 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 …

  6. Configuration | Kubernetes

    Jun 16, 2021 · Configuration Updating Configuration via a ConfigMap Configuring Redis using a ConfigMap Adopting Sidecar Containers Feedback Was this page helpful?

  7. 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 …

  8. Volumes - Kubernetes

    Oct 24, 2025 · The data stored in a ConfigMap can be referenced in a volume of type configMap and then consumed by containerized applications running in a pod. When referencing a …

  9. ConfigMaps - Kubernetes

    Jun 17, 2022 · Um ConfigMap é um objeto da API usado para armazenar dados não-confidenciais em pares chave-valor. Pods podem consumir ConfigMaps como variáveis de …

  10. Declarative Management of Kubernetes Objects Using Kustomize

    Sep 19, 2025 · To generate a ConfigMap from an env file, add an entry to the envs list in configMapGenerator. Here is an example of generating a ConfigMap with a data item from a …