1KUBERNETES(1)(kubernetes) KUBERNETES(1)(kubernetes)
2
3
4
5Eric Paris Jan 2015
6
7
9 kubectl create configmap - Create a config map from a local file, di‐
10 rectory or literal value
11
12
13
15 kubectl create configmap [OPTIONS]
16
17
18
20 Create a config map based on a file, directory, or specified literal
21 value.
22
23
24 A single config map may package one or more key/value pairs.
25
26
27 When creating a config map based on a file, the key will default to the
28 basename of the file, and the value will default to the file content.
29 If the basename is an invalid key, you may specify an alternate key.
30
31
32 When creating a config map based on a directory, each file whose base‐
33 name is a valid key in the directory will be packaged into the config
34 map. Any directory entries except regular files are ignored (e.g. sub‐
35 directories, symlinks, devices, pipes, etc).
36
37
38
40 --allow-missing-template-keys=true If true, ignore any errors in
41 templates when a field or map key is missing in the template. Only ap‐
42 plies to golang and jsonpath output formats.
43
44
45 --append-hash=false Append a hash of the configmap to its name.
46
47
48 --dry-run="none" Must be "none", "server", or "client". If client
49 strategy, only print the object that would be sent, without sending it.
50 If server strategy, submit server-side request without persisting the
51 resource.
52
53
54 --field-manager="kubectl-create" Name of the manager used to track
55 field ownership.
56
57
58 --from-env-file=[] Specify the path to a file to read lines of
59 key=val pairs to create a configmap.
60
61
62 --from-file=[] Key file can be specified using its file path, in
63 which case file basename will be used as configmap key, or optionally
64 with a key and file path, in which case the given key will be used.
65 Specifying a directory will iterate each named file in the directory
66 whose basename is a valid configmap key.
67
68
69 --from-literal=[] Specify a key and literal value to insert in
70 configmap (i.e. mykey=somevalue)
71
72
73 -o, --output="" Output format. One of: (json, yaml, name, go-tem‐
74 plate, go-template-file, template, templatefile, jsonpath, jsonpath-as-
75 json, jsonpath-file).
76
77
78 --save-config=false If true, the configuration of current object
79 will be saved in its annotation. Otherwise, the annotation will be un‐
80 changed. This flag is useful when you want to perform kubectl apply on
81 this object in the future.
82
83
84 --show-managed-fields=false If true, keep the managedFields when
85 printing objects in JSON or YAML format.
86
87
88 --template="" Template string or path to template file to use when
89 -o=go-template, -o=go-template-file. The template format is golang tem‐
90 plates [http://golang.org/pkg/text/template/#pkg-overview].
91
92
93 --validate="strict" Must be one of: strict (or true), warn, ignore
94 (or false). "true" or "strict" will use a schema to validate
95 the input and fail the request if invalid. It will perform server side
96 validation if ServerSideFieldValidation is enabled on the api-server,
97 but will fall back to less reliable client-side validation if not.
98 "warn" will warn about unknown or duplicate fields without
99 blocking the request if server-side field validation is enabled on the
100 API server, and behave as "ignore" otherwise. "false" or
101 "ignore" will not perform any schema validation, silently dropping any
102 unknown or duplicate fields.
103
104
105
107 --as="" Username to impersonate for the operation. User could be a
108 regular user or a service account in a namespace.
109
110
111 --as-group=[] Group to impersonate for the operation, this flag
112 can be repeated to specify multiple groups.
113
114
115 --as-uid="" UID to impersonate for the operation.
116
117
118 --azure-container-registry-config="" Path to the file containing
119 Azure container registry configuration information.
120
121
122 --cache-dir="/builddir/.kube/cache" Default cache directory
123
124
125 --certificate-authority="" Path to a cert file for the certificate
126 authority
127
128
129 --client-certificate="" Path to a client certificate file for TLS
130
131
132 --client-key="" Path to a client key file for TLS
133
134
135 --cluster="" The name of the kubeconfig cluster to use
136
137
138 --context="" The name of the kubeconfig context to use
139
140
141 --disable-compression=false If true, opt-out of response compres‐
142 sion for all requests to the server
143
144
145 --insecure-skip-tls-verify=false If true, the server's certificate
146 will not be checked for validity. This will make your HTTPS connections
147 insecure
148
149
150 --kubeconfig="" Path to the kubeconfig file to use for CLI re‐
151 quests.
152
153
154 --match-server-version=false Require server version to match
155 client version
156
157
158 -n, --namespace="" If present, the namespace scope for this CLI
159 request
160
161
162 --password="" Password for basic authentication to the API server
163
164
165 --profile="none" Name of profile to capture. One of
166 (none|cpu|heap|goroutine|threadcreate|block|mutex)
167
168
169 --profile-output="profile.pprof" Name of the file to write the
170 profile to
171
172
173 --request-timeout="0" The length of time to wait before giving up
174 on a single server request. Non-zero values should contain a corre‐
175 sponding time unit (e.g. 1s, 2m, 3h). A value of zero means don't time‐
176 out requests.
177
178
179 -s, --server="" The address and port of the Kubernetes API server
180
181
182 --tls-server-name="" Server name to use for server certificate
183 validation. If it is not provided, the hostname used to contact the
184 server is used
185
186
187 --token="" Bearer token for authentication to the API server
188
189
190 --user="" The name of the kubeconfig user to use
191
192
193 --username="" Username for basic authentication to the API server
194
195
196 --version=false Print version information and quit
197
198
199 --warnings-as-errors=false Treat warnings received from the server
200 as errors and exit with a non-zero exit code
201
202
203
205 # Create a new config map named my-config based on folder bar
206 kubectl create configmap my-config --from-file=path/to/bar
207
208 # Create a new config map named my-config with specified keys instead of file basenames on disk
209 kubectl create configmap my-config --from-file=key1=/path/to/bar/file1.txt --from-file=key2=/path/to/bar/file2.txt
210
211 # Create a new config map named my-config with key1=config1 and key2=config2
212 kubectl create configmap my-config --from-literal=key1=config1 --from-literal=key2=config2
213
214 # Create a new config map named my-config from the key=value pairs in the file
215 kubectl create configmap my-config --from-file=path/to/bar
216
217 # Create a new config map named my-config from an env file
218 kubectl create configmap my-config --from-env-file=path/to/foo.env --from-env-file=path/to/bar.env
219
220
221
222
224 kubectl-create(1),
225
226
227
229 January 2015, Originally compiled by Eric Paris (eparis at redhat dot
230 com) based on the kubernetes source material, but hopefully they have
231 been automatically generated since!
232
233
234
235Manuals User KUBERNETES(1)(kubernetes)