fixed the line giving the template for creating configmap, should include the word configmap as part of the creation process.

reviewable/pr4009/r2^2
Alejandro Escobar 2017-06-07 10:14:23 -07:00 committed by Andrew Chen
parent 1808475968
commit ffc4769285
1 changed files with 1 additions and 1 deletions

View File

@ -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): 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 ```shell
kubectl create <map-name> <data-source> kubectl create configmap <map-name> <data-source>
``` ```
where \<map-name> is the name you want to assign to the ConfigMap and \<data-source> is the directory, file, or literal value to draw the data from. where \<map-name> is the name you want to assign to the ConfigMap and \<data-source> is the directory, file, or literal value to draw the data from.