From 607675f53b7b98eb47d165178912cb6c302e3d38 Mon Sep 17 00:00:00 2001 From: Rajesh Deshpande <47311048+rajeshdeshpande02@users.noreply.github.com> Date: Fri, 19 Apr 2019 13:37:55 +0530 Subject: [PATCH] Correcting ambiguous statements (#13872) These statement was intended to specify environment variable values available in the container but word 'environment variable' was missing so corrected these statements for better clarity. --- .../configure-pod-container/configure-pod-configmap.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 15261bd428..603e4f32d4 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 @@ -449,7 +449,7 @@ configmap/special-config-2-c92b5mmcf2 created kubectl create -f https://k8s.io/examples/pods/pod-single-configmap-env-variable.yaml ``` - Now, the Pod's output includes `SPECIAL_LEVEL_KEY=very`. + Now, the Pod's output includes environment variable `SPECIAL_LEVEL_KEY=very`. ### Define container environment variables with data from multiple ConfigMaps @@ -473,7 +473,7 @@ configmap/special-config-2-c92b5mmcf2 created kubectl create -f https://k8s.io/examples/pods/pod-multiple-configmap-env-variable.yaml ``` - Now, the Pod's output includes `SPECIAL_LEVEL_KEY=very` and `LOG_LEVEL=INFO`. + Now, the Pod's output includes environment variables `SPECIAL_LEVEL_KEY=very` and `LOG_LEVEL=INFO`. ## Configure all key-value pairs in a ConfigMap as container environment variables @@ -501,7 +501,7 @@ This functionality is available in Kubernetes v1.6 and later. kubectl create -f https://k8s.io/examples/pods/pod-configmap-envFrom.yaml ``` - Now, the Pod's output includes `SPECIAL_LEVEL=very` and `SPECIAL_TYPE=charm`. + Now, the Pod's output includes environment variables `SPECIAL_LEVEL=very` and `SPECIAL_TYPE=charm`. ## Use ConfigMap-defined environment variables in Pod commands