From 487fd9211724b5e54e01bcc2cbc1f319615a69cf Mon Sep 17 00:00:00 2001 From: Manish Bansal Date: Tue, 19 Nov 2019 01:41:42 +0530 Subject: [PATCH] Documentation corrected (#15944) * Documentation corrected The description for the `command` section was wrong. Same is corrected. * Update content/en/docs/tasks/configure-pod-container/configure-pod-configmap.md Co-Authored-By: Zach Corleissen --- .../tasks/configure-pod-container/configure-pod-configmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tasks/configure-pod-container/configure-pod-configmap.md b/content/en/docs/tasks/configure-pod-container/configure-pod-configmap.md index 6bf3d96213..f5129cfadb 100644 --- a/content/en/docs/tasks/configure-pod-container/configure-pod-configmap.md +++ b/content/en/docs/tasks/configure-pod-container/configure-pod-configmap.md @@ -537,7 +537,7 @@ kubectl create -f https://kubernetes.io/examples/configmap/configmap-multikeys.y Add the ConfigMap name under the `volumes` section of the Pod specification. This adds the ConfigMap data to the directory specified as `volumeMounts.mountPath` (in this case, `/etc/config`). -The `command` section references the `special.level` item stored in the ConfigMap. +The `command` section lists directory files with names that match the keys in ConfigMap. {{< codenew file="pods/pod-configmap-volume.yaml" >}}