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 <zacharysarah@users.noreply.github.com>
pull/17638/head
Manish Bansal 2019-11-19 01:41:42 +05:30 committed by Kubernetes Prow Robot
parent fc96d09d8f
commit 487fd92117
1 changed files with 1 additions and 1 deletions

View File

@ -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" >}}