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