From b5345ddde044e93fd2f2546bfd72231aae2a4899 Mon Sep 17 00:00:00 2001 From: Zach Puckett Date: Tue, 5 Dec 2017 15:56:04 -0600 Subject: [PATCH 1/5] 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/). From 7c0318ac2510771fa22a5991683c91ed3ab2691d Mon Sep 17 00:00:00 2001 From: Zach Puckett Date: Tue, 5 Dec 2017 15:57:55 -0600 Subject: [PATCH 2/5] fix case --- _data/glossary/configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/glossary/configmap.yaml b/_data/glossary/configmap.yaml index cba89b9062..c434a779e5 100644 --- a/_data/glossary/configmap.yaml +++ b/_data/glossary/configmap.yaml @@ -7,7 +7,7 @@ related: 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 + 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/). From 5800f941abe998ce14825eb555684ab472922e2b Mon Sep 17 00:00:00 2001 From: Zach Puckett Date: Tue, 5 Dec 2017 16:27:04 -0600 Subject: [PATCH 3/5] update short description, include volume link --- _data/glossary/configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/glossary/configmap.yaml b/_data/glossary/configmap.yaml index c434a779e5..587338ab4e 100644 --- a/_data/glossary/configmap.yaml +++ b/_data/glossary/configmap.yaml @@ -7,7 +7,7 @@ related: 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 + Used to store non-confidential data in key-value pairs and consumed as environment variables, command-line arguments, or config files in a {% glossary_tooltip text="volume" term_id="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/). From 45527c7732d7b43a0e2cc6b138a7ff1ec7c95601 Mon Sep 17 00:00:00 2001 From: Zach Puckett Date: Tue, 5 Dec 2017 16:28:42 -0600 Subject: [PATCH 4/5] set to singular --- _data/glossary/configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/glossary/configmap.yaml b/_data/glossary/configmap.yaml index 587338ab4e..ef308321b6 100644 --- a/_data/glossary/configmap.yaml +++ b/_data/glossary/configmap.yaml @@ -10,4 +10,4 @@ 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 {% glossary_tooltip text="volume" term_id="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/). + When storing confidential data use a [Secret](https://kubernetes.io/docs/concepts/configuration/secret/). From 3f8d00a8330920905dea47b2a1eb6e240a67211b Mon Sep 17 00:00:00 2001 From: Zach Puckett Date: Tue, 5 Dec 2017 18:09:15 -0600 Subject: [PATCH 5/5] update description to include additional detail --- _data/glossary/configmap.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/glossary/configmap.yaml b/_data/glossary/configmap.yaml index ef308321b6..b961b734b0 100644 --- a/_data/glossary/configmap.yaml +++ b/_data/glossary/configmap.yaml @@ -7,7 +7,7 @@ related: 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 {% glossary_tooltip text="volume" term_id="volume" %}. + An API object used to store non-confidential data in key-value pairs. Can be consumed as environment variables, command-line arguments, or config files in a {% glossary_tooltip text="volume" term_id="volume" %}. long-description: > - Allows you to decouple configuration artifacts from image content to keep containerized applications portable. + Allows you to decouple environment-specific configuration from your {% glossary_tooltip text="container images" term_id="container" %}, so that your applications are easily portable. When storing confidential data use a [Secret](https://kubernetes.io/docs/concepts/configuration/secret/).