From b5345ddde044e93fd2f2546bfd72231aae2a4899 Mon Sep 17 00:00:00 2001 From: Zach Puckett Date: Tue, 5 Dec 2017 15:56:04 -0600 Subject: [PATCH] add configmap to glossary --- _data/glossary/configmap.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 _data/glossary/configmap.yaml diff --git a/_data/glossary/configmap.yaml b/_data/glossary/configmap.yaml new file mode 100644 index 0000000000..cba89b9062 --- /dev/null +++ b/_data/glossary/configmap.yaml @@ -0,0 +1,13 @@ +id: configmap +name: ConfigMap +full-link: /docs/tasks/configure-pod-container/configmap/ +related: +- pod +- secret +tags: +- core-object +short-description: > + used to store non confidential data in key-value pairs and consumed as environment variables, command-line arguments, or config files in a volume +long-description: > + Allows you to decouple configuration artifacts from image content to keep containerized applications portable. + When storing confidential data use a [Secrets](https://kubernetes.io/docs/concepts/configuration/secret/).