1KUBERNETES(1)(kubernetes) KUBERNETES(1)(kubernetes)
2
3
4
5Eric Paris Jan 2015
6
7
9 kubectl create - Create a resource from a file or from stdin
10
11
12
14 kubectl create [OPTIONS]
15
16
17
19 Create a resource from a file or from stdin.
20
21
22 JSON and YAML formats are accepted.
23
24
25
27 --allow-missing-template-keys=true If true, ignore any errors in
28 templates when a field or map key is missing in the template. Only ap‐
29 plies to golang and jsonpath output formats.
30
31
32 --dry-run="none" Must be "none", "server", or "client". If client
33 strategy, only print the object that would be sent, without sending it.
34 If server strategy, submit server-side request without persisting the
35 resource.
36
37
38 --edit=false Edit the API resource before creating
39
40
41 --field-manager="kubectl-create" Name of the manager used to track
42 field ownership.
43
44
45 -f, --filename=[] Filename, directory, or URL to files to use to
46 create the resource
47
48
49 -k, --kustomize="" Process the kustomization directory. This flag
50 can't be used together with -f or -R.
51
52
53 -o, --output="" Output format. One of: (json, yaml, name, go-tem‐
54 plate, go-template-file, template, templatefile, jsonpath, jsonpath-as-
55 json, jsonpath-file).
56
57
58 --raw="" Raw URI to POST to the server. Uses the transport speci‐
59 fied by the kubeconfig file.
60
61
62 --record=false Record current kubectl command in the resource an‐
63 notation. If set to false, do not record the command. If set to true,
64 record the command. If not set, default to updating the existing anno‐
65 tation value only if one already exists.
66
67
68 -R, --recursive=false Process the directory used in -f, --filename
69 recursively. Useful when you want to manage related manifests organized
70 within the same directory.
71
72
73 --save-config=false If true, the configuration of current object
74 will be saved in its annotation. Otherwise, the annotation will be un‐
75 changed. This flag is useful when you want to perform kubectl apply on
76 this object in the future.
77
78
79 -l, --selector="" Selector (label query) to filter on, supports
80 '=', '==', and '!='.(e.g. -l key1=value1,key2=value2). Matching objects
81 must satisfy all of the specified label constraints.
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 --windows-line-endings=false Only relevant if --edit=true. De‐
106 faults to the line ending native to your platform.
107
108
109
111 --as="" Username to impersonate for the operation. User could be a
112 regular user or a service account in a namespace.
113
114
115 --as-group=[] Group to impersonate for the operation, this flag
116 can be repeated to specify multiple groups.
117
118
119 --as-uid="" UID to impersonate for the operation.
120
121
122 --azure-container-registry-config="" Path to the file containing
123 Azure container registry configuration information.
124
125
126 --cache-dir="/builddir/.kube/cache" Default cache directory
127
128
129 --certificate-authority="" Path to a cert file for the certificate
130 authority
131
132
133 --client-certificate="" Path to a client certificate file for TLS
134
135
136 --client-key="" Path to a client key file for TLS
137
138
139 --cluster="" The name of the kubeconfig cluster to use
140
141
142 --context="" The name of the kubeconfig context to use
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 pod using the data in pod.json
206 kubectl create -f ./pod.json
207
208 # Create a pod based on the JSON passed into stdin
209 cat pod.json | kubectl create -f -
210
211 # Edit the data in registry.yaml in JSON then create the resource using the edited data
212 kubectl create -f registry.yaml --edit -o json
213
214
215
216
218 kubectl(1), kubectl-create-clusterrole(1), kubectl-create-cluster‐
219 rolebinding(1), kubectl-create-configmap(1), kubectl-create-cronjob(1),
220 kubectl-create-deployment(1), kubectl-create-ingress(1), kubectl-cre‐
221 ate-job(1), kubectl-create-namespace(1), kubectl-create-poddisruption‐
222 budget(1), kubectl-create-priorityclass(1), kubectl-create-quota(1),
223 kubectl-create-role(1), kubectl-create-rolebinding(1), kubectl-create-
224 secret(1), kubectl-create-service(1), kubectl-create-serviceaccount(1),
225 kubectl-create-token(1),
226
227
228
230 January 2015, Originally compiled by Eric Paris (eparis at redhat dot
231 com) based on the kubernetes source material, but hopefully they have
232 been automatically generated since!
233
234
235
236Manuals User KUBERNETES(1)(kubernetes)