From a9863612bc70d3c030e83c9c0dcce35ead87cbf5 Mon Sep 17 00:00:00 2001 From: "Charlie R.C" Date: Tue, 20 Jun 2017 04:34:59 -0500 Subject: [PATCH] fix example in configure-pod-configmap.md --- .../configure-pod-container/configure-pod-configmap.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tasks/configure-pod-container/configure-pod-configmap.md b/docs/tasks/configure-pod-container/configure-pod-configmap.md index 128aee51f4..e9a5e7f6d0 100644 --- a/docs/tasks/configure-pod-container/configure-pod-configmap.md +++ b/docs/tasks/configure-pod-container/configure-pod-configmap.md @@ -248,7 +248,7 @@ spec: containers: - name: test-container image: gcr.io/google_containers/busybox - command: [ "/bin/sh","-c","cat /etc/config/keys/special.level" ] + command: [ "/bin/sh","-c","cat /etc/config/keys" ] volumeMounts: - name: config-volume mountPath: /etc/config @@ -258,11 +258,11 @@ spec: name: special-config items: - key: special.level - path: /keys + path: keys restartPolicy: Never ``` -When the pod runs, the command (`"cat /etc/config/keys/special.level"`) produces the output below: +When the pod runs, the command (`"cat /etc/config/keys"`) produces the output below: ```shell very