From 0c6b381b7ca504e40bf7341e0c28163b2e85f90c Mon Sep 17 00:00:00 2001 From: Mitsuhiro Tanino Date: Wed, 21 Jun 2017 19:56:38 -0400 Subject: [PATCH] Typo fix in "Adding ConfigMap data to a Volume" section (#3966) --- docs/tasks/configure-pod-container/configure-pod-configmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/configure-pod-container/configure-pod-configmap.md b/docs/tasks/configure-pod-container/configure-pod-configmap.md index e1cd4ce0e0..58621c7933 100644 --- a/docs/tasks/configure-pod-container/configure-pod-configmap.md +++ b/docs/tasks/configure-pod-container/configure-pod-configmap.md @@ -202,7 +202,7 @@ data: ### Populate a Volume with data stored in a ConfigMap Add the ConfigMap name under the `volumes` section of the Pod specification. -This adds the ConfigMap data to the directory specified as `volumeMount.mountPath` (in this case, `/etc/config`). +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. ```yaml