From 5621bc1ee129204f4a31f0969e215efe180e2761 Mon Sep 17 00:00:00 2001 From: Julio Lopez Date: Fri, 19 Apr 2019 09:37:54 -0700 Subject: [PATCH] Fix key name in pod-configmap-volume-specific-key.yaml example (#13599) Changes the key name to `SPECIAL_LEVEL` in the config map volume definition. This is consistent with the rest of the example. Otherwise, this pod does not start because there is no key with that name in the `special-config` config map. --- content/en/examples/pods/pod-configmap-volume-specific-key.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/examples/pods/pod-configmap-volume-specific-key.yaml b/content/en/examples/pods/pod-configmap-volume-specific-key.yaml index 7a7c7bf605..72e38fd836 100644 --- a/content/en/examples/pods/pod-configmap-volume-specific-key.yaml +++ b/content/en/examples/pods/pod-configmap-volume-specific-key.yaml @@ -15,6 +15,6 @@ spec: configMap: name: special-config items: - - key: special.level + - key: SPECIAL_LEVEL path: keys restartPolicy: Never