Question
What is a ConfigMap in Kubernetes?
Answer
A ConfigMap is a mapping of configuration originally in YAML format that resides in etcd (partially taken from this external posting). A .yaml file will define the version of the Kubernetes API (e.g., version 1), data, and the “kind:” key will be set to “ConfigMap”.
The content of the ConfigMap is consumed by an application in Kubernetes.
…