From ffc476928561ae7abbfb507293b4dd3491af2a19 Mon Sep 17 00:00:00 2001 From: Alejandro Escobar Date: Wed, 7 Jun 2017 10:14:23 -0700 Subject: [PATCH] fixed the line giving the template for creating configmap, should include the word configmap as part of the creation process. --- docs/tasks/configure-pod-container/configmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/configure-pod-container/configmap.md b/docs/tasks/configure-pod-container/configmap.md index bf5185be87..e22668bba3 100644 --- a/docs/tasks/configure-pod-container/configmap.md +++ b/docs/tasks/configure-pod-container/configmap.md @@ -29,7 +29,7 @@ This page shows you how to configure an application using a ConfigMap. Use the `kubectl create configmap` command to create configmaps from [directories](#creating-configmaps-from-directories), [files](#creating-configmaps-from-files), or [literal values](#creating-configmaps-from-literal-values): ```shell -kubectl create +kubectl create configmap ``` where \ is the name you want to assign to the ConfigMap and \ is the directory, file, or literal value to draw the data from.