Skip to main content

ConfigMap



Resource Icon

Resource Overview

A Kubernetes resource used to separate and store application configuration data and pass it to containers within a pod.

Associated Resources

Parent Resource

Connected Resources

Resource Setting Values

  • service_name : Name of the ConfigMap resource
  • namespace : Namespace where ConfigMap resources will be deployed
  • annotations : A key-value used to display necessary information in the Kubernetes system
  • labels : To distinguish objects, the user arbitrarily specifies the desired value
  • data : General data as key-value pairs - used to store configuration information in text format such as configuration files, environment variables, etc
    • data.name : The key value of the data
    • data.value : The value of the data
  • binary_data : Binary data for a specific key - used to store binary files or other binary format data
    • data.name : The key for the binary data
    • data.value : The value for the binary data

Reference Materials