From cd5e98a2dc37ff2002354bec97bf4b3227dee619 Mon Sep 17 00:00:00 2001 From: Itamar Ostricher Date: Mon, 22 May 2017 10:11:14 +0300 Subject: [PATCH] Fix configMapRef indentation in envFrom clause Fixes invalid YAML in example --- docs/tasks/configure-pod-container/configure-pod-configmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/configure-pod-container/configure-pod-configmap.md b/docs/tasks/configure-pod-container/configure-pod-configmap.md index fee05e833b..9ed49f740d 100644 --- a/docs/tasks/configure-pod-container/configure-pod-configmap.md +++ b/docs/tasks/configure-pod-container/configure-pod-configmap.md @@ -136,7 +136,7 @@ Note: This functionality is available to users running Kubernetes v1.6 and later image: gcr.io/google_containers/busybox command: [ "/bin/sh", "-c", "env" ] envFrom: - - configMapRef: + - configMapRef: name: special-config restartPolicy: Never ```