From 424a4f2f713f9d1c008f2a3664c29f08cc4df397 Mon Sep 17 00:00:00 2001 From: Suraj Narwade Date: Sun, 8 Oct 2017 20:45:10 +0530 Subject: [PATCH] Fixed example in configmap (#5808) This PR modifies keys in env from configmaps to capital, so that example will work. --- docs/tasks/configure-pod-container/configure-pod-configmap.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tasks/configure-pod-container/configure-pod-configmap.md b/docs/tasks/configure-pod-container/configure-pod-configmap.md index 91fd9670f1..89310d1241 100644 --- a/docs/tasks/configure-pod-container/configure-pod-configmap.md +++ b/docs/tasks/configure-pod-container/configure-pod-configmap.md @@ -168,12 +168,12 @@ spec: valueFrom: configMapKeyRef: name: special-config - key: special_level + key: SPECIAL_LEVEL - name: SPECIAL_TYPE_KEY valueFrom: configMapKeyRef: name: special-config - key: special_type + key: SPECIAL_TYPE restartPolicy: Never ```