1# SOME DESCRIPTIVE TITLE.
2# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3# This file is distributed under the same license as the PACKAGE package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5#
6#, fuzzy
7msgid ""
8msgstr ""
9"Project-Id-Version: \n"
10"Report-Msgid-Bugs-To: EMAIL\n"
11"POT-Creation-Date: 2021-07-07 20:15+0200\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"
15"Language: \n"
16"MIME-Version: 1.0\n"
17"Content-Type: text/plain; charset=UTF-8\n"
18"Content-Transfer-Encoding: 8bit\n"
19
20#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:138
21msgid ""
22"\n"
23"\t\t\t# Approve CSR 'csr-sqgzp'\n"
24"\t\t\tkubectl certificate approve csr-sqgzp\n"
25"\t\t"
26msgstr ""
27
28#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:182
29msgid ""
30"\n"
31"\t\t\t# Deny CSR 'csr-sqgzp'\n"
32"\t\t\tkubectl certificate deny csr-sqgzp\n"
33"\t\t"
34msgstr ""
35
36#: staging/src/k8s.io/kubectl/pkg/cmd/config/config.go:43
37msgid ""
38"\n"
39"\t\t\tModify kubeconfig files using subcommands like \"kubectl config set "
40"current-context my-context\"\n"
41"\n"
42"\t\t\tThe loading order follows these rules:\n"
43"\n"
44"\t\t\t1. If the --"
45msgstr ""
46
47#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:44
48msgid ""
49"\n"
50"\t\t  # Create a cluster role binding for user1, user2, and group1 using the "
51"cluster-admin cluster role\n"
52"\t\t  kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-"
53"admin --user=user1 --user=user2 --group=group1"
54msgstr ""
55
56#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:58
57msgid ""
58"\n"
59"\t\t  # Create a new config map named my-config based on folder bar\n"
60"\t\t  kubectl create configmap my-config --from-file=path/to/bar\n"
61"\n"
62"\t\t  # Create a new config map named my-config with specified keys instead "
63"of file basenames on disk\n"
64"\t\t  kubectl create configmap my-config --from-file=key1=/path/to/bar/file1."
65"txt --from-file=key2=/path/to/bar/file2.txt\n"
66"\n"
67"\t\t  # Create a new config map named my-config with key1=config1 and "
68"key2=config2\n"
69"\t\t  kubectl create configmap my-config --from-literal=key1=config1 --from-"
70"literal=key2=config2\n"
71"\n"
72"\t\t  # Create a new config map named my-config from the key=value pairs in "
73"the file\n"
74"\t\t  kubectl create configmap my-config --from-file=path/to/bar\n"
75"\n"
76"\t\t  # Create a new config map named my-config from an env file\n"
77"\t\t  kubectl create configmap my-config --from-env-file=path/to/bar.env"
78msgstr ""
79
80#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43
81msgid ""
82"\n"
83"\t\t  # Create a role binding for user1, user2, and group1 using the admin "
84"cluster role\n"
85"\t\t  kubectl create rolebinding admin --clusterrole=admin --user=user1 --"
86"user=user2 --group=group1"
87msgstr ""
88
89#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:56
90msgid ""
91"\n"
92"\t\t  # If you don't already have a .dockercfg file, you can create a "
93"dockercfg secret directly by using:\n"
94"\t\t  kubectl create secret docker-registry my-secret --docker-"
95"server=DOCKER_REGISTRY_SERVER --docker-username=DOCKER_USER --docker-"
96"password=DOCKER_PASSWORD --docker-email=DOCKER_EMAIL\n"
97"\n"
98"\t\t  # Create a new secret named my-secret from ~/.docker/config.json\n"
99"\t\t  kubectl create secret docker-registry my-secret --from-file=."
100"dockerconfigjson=path/to/.docker/config.json"
101msgstr ""
102
103#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:62
104msgid ""
105"\n"
106"\t\t  # Show metrics for all nodes\n"
107"\t\t  kubectl top node\n"
108"\n"
109"\t\t  # Show metrics for a given node\n"
110"\t\t  kubectl top node NODE_NAME"
111msgstr ""
112
113#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:45
114msgid ""
115"\n"
116"\t\t# !!!Important Note!!!\n"
117"\t\t# Requires that the 'tar' binary is present in your container\n"
118"\t\t# image.  If 'tar' is not present, 'kubectl cp' will fail.\n"
119"\t\t#\n"
120"\t\t# For advanced use cases, such as symlinks, wildcard expansion or\n"
121"\t\t# file mode preservation, consider using 'kubectl exec'.\n"
122"\n"
123"\t\t# Copy /tmp/foo local file to /tmp/bar in a remote pod in namespace "
124"<some-namespace>\n"
125"\t\ttar cf - /tmp/foo | kubectl exec -i -n <some-namespace> <some-pod> -- "
126"tar xf - -C /tmp/bar\n"
127"\n"
128"\t\t# Copy /tmp/foo from a remote pod to /tmp/bar locally\n"
129"\t\tkubectl exec -n <some-namespace> <some-pod> -- tar cf - /tmp/foo | tar "
130"xf - -C /tmp/bar\n"
131"\n"
132"\t\t# Copy /tmp/foo_dir local directory to /tmp/bar_dir in a remote pod in "
133"the default namespace\n"
134"\t\tkubectl cp /tmp/foo_dir <some-pod>:/tmp/bar_dir\n"
135"\n"
136"\t\t# Copy /tmp/foo local file to /tmp/bar in a remote pod in a specific "
137"container\n"
138"\t\tkubectl cp /tmp/foo <some-pod>:/tmp/bar -c <specific-container>\n"
139"\n"
140"\t\t# Copy /tmp/foo local file to /tmp/bar in a remote pod in namespace "
141"<some-namespace>\n"
142"\t\tkubectl cp /tmp/foo <some-namespace>/<some-pod>:/tmp/bar\n"
143"\n"
144"\t\t# Copy /tmp/foo from a remote pod to /tmp/bar locally\n"
145"\t\tkubectl cp <some-namespace>/<some-pod>:/tmp/foo /tmp/bar"
146msgstr ""
147
148#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:119
149msgid ""
150"\n"
151"\t\t# Apply the configuration in pod.json to a pod\n"
152"\t\tkubectl apply -f ./pod.json\n"
153"\n"
154"\t\t# Apply resources from a directory containing kustomization.yaml - e.g. "
155"dir/kustomization.yaml\n"
156"\t\tkubectl apply -k dir/\n"
157"\n"
158"\t\t# Apply the JSON passed into stdin to a pod\n"
159"\t\tcat pod.json | kubectl apply -f -\n"
160"\n"
161"\t\t# Note: --prune is still in Alpha\n"
162"\t\t# Apply the configuration in manifest.yaml that matches label app=nginx "
163"and delete all other resources that are not in the file and match label "
164"app=nginx\n"
165"\t\tkubectl apply --prune -f manifest.yaml -l app=nginx\n"
166"\n"
167"\t\t# Apply the configuration in manifest.yaml and delete all the other "
168"config maps that are not in the file\n"
169"\t\tkubectl apply --prune -f manifest.yaml --all --prune-whitelist=core/v1/"
170"ConfigMap"
171msgstr ""
172
173#: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:48
174#, c-format
175msgid ""
176"\n"
177"\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 and "
178"10, no target CPU utilization specified so a default autoscaling policy will "
179"be used\n"
180"\t\tkubectl autoscale deployment foo --min=2 --max=10\n"
181"\n"
182"\t\t# Auto scale a replication controller \"foo\", with the number of pods "
183"between 1 and 5, target CPU utilization at 80%\n"
184"\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80"
185msgstr ""
186
187#: pkg/kubectl/cmd/convert/convert.go:51
188msgid ""
189"\n"
190"\t\t# Convert 'pod.yaml' to latest version and print to stdout.\n"
191"\t\tkubectl convert -f pod.yaml\n"
192"\n"
193"\t\t# Convert the live state of the resource specified by 'pod.yaml' to the "
194"latest version\n"
195"\t\t# and print to stdout in JSON format.\n"
196"\t\tkubectl convert -f pod.yaml --local -o json\n"
197"\n"
198"\t\t# Convert all files under current directory to latest version and create "
199"them all.\n"
200"\t\tkubectl convert -f . | kubectl create -f -"
201msgstr ""
202
203#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:41
204msgid ""
205"\n"
206"\t\t# Create a cluster role named \"pod-reader\" that allows user to perform "
207"\"get\", \"watch\" and \"list\" on pods\n"
208"\t\tkubectl create clusterrole pod-reader --verb=get,list,watch --"
209"resource=pods\n"
210"\n"
211"\t\t# Create a cluster role named \"pod-reader\" with ResourceName "
212"specified\n"
213"\t\tkubectl create clusterrole pod-reader --verb=get --resource=pods --"
214"resource-name=readablepod --resource-name=anotherpod\n"
215"\n"
216"\t\t# Create a cluster role named \"foo\" with API Group specified\n"
217"\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=rs."
218"extensions\n"
219"\n"
220"\t\t# Create a cluster role named \"foo\" with SubResource specified\n"
221"\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=pods,"
222"pods/status\n"
223"\n"
224"\t\t# Create a cluster role name \"foo\" with NonResourceURL specified\n"
225"\t\tkubectl create clusterrole \"foo\" --verb=get --non-resource-url=/logs/"
226"*\n"
227"\n"
228"\t\t# Create a cluster role name \"monitoring\" with AggregationRule "
229"specified\n"
230"\t\tkubectl create clusterrole monitoring --aggregation-rule=\"rbac.example."
231"com/aggregate-to-monitoring=true\""
232msgstr ""
233
234#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:43
235msgid ""
236"\n"
237"\t\t# Create a job\n"
238"\t\tkubectl create job my-job --image=busybox\n"
239"\n"
240"\t\t# Create a job with a command\n"
241"\t\tkubectl create job my-job --image=busybox -- date\n"
242"\n"
243"\t\t# Create a job from a cron job named \"a-cronjob\"\n"
244"\t\tkubectl create job test-job --from=cronjob/a-cronjob"
245msgstr ""
246
247#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:44
248msgid ""
249"\n"
250"\t\t# Create a new resource quota named my-quota\n"
251"\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3,"
252"replicationcontrollers=2,resourcequotas=1,secrets=5,"
253"persistentvolumeclaims=10\n"
254"\n"
255"\t\t# Create a new resource quota named best-effort\n"
256"\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort"
257msgstr ""
258
259#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:44
260#, c-format
261msgid ""
262"\n"
263"\t\t# Create a pod disruption budget named my-pdb that will select all pods "
264"with the app=rails label\n"
265"\t\t# and require at least one of them being available at any point in time\n"
266"\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-"
267"available=1\n"
268"\n"
269"\t\t# Create a pod disruption budget named my-pdb that will select all pods "
270"with the app=nginx label\n"
271"\t\t# and require at least half of the pods selected to be available at any "
272"point in time\n"
273"\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%"
274msgstr ""
275
276#: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:76
277msgid ""
278"\n"
279"\t\t# Create a pod using the data in pod.json\n"
280"\t\tkubectl create -f ./pod.json\n"
281"\n"
282"\t\t# Create a pod based on the JSON passed into stdin\n"
283"\t\tcat pod.json | kubectl create -f -\n"
284"\n"
285"\t\t# Edit the data in docker-registry.yaml in JSON then create the resource "
286"using the edited data\n"
287"\t\tkubectl create -f docker-registry.yaml --edit -o json"
288msgstr ""
289
290#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:43
291msgid ""
292"\n"
293"\t\t# Create a priority class named high-priority\n"
294"\t\tkubectl create priorityclass high-priority --value=1000 --description="
295"\"high priority\"\n"
296"\n"
297"\t\t# Create a priority class named default-priority that is considered as "
298"the global default priority\n"
299"\t\tkubectl create priorityclass default-priority --value=1000 --global-"
300"default=true --description=\"default priority\"\n"
301"\n"
302"\t\t# Create a priority class named high-priority that cannot preempt pods "
303"with lower priority\n"
304"\t\tkubectl create priorityclass high-priority --value=1000 --description="
305"\"high priority\" --preemption-policy=\"Never\""
306msgstr ""
307
308#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:46
309msgid ""
310"\n"
311"\t\t# Create a role named \"pod-reader\" that allows user to perform \"get"
312"\", \"watch\" and \"list\" on pods\n"
313"\t\tkubectl create role pod-reader --verb=get --verb=list --verb=watch --"
314"resource=pods\n"
315"\n"
316"\t\t# Create a role named \"pod-reader\" with ResourceName specified\n"
317"\t\tkubectl create role pod-reader --verb=get --resource=pods --resource-"
318"name=readablepod --resource-name=anotherpod\n"
319"\n"
320"\t\t# Create a role named \"foo\" with API Group specified\n"
321"\t\tkubectl create role foo --verb=get,list,watch --resource=rs.extensions\n"
322"\n"
323"\t\t# Create a role named \"foo\" with SubResource specified\n"
324"\t\tkubectl create role foo --verb=get,list,watch --resource=pods,pods/status"
325msgstr ""
326
327#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:61
328msgid ""
329"\n"
330"\t\t# Create a service for a replicated nginx, which serves on port 80 and "
331"connects to the containers on port 8000\n"
332"\t\tkubectl expose rc nginx --port=80 --target-port=8000\n"
333"\n"
334"\t\t# Create a service for a replication controller identified by type and "
335"name specified in \"nginx-controller.yaml\", which serves on port 80 and "
336"connects to the containers on port 8000\n"
337"\t\tkubectl expose -f nginx-controller.yaml --port=80 --target-port=8000\n"
338"\n"
339"\t\t# Create a service for a pod valid-pod, which serves on port 444 with "
340"the name \"frontend\"\n"
341"\t\tkubectl expose pod valid-pod --port=444 --name=frontend\n"
342"\n"
343"\t\t# Create a second service based on the above service, exposing the "
344"container port 8443 as port 443 with the name \"nginx-https\"\n"
345"\t\tkubectl expose service nginx --port=443 --target-port=8443 --name=nginx-"
346"https\n"
347"\n"
348"\t\t# Create a service for a replicated streaming application on port 4100 "
349"balancing UDP traffic and named 'video-stream'.\n"
350"\t\tkubectl expose rc streamer --port=4100 --protocol=UDP --name=video-"
351"stream\n"
352"\n"
353"\t\t# Create a service for a replicated nginx using replica set, which "
354"serves on port 80 and connects to the containers on port 8000\n"
355"\t\tkubectl expose rs nginx --port=80 --target-port=8000\n"
356"\n"
357"\t\t# Create a service for an nginx deployment, which serves on port 80 and "
358"connects to the containers on port 8000\n"
359"\t\tkubectl expose deployment nginx --port=80 --target-port=8000"
360msgstr ""
361
362#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_ingress.go:64
363msgid ""
364"\n"
365"\t\t# Create a single ingress called 'simple' that directs requests to foo."
366"com/bar to svc\n"
367"\t\t# svc1:8080 with a tls secret \"my-cert\"\n"
368"\t\tkubectl create ingress simple --rule=\"foo.com/bar=svc1:8080,tls=my-cert"
369"\"\n"
370"\n"
371"\t\t# Create a catch all ingress of \"/path\" pointing to service svc:port "
372"and Ingress Class as \"otheringress\"\n"
373"\t\tkubectl create ingress catch-all --class=otheringress --rule=\"/path=svc:"
374"port\"\n"
375"\n"
376"\t\t# Create an ingress with two annotations: ingress.annotation1 and "
377"ingress.annotations2\n"
378"\t\tkubectl create ingress annotated --class=default --rule=\"foo.com/"
379"bar=svc:port\" \\n\t\t\t--annotation ingress.annotation1=foo \\n\t\t\t--"
380"annotation ingress.annotation2=bla\n"
381"\n"
382"\t\t# Create an ingress with the same host and multiple paths\n"
383"\t\tkubectl create ingress multipath --class=default \\n\t\t\t--rule=\"foo."
384"com/=svc:port\" \\n\t\t\t--rule=\"foo.com/admin/=svcadmin:portadmin\"\n"
385"\n"
386"\t\t# Create an ingress with multiple hosts and the pathType as Prefix\n"
387"\t\tkubectl create ingress ingress1 --class=default \\n\t\t\t--rule=\"foo."
388"com/path*=svc:8080\" \\n\t\t\t--rule=\"bar.com/admin*=svc2:http\"\n"
389"\n"
390"\t\t# Create an ingress with TLS enabled using the default ingress "
391"certificate and different path types\n"
392"\t\tkubectl create ingress ingtls --class=default \\n\t\t   --rule=\"foo.com/"
393"=svc:https,tls\" \\n\t\t   --rule=\"foo.com/path/subpath*=othersvc:8080\"\n"
394"\n"
395"\t\t# Create an ingress with TLS enabled using a specific secret and "
396"pathType as Prefix\n"
397"\t\tkubectl create ingress ingsecret --class=default \\n\t\t   --rule=\"foo."
398"com/*=svc:8080,tls=secret1\"\n"
399"\n"
400"\t\t# Create an ingress with a default backend\n"
401"\t\tkubectl create ingress ingdefault --class=default \\n\t\t   --default-"
402"backend=defaultsvc:http \\n\t\t   --rule=\"foo.com/*=svc:8080,tls=secret1\"\n"
403"\n"
404"\t\t"
405msgstr ""
406
407#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:74
408msgid ""
409"\n"
410"\t\t# Create an interactive debugging session in pod mypod and immediately "
411"attach to it.\n"
412"\t\t# (requires the EphemeralContainers feature to be enabled in the "
413"cluster)\n"
414"\t\tkubectl debug mypod -it --image=busybox\n"
415"\n"
416"\t\t# Create a debug container named debugger using a custom automated "
417"debugging image.\n"
418"\t\t# (requires the EphemeralContainers feature to be enabled in the "
419"cluster)\n"
420"\t\tkubectl debug --image=myproj/debug-tools -c debugger mypod\n"
421"\n"
422"\t\t# Create a copy of mypod adding a debug container and attach to it\n"
423"\t\tkubectl debug mypod -it --image=busybox --copy-to=my-debugger\n"
424"\n"
425"\t\t# Create a copy of mypod changing the command of mycontainer\n"
426"\t\tkubectl debug mypod -it --copy-to=my-debugger --container=mycontainer -- "
427"sh\n"
428"\n"
429"\t\t# Create a copy of mypod changing all container images to busybox\n"
430"\t\tkubectl debug mypod --copy-to=my-debugger --set-image=*=busybox\n"
431"\n"
432"\t\t# Create a copy of mypod adding a debug container and changing container "
433"images\n"
434"\t\tkubectl debug mypod -it --copy-to=my-debugger --image=debian --set-"
435"image=app=app:debug,sidecar=sidecar:debug\n"
436"\n"
437"\t\t# Create an interactive debugging session on a node and immediately "
438"attach to it.\n"
439"\t\t# The container will run in the host namespaces and the host's "
440"filesystem will be mounted at /host\n"
441"\t\tkubectl debug node/mynode -it --image=busybox\n"
442msgstr ""
443
444#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:74
445msgid ""
446"\n"
447"\t\t# Delete a pod using the type and name specified in pod.json\n"
448"\t\tkubectl delete -f ./pod.json\n"
449"\n"
450"\t\t# Delete resources from a directory containing kustomization.yaml - e.g. "
451"dir/kustomization.yaml\n"
452"\t\tkubectl delete -k dir\n"
453"\n"
454"\t\t# Delete a pod based on the type and name in the JSON passed into stdin\n"
455"\t\tcat pod.json | kubectl delete -f -\n"
456"\n"
457"\t\t# Delete pods and services with same names \"baz\" and \"foo\"\n"
458"\t\tkubectl delete pod,service baz foo\n"
459"\n"
460"\t\t# Delete pods and services with label name=myLabel\n"
461"\t\tkubectl delete pods,services -l name=myLabel\n"
462"\n"
463"\t\t# Delete a pod with minimal delay\n"
464"\t\tkubectl delete pod foo --now\n"
465"\n"
466"\t\t# Force delete a pod on a dead node\n"
467"\t\tkubectl delete pod foo --force\n"
468"\n"
469"\t\t# Delete all pods\n"
470"\t\tkubectl delete pods --all"
471msgstr ""
472
473#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:51
474msgid ""
475"\n"
476"\t\t# Describe a node\n"
477"\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n"
478"\n"
479"\t\t# Describe a pod\n"
480"\t\tkubectl describe pods/nginx\n"
481"\n"
482"\t\t# Describe a pod identified by type and name in \"pod.json\"\n"
483"\t\tkubectl describe -f pod.json\n"
484"\n"
485"\t\t# Describe all pods\n"
486"\t\tkubectl describe pods\n"
487"\n"
488"\t\t# Describe pods by label name=myLabel\n"
489"\t\tkubectl describe po -l name=myLabel\n"
490"\n"
491"\t\t# Describe all pods managed by the 'frontend' replication controller (rc-"
492"created pods\n"
493"\t\t# get the name of the rc as a prefix in the pod the name)\n"
494"\t\tkubectl describe pods frontend"
495msgstr ""
496
497#: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:76
498msgid ""
499"\n"
500"\t\t# Diff resources included in pod.json\n"
501"\t\tkubectl diff -f pod.json\n"
502"\n"
503"\t\t# Diff file read from stdin\n"
504"\t\tcat service.yaml | kubectl diff -f -"
505msgstr ""
506
507#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:138
508msgid ""
509"\n"
510"\t\t# Drain node \"foo\", even if there are pods not managed by a "
511"replication controller, replica set, job, daemon set or stateful set on it\n"
512"\t\tkubectl drain foo --force\n"
513"\n"
514"\t\t# As above, but abort if there are pods not managed by a replication "
515"controller, replica set, job, daemon set or stateful set, and use a grace "
516"period of 15 minutes\n"
517"\t\tkubectl drain foo --grace-period=900"
518msgstr ""
519
520#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:55
521msgid ""
522"\n"
523"\t\t# Edit the service named 'docker-registry'\n"
524"\t\tkubectl edit svc/docker-registry\n"
525"\n"
526"\t\t# Use an alternative editor\n"
527"\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n"
528"\n"
529"\t\t# Edit the job 'myjob' in JSON using the v1 API format\n"
530"\t\tkubectl edit job.v1.batch/myjob -o json\n"
531"\n"
532"\t\t# Edit the deployment 'mydeployment' in YAML and save the modified "
533"config in its annotation\n"
534"\t\tkubectl edit deployment/mydeployment -o yaml --save-config"
535msgstr ""
536
537#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:44
538msgid ""
539"\n"
540"\t\t# Get output from running pod mypod; use the 'kubectl.kubernetes.io/"
541"default-container' annotation\n"
542"\t\t# for selecting the container to be attached or the first container in "
543"the pod will be chosen\n"
544"\t\tkubectl attach mypod\n"
545"\n"
546"\t\t# Get output from ruby-container from pod mypod\n"
547"\t\tkubectl attach mypod -c ruby-container\n"
548"\n"
549"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container "
550"from pod mypod\n"
551"\t\t# and sends stdout/stderr from 'bash' back to the client\n"
552"\t\tkubectl attach mypod -c ruby-container -i -t\n"
553"\n"
554"\t\t# Get output from the first pod of a replica set named nginx\n"
555"\t\tkubectl attach rs/nginx\n"
556"\t\t"
557msgstr ""
558
559#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:48
560msgid ""
561"\n"
562"\t\t# Get output from running the 'date' command from pod mypod, using the "
563"first container by default\n"
564"\t\tkubectl exec mypod -- date\n"
565"\n"
566"\t\t# Get output from running the 'date' command in ruby-container from pod "
567"mypod\n"
568"\t\tkubectl exec mypod -c ruby-container -- date\n"
569"\n"
570"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container "
571"from pod mypod\n"
572"\t\t# and sends stdout/stderr from 'bash' back to the client\n"
573"\t\tkubectl exec mypod -c ruby-container -i -t -- bash -il\n"
574"\n"
575"\t\t# List contents of /usr from the first container of pod mypod and sort "
576"by modification time\n"
577"\t\t# If the command you want to execute in the pod has any flags in common "
578"(e.g. -i),\n"
579"\t\t# you must use two dashes (--) to separate your command's flags/"
580"arguments\n"
581"\t\t# Also note, do not surround your command and its flags/arguments with "
582"quotes\n"
583"\t\t# unless that is how you would execute it normally (i.e., do ls -t /usr, "
584"not \"ls -t /usr\")\n"
585"\t\tkubectl exec mypod -i -t -- ls -t /usr\n"
586"\n"
587"\t\t# Get output from running 'date' command from the first pod of the "
588"deployment mydeployment, using the first container by default\n"
589"\t\tkubectl exec deploy/mydeployment -- date\n"
590"\n"
591"\t\t# Get output from running 'date' command from the first pod of the "
592"service myservice, using the first container by default\n"
593"\t\tkubectl exec svc/myservice -- date\n"
594"\t\t"
595msgstr ""
596
597#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:46
598msgid ""
599"\n"
600"\t\t# Get the documentation of the resource and its fields\n"
601"\t\tkubectl explain pods\n"
602"\n"
603"\t\t# Get the documentation of a specific field of a resource\n"
604"\t\tkubectl explain pods.spec.containers"
605msgstr ""
606
607#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:65
608msgid ""
609"\n"
610"\t\t# Installing bash completion on macOS using homebrew\n"
611"\t\t## If running Bash 3.2 included with macOS\n"
612"\t\t    brew install bash-completion\n"
613"\t\t## or, if running Bash 4.1+\n"
614"\t\t    brew install bash-completion@2\n"
615"\t\t## If kubectl is installed via homebrew, this should start working "
616"immediately\n"
617"\t\t## If you've installed via other means, you may need add the completion "
618"to your completion directory\n"
619"\t\t    kubectl completion bash > $(brew --prefix)/etc/bash_completion.d/"
620"kubectl\n"
621"\n"
622"\n"
623"\t\t# Installing bash completion on Linux\n"
624"\t\t## If bash-completion is not installed on Linux, install the 'bash-"
625"completion' package\n"
626"\t\t## via your distribution's package manager.\n"
627"\t\t## Load the kubectl completion code for bash into the current shell\n"
628"\t\t    source <(kubectl completion bash)\n"
629"\t\t## Write bash completion code to a file and source it from ."
630"bash_profile\n"
631"\t\t    kubectl completion bash > ~/.kube/completion.bash.inc\n"
632"\t\t    printf \"\n"
633"\t\t      # Kubectl shell completion\n"
634"\t\t      source '$HOME/.kube/completion.bash.inc'\n"
635"\t\t      \" >> $HOME/.bash_profile\n"
636"\t\t    source $HOME/.bash_profile\n"
637"\n"
638"\t\t# Load the kubectl completion code for zsh[1] into the current shell\n"
639"\t\t    source <(kubectl completion zsh)\n"
640"\t\t# Set the kubectl completion code for zsh[1] to autoload on startup\n"
641"\t\t    kubectl completion zsh > \"${fpath[1]}/_kubectl\""
642msgstr ""
643
644#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:105
645msgid ""
646"\n"
647"\t\t# List all pods in ps output format\n"
648"\t\tkubectl get pods\n"
649"\n"
650"\t\t# List all pods in ps output format with more information (such as node "
651"name)\n"
652"\t\tkubectl get pods -o wide\n"
653"\n"
654"\t\t# List a single replication controller with specified NAME in ps output "
655"format\n"
656"\t\tkubectl get replicationcontroller web\n"
657"\n"
658"\t\t# List deployments in JSON output format, in the \"v1\" version of the "
659"\"apps\" API group\n"
660"\t\tkubectl get deployments.v1.apps -o json\n"
661"\n"
662"\t\t# List a single pod in JSON output format\n"
663"\t\tkubectl get -o json pod web-pod-13je7\n"
664"\n"
665"\t\t# List a pod identified by type and name specified in \"pod.yaml\" in "
666"JSON output format\n"
667"\t\tkubectl get -f pod.yaml -o json\n"
668"\n"
669"\t\t# List resources from a directory with kustomization.yaml - e.g. dir/"
670"kustomization.yaml\n"
671"\t\tkubectl get -k dir/\n"
672"\n"
673"\t\t# Return only the phase value of the specified pod\n"
674"\t\tkubectl get -o template pod/web-pod-13je7 --template={{.status.phase}}\n"
675"\n"
676"\t\t# List resource information in custom columns\n"
677"\t\tkubectl get pod test-pod -o custom-columns=CONTAINER:.spec.containers[0]."
678"name,IMAGE:.spec.containers[0].image\n"
679"\n"
680"\t\t# List all replication controllers and services together in ps output "
681"format\n"
682"\t\tkubectl get rc,services\n"
683"\n"
684"\t\t# List one or more resources by their type and names\n"
685"\t\tkubectl get rc/web service/frontend pods/web-pod-13je7"
686msgstr ""
687
688#: staging/src/k8s.io/kubectl/pkg/cmd/portforward/portforward.go:72
689msgid ""
690"\n"
691"\t\t# Listen on ports 5000 and 6000 locally, forwarding data to/from ports "
692"5000 and 6000 in the pod\n"
693"\t\tkubectl port-forward pod/mypod 5000 6000\n"
694"\n"
695"\t\t# Listen on ports 5000 and 6000 locally, forwarding data to/from ports "
696"5000 and 6000 in a pod selected by the deployment\n"
697"\t\tkubectl port-forward deployment/mydeployment 5000 6000\n"
698"\n"
699"\t\t# Listen on port 8443 locally, forwarding to the targetPort of the "
700"service's port named \"https\" in a pod selected by the service\n"
701"\t\tkubectl port-forward service/myservice 8443:https\n"
702"\n"
703"\t\t# Listen on port 8888 locally, forwarding to 5000 in the pod\n"
704"\t\tkubectl port-forward pod/mypod 8888:5000\n"
705"\n"
706"\t\t# Listen on port 8888 on all addresses, forwarding to 5000 in the pod\n"
707"\t\tkubectl port-forward --address 0.0.0.0 pod/mypod 8888:5000\n"
708"\n"
709"\t\t# Listen on port 8888 on localhost and selected IP, forwarding to 5000 "
710"in the pod\n"
711"\t\tkubectl port-forward --address localhost,10.19.21.23 pod/mypod "
712"8888:5000\n"
713"\n"
714"\t\t# Listen on a random port locally, forwarding to 5000 in the pod\n"
715"\t\tkubectl port-forward pod/mypod :5000"
716msgstr ""
717
718#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:87
719msgid ""
720"\n"
721"\t\t# Mark node \"foo\" as schedulable\n"
722"\t\tkubectl uncordon foo"
723msgstr ""
724
725#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:58
726msgid ""
727"\n"
728"\t\t# Mark node \"foo\" as unschedulable\n"
729"\t\tkubectl cordon foo"
730msgstr ""
731
732#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:83
733msgid ""
734"\n"
735"\t\t# Partially update a node using a strategic merge patch, specifying the "
736"patch as JSON\n"
737"\t\tkubectl patch node k8s-node-1 -p '{\"spec\":{\"unschedulable\":true}}'\n"
738"\n"
739"\t\t# Partially update a node using a strategic merge patch, specifying the "
740"patch as YAML\n"
741"\t\tkubectl patch node k8s-node-1 -p $'spec:\n"
742" unschedulable: true'\n"
743"\n"
744"\t\t# Partially update a node identified by the type and name specified in "
745"\"node.json\" using strategic merge patch\n"
746"\t\tkubectl patch -f node.json -p '{\"spec\":{\"unschedulable\":true}}'\n"
747"\n"
748"\t\t# Update a container's image; spec.containers[*].name is required "
749"because it's a merge key\n"
750"\t\tkubectl patch pod valid-pod -p '{\"spec\":{\"containers\":[{\"name\":"
751"\"kubernetes-serve-hostname\",\"image\":\"new image\"}]}}'\n"
752"\n"
753"\t\t# Update a container's image using a JSON patch with positional arrays\n"
754"\t\tkubectl patch pod valid-pod --type='json' -p='[{\"op\": \"replace\", "
755"\"path\": \"/spec/containers/0/image\", \"value\":\"new image\"}]'"
756msgstr ""
757
758#: staging/src/k8s.io/kubectl/pkg/cmd/options/options.go:29
759msgid ""
760"\n"
761"\t\t# Print flags inherited by all commands\n"
762"\t\tkubectl options"
763msgstr ""
764
765#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo.go:44
766msgid ""
767"\n"
768"\t\t# Print the address of the control plane and cluster services\n"
769"\t\tkubectl cluster-info"
770msgstr ""
771
772#: staging/src/k8s.io/kubectl/pkg/cmd/version/version.go:44
773msgid ""
774"\n"
775"\t\t# Print the client and server versions for the current context\n"
776"\t\tkubectl version"
777msgstr ""
778
779#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:34
780msgid ""
781"\n"
782"\t\t# Print the supported API versions\n"
783"\t\tkubectl api-versions"
784msgstr ""
785
786#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:56
787msgid ""
788"\n"
789"\t\t# Replace a pod using the data in pod.json\n"
790"\t\tkubectl replace -f ./pod.json\n"
791"\n"
792"\t\t# Replace a pod based on the JSON passed into stdin\n"
793"\t\tcat pod.json | kubectl replace -f -\n"
794"\n"
795"\t\t# Update a single-container pod's image version (tag) to v4\n"
796"\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' | "
797"kubectl replace -f -\n"
798"\n"
799"\t\t# Force replace, delete and then re-create the resource\n"
800"\t\tkubectl replace --force -f ./pod.json"
801msgstr ""
802
803#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:53
804msgid ""
805"\n"
806"\t\t# Return snapshot logs from pod nginx with only one container\n"
807"\t\tkubectl logs nginx\n"
808"\n"
809"\t\t# Return snapshot logs from pod nginx with multi containers\n"
810"\t\tkubectl logs nginx --all-containers=true\n"
811"\n"
812"\t\t# Return snapshot logs from all containers in pods defined by label "
813"app=nginx\n"
814"\t\tkubectl logs -l app=nginx --all-containers=true\n"
815"\n"
816"\t\t# Return snapshot of previous terminated ruby container logs from pod "
817"web-1\n"
818"\t\tkubectl logs -p -c ruby web-1\n"
819"\n"
820"\t\t# Begin streaming the logs of the ruby container in pod web-1\n"
821"\t\tkubectl logs -f -c ruby web-1\n"
822"\n"
823"\t\t# Begin streaming the logs from all containers in pods defined by label "
824"app=nginx\n"
825"\t\tkubectl logs -f -l app=nginx --all-containers=true\n"
826"\n"
827"\t\t# Display only the most recent 20 lines of output in pod nginx\n"
828"\t\tkubectl logs --tail=20 nginx\n"
829"\n"
830"\t\t# Show all logs from pod nginx written in the last hour\n"
831"\t\tkubectl logs --since=1h nginx\n"
832"\n"
833"\t\t# Show logs from a kubelet with an expired serving certificate\n"
834"\t\tkubectl logs --insecure-skip-tls-verify-backend nginx\n"
835"\n"
836"\t\t# Return snapshot logs from first container of a job named hello\n"
837"\t\tkubectl logs job/hello\n"
838"\n"
839"\t\t# Return snapshot logs from container nginx-1 of a deployment named "
840"nginx\n"
841"\t\tkubectl logs deployment/nginx -c nginx-1"
842msgstr ""
843
844#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:49
845msgid ""
846"\n"
847"\t\t# Scale a replica set named 'foo' to 3\n"
848"\t\tkubectl scale --replicas=3 rs/foo\n"
849"\n"
850"\t\t# Scale a resource identified by type and name specified in \"foo.yaml\" "
851"to 3\n"
852"\t\tkubectl scale --replicas=3 -f foo.yaml\n"
853"\n"
854"\t\t# If the deployment named mysql's current size is 2, scale mysql to 3\n"
855"\t\tkubectl scale --current-replicas=2 --replicas=3 deployment/mysql\n"
856"\n"
857"\t\t# Scale multiple replication controllers\n"
858"\t\tkubectl scale --replicas=5 rc/foo rc/bar rc/baz\n"
859"\n"
860"\t\t# Scale stateful set named 'web' to 3\n"
861"\t\tkubectl scale --replicas=3 statefulset/web"
862msgstr ""
863
864#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:75
865msgid ""
866"\n"
867"\t\t# Set the last-applied-configuration of a resource to match the contents "
868"of a file\n"
869"\t\tkubectl apply set-last-applied -f deploy.yaml\n"
870"\n"
871"\t\t# Execute set-last-applied against each configuration file in a "
872"directory\n"
873"\t\tkubectl apply set-last-applied -f path/\n"
874"\n"
875"\t\t# Set the last-applied-configuration of a resource to match the contents "
876"of a file; will create the annotation if it does not already exist\n"
877"\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n"
878"\t\t"
879msgstr ""
880
881#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:75
882msgid ""
883"\n"
884"\t\t# Show metrics for all pods in the default namespace\n"
885"\t\tkubectl top pod\n"
886"\n"
887"\t\t# Show metrics for all pods in the given namespace\n"
888"\t\tkubectl top pod --namespace=NAMESPACE\n"
889"\n"
890"\t\t# Show metrics for a given pod and its containers\n"
891"\t\tkubectl top pod POD_NAME --containers\n"
892"\n"
893"\t\t# Show metrics for the pods defined by label name=myLabel\n"
894"\t\tkubectl top pod -l name=myLabel"
895msgstr ""
896
897#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:62
898msgid ""
899"\n"
900"\t\t# Start a nginx pod\n"
901"\t\tkubectl run nginx --image=nginx\n"
902"\n"
903"\t\t# Start a hazelcast pod and let the container expose port 5701\n"
904"\t\tkubectl run hazelcast --image=hazelcast/hazelcast --port=5701\n"
905"\n"
906"\t\t# Start a hazelcast pod and set environment variables "
907"\"DNS_DOMAIN=cluster\" and \"POD_NAMESPACE=default\" in the container\n"
908"\t\tkubectl run hazelcast --image=hazelcast/hazelcast --env="
909"\"DNS_DOMAIN=cluster\" --env=\"POD_NAMESPACE=default\"\n"
910"\n"
911"\t\t# Start a hazelcast pod and set labels \"app=hazelcast\" and \"env=prod"
912"\" in the container\n"
913"\t\tkubectl run hazelcast --image=hazelcast/hazelcast --labels="
914"\"app=hazelcast,env=prod\"\n"
915"\n"
916"\t\t# Dry run; print the corresponding API objects without creating them\n"
917"\t\tkubectl run nginx --image=nginx --dry-run=client\n"
918"\n"
919"\t\t# Start a nginx pod, but overload the spec with a partial set of values "
920"parsed from JSON\n"
921"\t\tkubectl run nginx --image=nginx --overrides='{ \"apiVersion\": \"v1\", "
922"\"spec\": { ... } }'\n"
923"\n"
924"\t\t# Start a busybox pod and keep it in the foreground, don't restart it if "
925"it exits\n"
926"\t\tkubectl run -i -t busybox --image=busybox --restart=Never\n"
927"\n"
928"\t\t# Start the nginx pod using the default command, but use custom "
929"arguments (arg1 .. argN) for that command\n"
930"\t\tkubectl run nginx --image=nginx -- <arg1> <arg2> ... <argN>\n"
931"\n"
932"\t\t# Start the nginx pod using a different command and custom arguments\n"
933"\t\tkubectl run nginx --image=nginx --command -- <cmd> <arg1> ... <argN>"
934msgstr ""
935
936#: staging/src/k8s.io/kubectl/pkg/cmd/proxy/proxy.go:73
937msgid ""
938"\n"
939"\t\t# To proxy all of the Kubernetes API and nothing else\n"
940"\t\tkubectl proxy --api-prefix=/\n"
941"\n"
942"\t\t# To proxy only part of the Kubernetes API and also some static files\n"
943"\t\t# You can get pods info with 'curl localhost:8001/api/v1/pods'\n"
944"\t\tkubectl proxy --www=/my/files --www-prefix=/static/ --api-prefix=/api/\n"
945"\n"
946"\t\t# To proxy the entire Kubernetes API at a different root\n"
947"\t\t# You can get pods info with 'curl localhost:8001/custom/api/v1/pods'\n"
948"\t\tkubectl proxy --api-prefix=/custom/\n"
949"\n"
950"\t\t# Run a proxy to the Kubernetes API server on port 8011, serving static "
951"content from ./local/www/\n"
952"\t\tkubectl proxy --port=8011 --www=./local/www/\n"
953"\n"
954"\t\t# Run a proxy to the Kubernetes API server on an arbitrary local port\n"
955"\t\t# The chosen port for the server will be output to stdout\n"
956"\t\tkubectl proxy --port=0\n"
957"\n"
958"\t\t# Run a proxy to the Kubernetes API server, changing the API prefix to "
959"k8s-api\n"
960"\t\t# This makes e.g. the pods API available at localhost:8001/k8s-api/v1/"
961"pods/\n"
962"\t\tkubectl proxy --api-prefix=/k8s-api"
963msgstr ""
964
965#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:80
966msgid ""
967"\n"
968"\t\t# Update node 'foo' with a taint with key 'dedicated' and value 'special-"
969"user' and effect 'NoSchedule'\n"
970"\t\t# If a taint with that key and effect already exists, its value is "
971"replaced as specified\n"
972"\t\tkubectl taint nodes foo dedicated=special-user:NoSchedule\n"
973"\n"
974"\t\t# Remove from node 'foo' the taint with key 'dedicated' and effect "
975"'NoSchedule' if one exists\n"
976"\t\tkubectl taint nodes foo dedicated:NoSchedule-\n"
977"\n"
978"\t\t# Remove from node 'foo' all the taints with key 'dedicated'\n"
979"\t\tkubectl taint nodes foo dedicated-\n"
980"\n"
981"\t\t# Add a taint with key 'dedicated' on nodes having label mylabel=X\n"
982"\t\tkubectl taint node -l myLabel=X  dedicated=foo:PreferNoSchedule\n"
983"\n"
984"\t\t# Add to node 'foo' a taint with key 'bar' and no value\n"
985"\t\tkubectl taint nodes foo bar:NoSchedule"
986msgstr ""
987
988#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:95
989msgid ""
990"\n"
991"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'\n"
992"\t\tkubectl label pods foo unhealthy=true\n"
993"\n"
994"\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', "
995"overwriting any existing value\n"
996"\t\tkubectl label --overwrite pods foo status=unhealthy\n"
997"\n"
998"\t\t# Update all pods in the namespace\n"
999"\t\tkubectl label pods --all status=unhealthy\n"
1000"\n"
1001"\t\t# Update a pod identified by the type and name in \"pod.json\"\n"
1002"\t\tkubectl label -f pod.json status=unhealthy\n"
1003"\n"
1004"\t\t# Update pod 'foo' only if the resource is unchanged from version 1\n"
1005"\t\tkubectl label pods foo status=unhealthy --resource-version=1\n"
1006"\n"
1007"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists\n"
1008"\t\t# Does not require the --overwrite flag\n"
1009"\t\tkubectl label pods foo bar-"
1010msgstr ""
1011
1012#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:53
1013msgid ""
1014"\n"
1015"\t\t# View the last-applied-configuration annotations by type/name in YAML\n"
1016"\t\tkubectl apply view-last-applied deployment/nginx\n"
1017"\n"
1018"\t\t# View the last-applied-configuration annotations by file in JSON\n"
1019"\t\tkubectl apply view-last-applied -f deploy.yaml -o json"
1020msgstr ""
1021
1022#: staging/src/k8s.io/kubectl/pkg/cmd/wait/wait.go:61
1023msgid ""
1024"\n"
1025"\t\t# Wait for the pod \"busybox1\" to contain the status condition of type "
1026"\"Ready\"\n"
1027"\t\tkubectl wait --for=condition=Ready pod/busybox1\n"
1028"\n"
1029"\t\t# The default value of status condition is true; you can set it to "
1030"false\n"
1031"\t\tkubectl wait --for=condition=Ready=false pod/busybox1\n"
1032"\n"
1033"\t\t# Wait for the pod \"busybox1\" to be deleted, with a timeout of 60s, "
1034"after having issued the \"delete\" command\n"
1035"\t\tkubectl delete pod/busybox1\n"
1036"\t\tkubectl wait --for=delete pod/busybox1 --timeout=60s"
1037msgstr ""
1038
1039#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:110
1040msgid ""
1041"\n"
1042"\t\tApply a configuration to a resource by file name or stdin.\n"
1043"\t\tThe resource name must be specified. This resource will be created if it "
1044"doesn't exist yet.\n"
1045"\t\tTo use 'apply', always create the resource initially with either 'apply' "
1046"or 'create --save-config'.\n"
1047"\n"
1048"\t\tJSON and YAML formats are accepted.\n"
1049"\n"
1050"\t\tAlpha Disclaimer: the --prune functionality is not yet complete. Do not "
1051"use unless you are aware of what the current state is. See https://issues."
1052"k8s.io/34274."
1053msgstr ""
1054
1055#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:126
1056msgid ""
1057"\n"
1058"\t\tApprove a certificate signing request.\n"
1059"\n"
1060"\t\tkubectl certificate approve allows a cluster admin to approve a "
1061"certificate\n"
1062"\t\tsigning request (CSR). This action tells a certificate signing "
1063"controller to\n"
1064"\t\tissue a certificate to the requestor with the attributes requested in "
1065"the CSR.\n"
1066"\n"
1067"\t\tSECURITY NOTICE: Depending on the requested attributes, the issued "
1068"certificate\n"
1069"\t\tcan potentially grant a requester access to cluster resources or to "
1070"authenticate\n"
1071"\t\tas a requested identity. Before approving a CSR, ensure you understand "
1072"what the\n"
1073"\t\tsigned certificate can do.\n"
1074"\t\t"
1075msgstr ""
1076
1077#: staging/src/k8s.io/kubectl/pkg/cmd/set/set.go:28
1078msgid ""
1079"\n"
1080"\t\tConfigure application resources.\n"
1081"\n"
1082"\t\tThese commands help you make changes to existing application resources."
1083msgstr ""
1084
1085#: pkg/kubectl/cmd/convert/convert.go:40
1086msgid ""
1087"\n"
1088"\t\tConvert config files between different API versions. Both YAML\n"
1089"\t\tand JSON formats are accepted.\n"
1090"\n"
1091"\t\tThe command takes filename, directory, or URL as input, and convert it "
1092"into format\n"
1093"\t\tof version specified by --output-version flag. If target version is not "
1094"specified or\n"
1095"\t\tnot supported, convert to latest version.\n"
1096"\n"
1097"\t\tThe default output will be printed to stdout in YAML format. One can use "
1098"-o option\n"
1099"\t\tto change to output destination."
1100msgstr ""
1101
1102#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:41
1103msgid ""
1104"\n"
1105"\t\tCreate a TLS secret from the given public/private key pair.\n"
1106"\n"
1107"\t\tThe public/private key pair must exist beforehand. The public key "
1108"certificate must be .PEM encoded and match\n"
1109"\t\tthe given private key."
1110msgstr ""
1111
1112#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:41
1113msgid ""
1114"\n"
1115"\t\tCreate a cluster role binding for a particular cluster role."
1116msgstr ""
1117
1118#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38
1119msgid ""
1120"\n"
1121"\t\tCreate a cluster role."
1122msgstr ""
1123
1124#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:46
1125msgid ""
1126"\n"
1127"\t\tCreate a config map based on a file, directory, or specified literal "
1128"value.\n"
1129"\n"
1130"\t\tA single config map may package one or more key/value pairs.\n"
1131"\n"
1132"\t\tWhen creating a config map based on a file, the key will default to the "
1133"basename of the file, and the value will\n"
1134"\t\tdefault to the file content.  If the basename is an invalid key, you may "
1135"specify an alternate key.\n"
1136"\n"
1137"\t\tWhen creating a config map based on a directory, each file whose "
1138"basename is a valid key in the directory will be\n"
1139"\t\tpackaged into the config map.  Any directory entries except regular "
1140"files are ignored (e.g. subdirectories,\n"
1141"\t\tsymlinks, devices, pipes, etc)."
1142msgstr ""
1143
1144#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_cronjob.go:40
1145msgid ""
1146"\n"
1147"\t\tCreate a cron job with the specified name."
1148msgstr ""
1149
1150#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:40
1151msgid ""
1152"\n"
1153"\t\tCreate a job with the specified name."
1154msgstr ""
1155
1156#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:39
1157msgid ""
1158"\n"
1159"\t\tCreate a namespace with the specified name."
1160msgstr ""
1161
1162#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:41
1163msgid ""
1164"\n"
1165"\t\tCreate a new secret for use with Docker registries.\n"
1166"\n"
1167"\t\tDockercfg secrets are used to authenticate against Docker registries.\n"
1168"\n"
1169"\t\tWhen using the Docker command line to push images, you can authenticate "
1170"to a given registry by running:\n"
1171"\t\t\t'$ docker login DOCKER_REGISTRY_SERVER --username=DOCKER_USER --"
1172"password=DOCKER_PASSWORD --email=DOCKER_EMAIL'.\n"
1173"\n"
1174"\tThat produces a ~/.dockercfg file that is used by subsequent 'docker push' "
1175"and 'docker pull' commands to\n"
1176"\t\tauthenticate to the registry. The email address is optional.\n"
1177"\n"
1178"\t\tWhen creating applications, you may have a Docker registry that requires "
1179"authentication.  In order for the\n"
1180"\t\tnodes to pull images on your behalf, they must have the credentials.  "
1181"You can provide this information\n"
1182"\t\tby creating a dockercfg secret and attaching it to your service account."
1183msgstr ""
1184
1185#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:41
1186msgid ""
1187"\n"
1188"\t\tCreate a pod disruption budget with the specified name, selector, and "
1189"desired minimum available pods."
1190msgstr ""
1191
1192#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:40
1193msgid ""
1194"\n"
1195"\t\tCreate a priority class with the specified name, value, globalDefault "
1196"and description."
1197msgstr ""
1198
1199#: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:71
1200msgid ""
1201"\n"
1202"\t\tCreate a resource from a file or from stdin.\n"
1203"\n"
1204"\t\tJSON and YAML formats are accepted."
1205msgstr ""
1206
1207#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:41
1208msgid ""
1209"\n"
1210"\t\tCreate a resource quota with the specified name, hard limits, and "
1211"optional scopes."
1212msgstr ""
1213
1214#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40
1215msgid ""
1216"\n"
1217"\t\tCreate a role binding for a particular role or cluster role."
1218msgstr ""
1219
1220#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:43
1221msgid ""
1222"\n"
1223"\t\tCreate a role with single rule."
1224msgstr ""
1225
1226#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:61
1227msgid ""
1228"\n"
1229"\t\tCreate a secret based on a file, directory, or specified literal value.\n"
1230"\n"
1231"\t\tA single secret may package one or more key/value pairs.\n"
1232"\n"
1233"\t\tWhen creating a secret based on a file, the key will default to the "
1234"basename of the file, and the value will\n"
1235"\t\tdefault to the file content. If the basename is an invalid key or you "
1236"wish to chose your own, you may specify\n"
1237"\t\tan alternate key.\n"
1238"\n"
1239"\t\tWhen creating a secret based on a directory, each file whose basename is "
1240"a valid key in the directory will be\n"
1241"\t\tpackaged into the secret. Any directory entries except regular files are "
1242"ignored (e.g. subdirectories,\n"
1243"\t\tsymlinks, devices, pipes, etc)."
1244msgstr ""
1245
1246#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_serviceaccount.go:40
1247msgid ""
1248"\n"
1249"\t\tCreate a service account with the specified name."
1250msgstr ""
1251
1252#: staging/src/k8s.io/kubectl/pkg/cmd/proxy/proxy.go:67
1253msgid ""
1254"\n"
1255"\t\tCreates a proxy server or application-level gateway between localhost "
1256"and\n"
1257"\t\tthe Kubernetes API server. It also allows serving static content over "
1258"specified\n"
1259"\t\tHTTP path. All incoming data enters through one port and gets forwarded "
1260"to\n"
1261"\t\tthe remote Kubernetes API server port, except for the path matching the "
1262"static content path."
1263msgstr ""
1264
1265#: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:42
1266msgid ""
1267"\n"
1268"\t\tCreates an autoscaler that automatically chooses and sets the number of "
1269"pods that run in a Kubernetes cluster.\n"
1270"\n"
1271"\t\tLooks up a deployment, replica set, stateful set, or replication "
1272"controller by name and creates an autoscaler that uses the given resource as "
1273"a reference.\n"
1274"\t\tAn autoscaler can automatically increase or decrease number of pods "
1275"deployed within the system as needed."
1276msgstr ""
1277
1278#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:57
1279msgid ""
1280"\n"
1281"\t\tDebug cluster resources using interactive debugging containers.\n"
1282"\n"
1283"\t\t'debug' provides automation for common debugging tasks for cluster "
1284"objects identified by\n"
1285"\t\tresource and name. Pods will be used by default if no resource is "
1286"specified.\n"
1287"\n"
1288"\t\tThe action taken by 'debug' varies depending on what resource is "
1289"specified. Supported\n"
1290"\t\tactions include:\n"
1291"\n"
1292"\t\t* Workload: Create a copy of an existing pod with certain attributes "
1293"changed,\n"
1294"\t                for example changing the image tag to a new version.\n"
1295"\t\t* Workload: Add an ephemeral container to an already running pod, for "
1296"example to add\n"
1297"\t\t            debugging utilities without restarting the pod.\n"
1298"\t\t* Node: Create a new pod that runs in the node's host namespaces and can "
1299"access\n"
1300"\t\t        the node's filesystem.\n"
1301msgstr ""
1302
1303#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:45
1304msgid ""
1305"\n"
1306"\t\tDelete resources by file names, stdin, resources and names, or by "
1307"resources and label selector.\n"
1308"\n"
1309"\t\tJSON and YAML formats are accepted. Only one type of argument may be "
1310"specified: file names,\n"
1311"\t\tresources and names, or resources and label selector.\n"
1312"\n"
1313"\t\tSome resources, such as pods, support graceful deletion. These resources "
1314"define a default period\n"
1315"\t\tbefore they are forcibly terminated (the grace period) but you may "
1316"override that value with\n"
1317"\t\tthe --grace-period flag, or pass --now to set a grace-period of 1. "
1318"Because these resources often\n"
1319"\t\trepresent entities in the cluster, deletion may not be acknowledged "
1320"immediately. If the node\n"
1321"\t\thosting a pod is down or cannot reach the API server, termination may "
1322"take significantly longer\n"
1323"\t\tthan the grace period. To force delete a resource, you must specify the "
1324"--force flag.\n"
1325"\t\tNote: only a subset of resources support graceful deletion. In absence "
1326"of the support,\n"
1327"\t\tthe --grace-period flag is ignored.\n"
1328"\n"
1329"\t\tIMPORTANT: Force deleting pods does not wait for confirmation that the "
1330"pod's processes have been\n"
1331"\t\tterminated, which can leave those processes running until the node "
1332"detects the deletion and\n"
1333"\t\tcompletes graceful deletion. If your processes use shared storage or "
1334"talk to a remote API and\n"
1335"\t\tdepend on the name of the pod to identify themselves, force deleting "
1336"those pods may result in\n"
1337"\t\tmultiple processes running on different machines using the same "
1338"identification which may lead\n"
1339"\t\tto data corruption or inconsistency. Only force delete pods when you are "
1340"sure the pod is\n"
1341"\t\tterminated, or if your application can tolerate multiple copies of the "
1342"same pod running at once.\n"
1343"\t\tAlso, if you force delete pods, the scheduler may place new pods on "
1344"those nodes before the node\n"
1345"\t\thas released those resources and causing those pods to be evicted "
1346"immediately.\n"
1347"\n"
1348"\t\tNote that the delete command does NOT do resource version checks, so if "
1349"someone submits an\n"
1350"\t\tupdate to a resource right when you submit a delete, their update will "
1351"be lost along with the\n"
1352"\t\trest of the resource."
1353msgstr ""
1354
1355#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:175
1356msgid ""
1357"\n"
1358"\t\tDeny a certificate signing request.\n"
1359"\n"
1360"\t\tkubectl certificate deny allows a cluster admin to deny a certificate\n"
1361"\t\tsigning request (CSR). This action tells a certificate signing "
1362"controller to\n"
1363"\t\tnot to issue a certificate to the requestor.\n"
1364"\t\t"
1365msgstr ""
1366
1367#: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:53
1368msgid ""
1369"\n"
1370"\t\tDiff configurations specified by file name or stdin between the current "
1371"online\n"
1372"\t\tconfiguration, and the configuration as it would be if applied.\n"
1373"\n"
1374"\t\tThe output is always YAML.\n"
1375"\n"
1376"\t\tKUBECTL_EXTERNAL_DIFF environment variable can be used to select your "
1377"own\n"
1378"\t\tdiff command. Users can use external commands with params too, example:\n"
1379"\t\tKUBECTL_EXTERNAL_DIFF=\"colordiff -N -u\"\n"
1380"\n"
1381"\t\tBy default, the \"diff\" command available in your path will be\n"
1382"\t\trun with the \"-u\" (unified diff) and \"-N\" (treat absent files as "
1383"empty) options.\n"
1384"\n"
1385"\t\tExit status:\n"
1386"\t\t 0\n"
1387"\t\tNo differences were found.\n"
1388"\t\t 1\n"
1389"\t\tDifferences were found.\n"
1390"\t\t >1\n"
1391"\t\tKubectl or diff failed with an error.\n"
1392"\n"
1393"\t\tNote: KUBECTL_EXTERNAL_DIFF, if used, is expected to follow that "
1394"convention."
1395msgstr ""
1396
1397#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:39
1398msgid ""
1399"\n"
1400"\t\tDisplay Resource (CPU/Memory) usage.\n"
1401"\n"
1402"\t\tThe top command allows you to see the resource consumption for nodes or "
1403"pods.\n"
1404"\n"
1405"\t\tThis command requires Metrics Server to be correctly configured and "
1406"working on the server. "
1407msgstr ""
1408
1409#: staging/src/k8s.io/kubectl/pkg/cmd/config/view.go:54
1410msgid ""
1411"\n"
1412"\t\tDisplay merged kubeconfig settings or a specified kubeconfig file.\n"
1413"\n"
1414"\t\tYou can use --output jsonpath={...} to extract specific values using a "
1415"jsonpath expression."
1416msgstr ""
1417
1418#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:92
1419msgid ""
1420"\n"
1421"\t\tDisplay one or many resources.\n"
1422"\n"
1423"\t\tPrints a table of the most important information about the specified "
1424"resources.\n"
1425"\t\tYou can filter the list using a label selector and the --selector flag. "
1426"If the\n"
1427"\t\tdesired resource type is namespaced you will only see results in your "
1428"current\n"
1429"\t\tnamespace unless you pass --all-namespaces.\n"
1430"\n"
1431"\t\tUninitialized objects are not shown unless --include-uninitialized is "
1432"passed.\n"
1433"\n"
1434"\t\tBy specifying the output as 'template' and providing a Go template as "
1435"the value\n"
1436"\t\tof the --template flag, you can filter the attributes of the fetched "
1437"resources."
1438msgstr ""
1439
1440#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:57
1441msgid ""
1442"\n"
1443"\t\tDisplay resource (CPU/memory) usage of nodes.\n"
1444"\n"
1445"\t\tThe top-node command allows you to see the resource consumption of nodes."
1446msgstr ""
1447
1448#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:67
1449msgid ""
1450"\n"
1451"\t\tDisplay resource (CPU/memory) usage of pods.\n"
1452"\n"
1453"\t\tThe 'top pod' command allows you to see the resource consumption of "
1454"pods.\n"
1455"\n"
1456"\t\tDue to the metrics pipeline delay, they may be unavailable for a few "
1457"minutes\n"
1458"\t\tsince pod creation."
1459msgstr ""
1460
1461#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:37
1462msgid ""
1463"\n"
1464"\t\tDisplay the current-context."
1465msgstr ""
1466
1467#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:113
1468msgid ""
1469"\n"
1470"\t\tDrain node in preparation for maintenance.\n"
1471"\n"
1472"\t\tThe given node will be marked unschedulable to prevent new pods from "
1473"arriving.\n"
1474"\t\t'drain' evicts the pods if the API server supports\n"
1475"\t\t[eviction](https://kubernetes.io/docs/concepts/workloads/pods/"
1476"disruptions/). Otherwise, it will use normal\n"
1477"\t\tDELETE to delete the pods.\n"
1478"\t\tThe 'drain' evicts or deletes all pods except mirror pods (which cannot "
1479"be deleted through\n"
1480"\t\tthe API server).  If there are daemon set-managed pods, drain will not "
1481"proceed\n"
1482"\t\twithout --ignore-daemonsets, and regardless it will not delete any\n"
1483"\t\tdaemon set-managed pods, because those pods would be immediately "
1484"replaced by the\n"
1485"\t\tdaemon set controller, which ignores unschedulable markings.  If there "
1486"are any\n"
1487"\t\tpods that are neither mirror pods nor managed by a replication "
1488"controller,\n"
1489"\t\treplica set, daemon set, stateful set, or job, then drain will not "
1490"delete any pods unless you\n"
1491"\t\tuse --force.  --force will also allow deletion to proceed if the "
1492"managing resource of one\n"
1493"\t\tor more pods is missing.\n"
1494"\n"
1495"\t\t'drain' waits for graceful termination. You should not operate on the "
1496"machine until\n"
1497"\t\tthe command completes.\n"
1498"\n"
1499"\t\tWhen you are ready to put the node back into service, use kubectl "
1500"uncordon, which\n"
1501"\t\twill make the node schedulable again.\n"
1502"\n"
1503"\t\t![Workflow](https://kubernetes.io/images/docs/kubectl_drain.svg)"
1504msgstr ""
1505
1506#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:31
1507msgid ""
1508"\n"
1509"\t\tEdit a resource from the default editor.\n"
1510"\n"
1511"\t\tThe edit command allows you to directly edit any API resource you can "
1512"retrieve via the\n"
1513"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, "
1514"or EDITOR\n"
1515"\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for "
1516"Windows.\n"
1517"\t\tYou can edit multiple objects, although changes are applied one at a "
1518"time. The command\n"
1519"\t\taccepts file names as well as command-line arguments, although the files "
1520"you point to must\n"
1521"\t\tbe previously saved versions of resources.\n"
1522"\n"
1523"\t\tEditing is done with the API version used to fetch the resource.\n"
1524"\t\tTo edit using a specific API version, fully-qualify the resource, "
1525"version, and group.\n"
1526"\n"
1527"\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n"
1528"\n"
1529"\t\tThe flag --windows-line-endings can be used to force Windows line "
1530"endings,\n"
1531"\t\totherwise the default for your operating system will be used.\n"
1532"\n"
1533"\t\tIn the event an error occurs while updating, a temporary file will be "
1534"created on disk\n"
1535"\t\tthat contains your unapplied changes. The most common error when "
1536"updating a resource\n"
1537"\t\tis another editor changing the resource on the server. When this occurs, "
1538"you will have\n"
1539"\t\tto apply your changes to the newer version of the resource, or update "
1540"your temporary\n"
1541"\t\tsaved copy to include the latest resource version."
1542msgstr ""
1543
1544#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_edit_last_applied.go:31
1545msgid ""
1546"\n"
1547"\t\tEdit the latest last-applied-configuration annotations of resources from "
1548"the default editor.\n"
1549"\n"
1550"\t\tThe edit-last-applied command allows you to directly edit any API "
1551"resource you can retrieve via the\n"
1552"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, "
1553"or EDITOR\n"
1554"\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for "
1555"Windows.\n"
1556"\t\tYou can edit multiple objects, although changes are applied one at a "
1557"time. The command\n"
1558"\t\taccepts file names as well as command-line arguments, although the files "
1559"you point to must\n"
1560"\t\tbe previously saved versions of resources.\n"
1561"\n"
1562"\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n"
1563"\n"
1564"\t\tThe flag --windows-line-endings can be used to force Windows line "
1565"endings,\n"
1566"\t\totherwise the default for your operating system will be used.\n"
1567"\n"
1568"\t\tIn the event an error occurs while updating, a temporary file will be "
1569"created on disk\n"
1570"\t\tthat contains your unapplied changes. The most common error when "
1571"updating a resource\n"
1572"\t\tis another editor changing the resource on the server. When this occurs, "
1573"you will have\n"
1574"\t\tto apply your changes to the newer version of the resource, or update "
1575"your temporary\n"
1576"\t\tsaved copy to include the latest resource version."
1577msgstr ""
1578
1579#: staging/src/k8s.io/kubectl/pkg/cmd/wait/wait.go:49
1580msgid ""
1581"\n"
1582"\t\tExperimental: Wait for a specific condition on one or many resources.\n"
1583"\n"
1584"\t\tThe command takes multiple resources and waits until the specified "
1585"condition\n"
1586"\t\tis seen in the Status field of every given resource.\n"
1587"\n"
1588"\t\tAlternatively, the command can wait for the given set of resources to be "
1589"deleted\n"
1590"\t\tby providing the \"delete\" keyword as the value to the --for flag.\n"
1591"\n"
1592"\t\tA successful message will be printed to stdout indicating when the "
1593"specified\n"
1594"        condition has been met. You can use -o option to change to output "
1595"destination."
1596msgstr ""
1597
1598#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:47
1599msgid ""
1600"\n"
1601"\t\tExpose a resource as a new Kubernetes service.\n"
1602"\n"
1603"\t\tLooks up a deployment, service, replica set, replication controller or "
1604"pod by name and uses the selector\n"
1605"\t\tfor that resource as the selector for a new service on the specified "
1606"port. A deployment or replica set\n"
1607"\t\twill be exposed as a service only if its selector is convertible to a "
1608"selector that service supports,\n"
1609"\t\ti.e. when the selector contains only the matchLabels component. Note "
1610"that if no port is specified via\n"
1611"\t\t--port and the exposed resource has multiple ports, all will be re-used "
1612"by the new service. Also if no\n"
1613"\t\tlabels are specified, the new service will re-use the labels from the "
1614"resource it exposes.\n"
1615"\n"
1616"\t\tPossible resources include (case insensitive):\n"
1617"\n"
1618"\t\t"
1619msgstr ""
1620
1621#: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:46
1622msgid ""
1623"\n"
1624"\t\tList all available plugin files on a user's PATH.\n"
1625"\n"
1626"\t\tAvailable plugin files are those that are:\n"
1627"\t\t- executable\n"
1628"\t\t- anywhere on the user's PATH\n"
1629"\t\t- begin with \"kubectl-\"\n"
1630msgstr ""
1631
1632#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:35
1633msgid ""
1634"\n"
1635"\t\tList the fields for supported resources.\n"
1636"\n"
1637"\t\tThis command describes the fields associated with each supported API "
1638"resource.\n"
1639"\t\tFields are identified via a simple JSONPath identifier:\n"
1640"\n"
1641"\t\t\t<type>.<fieldName>[.<fieldName>]\n"
1642"\n"
1643"\t\tAdd the --recursive flag to display all of the fields at once without "
1644"descriptions.\n"
1645"\t\tInformation about each field is retrieved from the server in OpenAPI "
1646"format."
1647msgstr ""
1648
1649#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout.go:30
1650msgid ""
1651"\n"
1652"\t\tManage the rollout of a resource."
1653msgstr ""
1654
1655#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:84
1656msgid ""
1657"\n"
1658"\t\tMark node as schedulable."
1659msgstr ""
1660
1661#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:55
1662msgid ""
1663"\n"
1664"\t\tMark node as unschedulable."
1665msgstr ""
1666
1667#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:57
1668msgid ""
1669"\n"
1670"\t\tMark the provided resource as paused.\n"
1671"\n"
1672"\t\tPaused resources will not be reconciled by a controller.\n"
1673"\t\tUse \"kubectl rollout resume\" to resume a paused resource.\n"
1674"\t\tCurrently only deployments support being paused."
1675msgstr ""
1676
1677#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:46
1678msgid ""
1679"\n"
1680"\t\tOutput shell completion code for the specified shell (bash or zsh).\n"
1681"\t\tThe shell code must be evaluated to provide interactive\n"
1682"\t\tcompletion of kubectl commands.  This can be done by sourcing it from\n"
1683"\t\tthe .bash_profile.\n"
1684"\n"
1685"\t\tDetailed instructions on how to do this are available here:\n"
1686"\n"
1687"        for macOS:\n"
1688"        https://kubernetes.io/docs/tasks/tools/install-kubectl-macos/#enable-"
1689"shell-autocompletion\n"
1690"\n"
1691"        for linux:\n"
1692"        https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/#enable-"
1693"shell-autocompletion\n"
1694"\n"
1695"        for windows:\n"
1696"        https://kubernetes.io/docs/tasks/tools/install-kubectl-windows/"
1697"#enable-shell-autocompletion\n"
1698"\n"
1699"\t\tNote for zsh users: [1] zsh completions are only supported in versions "
1700"of zsh >= 5.2."
1701msgstr ""
1702
1703#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:49
1704msgid ""
1705"\n"
1706"\t\tPrint the logs for a container in a pod or specified resource. \n"
1707"\t\tIf the pod has only one container, the container name is optional."
1708msgstr ""
1709
1710#: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:37
1711msgid ""
1712"\n"
1713"\t\tProvides utilities for interacting with plugins.\n"
1714"\n"
1715"\t\tPlugins provide extended functionality that is not part of the major "
1716"command-line distribution.\n"
1717"\t\tPlease refer to the documentation and examples for more information "
1718"about how write your own plugins.\n"
1719"\n"
1720"\t\tThe easiest way to discover and install plugins is via the kubernetes "
1721"sub-project krew.\n"
1722"\t\tTo install krew, visit [krew.sigs.k8s.io](https://krew.sigs.k8s.io/docs/"
1723"user-guide/setup/install/)"
1724msgstr ""
1725
1726#: staging/src/k8s.io/kubectl/pkg/cmd/config/rename_context.go:47
1727msgid ""
1728"\n"
1729"\t\tRenames a context from the kubeconfig file.\n"
1730"\n"
1731"\t\tCONTEXT_NAME is the context name that you want to change.\n"
1732"\n"
1733"\t\tNEW_NAME is the new name you want to set.\n"
1734"\n"
1735"\t\tNote: If the context being renamed is the 'current-context', this field "
1736"will also be updated."
1737msgstr ""
1738
1739#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:48
1740msgid ""
1741"\n"
1742"\t\tReplace a resource by file name or stdin.\n"
1743"\n"
1744"\t\tJSON and YAML formats are accepted. If replacing an existing resource, "
1745"the\n"
1746"\t\tcomplete resource spec must be provided. This can be obtained by\n"
1747"\n"
1748"\t\t    $ kubectl get TYPE NAME -o yaml"
1749msgstr ""
1750
1751#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_restart.go:57
1752msgid ""
1753"\n"
1754"\t\tRestart a resource.\n"
1755"\n"
1756"\t        Resource rollout will be restarted."
1757msgstr ""
1758
1759#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:58
1760msgid ""
1761"\n"
1762"\t\tResume a paused resource.\n"
1763"\n"
1764"\t\tPaused resources will not be reconciled by a controller. By resuming a\n"
1765"\t\tresource, we allow it to be reconciled again.\n"
1766"\t\tCurrently only deployments support being resumed."
1767msgstr ""
1768
1769#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:55
1770msgid ""
1771"\n"
1772"\t\tRoll back to a previous rollout."
1773msgstr ""
1774
1775#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:47
1776msgid ""
1777"\n"
1778"\t\tSet a cluster entry in kubeconfig.\n"
1779"\n"
1780"\t\tSpecifying a name that already exists will merge new fields on top of "
1781"existing values for those fields."
1782msgstr ""
1783
1784#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:44
1785msgid ""
1786"\n"
1787"\t\tSet a context entry in kubeconfig.\n"
1788"\n"
1789"\t\tSpecifying a name that already exists will merge new fields on top of "
1790"existing values for those fields."
1791msgstr ""
1792
1793#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:40
1794msgid ""
1795"\n"
1796"\t\tSet a new size for a deployment, replica set, replication controller, or "
1797"stateful set.\n"
1798"\n"
1799"\t\tScale also allows users to specify one or more preconditions for the "
1800"scale action.\n"
1801"\n"
1802"\t\tIf --current-replicas or --resource-version is specified, it is "
1803"validated before the\n"
1804"\t\tscale is attempted, and it is guaranteed that the precondition holds "
1805"true when the\n"
1806"\t\tscale is sent to the server."
1807msgstr ""
1808
1809#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:70
1810#, c-format
1811msgid ""
1812"\n"
1813"\t\tSet a user entry in kubeconfig.\n"
1814"\n"
1815"\t\tSpecifying a name that already exists will merge new fields on top of "
1816"existing values.\n"
1817"\n"
1818"\t\t    Client-certificate flags:\n"
1819"\t\t    --%v=certfile --%v=keyfile\n"
1820"\n"
1821"\t\t    Bearer token flags:\n"
1822"\t\t\t  --%v=bearer_token\n"
1823"\n"
1824"\t\t    Basic auth flags:\n"
1825"\t\t\t  --%v=basic_user --%v=basic_password\n"
1826"\n"
1827"\t\tBearer token and basic auth are mutually exclusive."
1828msgstr ""
1829
1830#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:70
1831msgid ""
1832"\n"
1833"\t\tSet the latest last-applied-configuration annotations by setting it to "
1834"match the contents of a file.\n"
1835"\t\tThis results in the last-applied-configuration being updated as though "
1836"'kubectl apply -f <file>' was run,\n"
1837"\t\twithout updating any other parts of the object."
1838msgstr ""
1839
1840#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_selector.go:67
1841#, c-format
1842msgid ""
1843"\n"
1844"\t\tSet the selector on a resource. Note that the new selector will "
1845"overwrite the old selector if the resource had one prior to the invocation\n"
1846"\t\tof 'set selector'.\n"
1847"\n"
1848"\t\tA selector must begin with a letter or number, and may contain letters, "
1849"numbers, hyphens, dots, and underscores, up to %[1]d characters.\n"
1850"\t\tIf --resource-version is specified, then updates will use this resource "
1851"version, otherwise the existing resource-version will be used.\n"
1852"        Note: currently selectors can only be set on Service objects."
1853msgstr ""
1854
1855#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:39
1856msgid ""
1857"\n"
1858"\t\tShow details of a specific resource or group of resources.\n"
1859"\n"
1860"\t\tPrint a detailed description of the selected resources, including "
1861"related resources such\n"
1862"\t\tas events or controllers. You may select a single object by name, all "
1863"objects of that\n"
1864"\t\ttype, provide a name prefix, or label selector. For example:\n"
1865"\n"
1866"\t\t    $ kubectl describe TYPE NAME_PREFIX\n"
1867"\n"
1868"\t\twill first check for an exact match on TYPE and NAME_PREFIX. If no such "
1869"resource\n"
1870"\t\texists, it will output details for every resource that has a name "
1871"prefixed with NAME_PREFIX."
1872msgstr ""
1873
1874#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:47
1875msgid ""
1876"\n"
1877"\t\tShow the status of the rollout.\n"
1878"\n"
1879"\t\tBy default 'rollout status' will watch the status of the latest rollout\n"
1880"\t\tuntil it's done. If you don't want to wait for the rollout to finish "
1881"then\n"
1882"\t\tyou can use --watch=false. Note that if a new rollout starts in-between, "
1883"then\n"
1884"\t\t'rollout status' will continue watching the latest revision. If you want "
1885"to\n"
1886"\t\tpin to a specific revision and abort if it is rolled over by another "
1887"revision,\n"
1888"\t\tuse --revision=N where N is the revision you need to watch for."
1889msgstr ""
1890
1891#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_resources.go:41
1892#, c-format
1893msgid ""
1894"\n"
1895"\t\tSpecify compute resource requirements (CPU, memory) for any resource "
1896"that defines a pod template.  If a pod is successfully scheduled, it is "
1897"guaranteed the amount of resource requested, but may burst up to its "
1898"specified limits.\n"
1899"\n"
1900"\t\tFor each compute resource, if a limit is specified and a request is "
1901"omitted, the request will default to the limit.\n"
1902"\n"
1903"\t\tPossible resources include (case insensitive): %s."
1904msgstr ""
1905
1906#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_env.go:50
1907msgid ""
1908"\n"
1909"\t\tUpdate environment variables on a pod template.\n"
1910"\n"
1911"\t\tList environment variable definitions in one or more pods, pod "
1912"templates.\n"
1913"\t\tAdd, update, or remove container environment variable definitions in one "
1914"or\n"
1915"\t\tmore pod templates (within replication controllers or deployment "
1916"configurations).\n"
1917"\t\tView or modify the environment variable definitions on all containers in "
1918"the\n"
1919"\t\tspecified pods or pod templates, or just those that match a wildcard.\n"
1920"\n"
1921"\t\tIf \"--env -\" is passed, environment variables can be read from STDIN "
1922"using the standard env\n"
1923"\t\tsyntax.\n"
1924"\n"
1925"\t\tPossible resources include (case insensitive):\n"
1926"\t\t"
1927msgstr ""
1928
1929#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:71
1930msgid ""
1931"\n"
1932"\t\tUpdate existing container image(s) of resources.\n"
1933"\n"
1934"\t\tPossible resources include (case insensitive):\n"
1935"\t\t"
1936msgstr ""
1937
1938#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:78
1939msgid ""
1940"\n"
1941"\t\tUpdate fields of a resource using strategic merge patch, a JSON merge "
1942"patch, or a JSON patch.\n"
1943"\n"
1944"\t\tJSON and YAML formats are accepted."
1945msgstr ""
1946
1947#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:83
1948msgid ""
1949"\n"
1950"\t\tUpdate the annotations on one or more resources.\n"
1951"\n"
1952"\t\tAll Kubernetes objects support the ability to store additional data with "
1953"the object as\n"
1954"\t\tannotations. Annotations are key/value pairs that can be larger than "
1955"labels and include\n"
1956"\t\tarbitrary string values such as structured JSON. Tools and system "
1957"extensions may use\n"
1958"\t\tannotations to store their own data.\n"
1959"\n"
1960"\t\tAttempting to set an annotation that already exists will fail unless --"
1961"overwrite is set.\n"
1962"\t\tIf --resource-version is specified and does not match the current "
1963"resource version on\n"
1964"\t\tthe server the command will fail."
1965msgstr ""
1966
1967#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:87
1968#, c-format
1969msgid ""
1970"\n"
1971"\t\tUpdate the labels on a resource.\n"
1972"\n"
1973"\t\t* A label key and value must begin with a letter or number, and may "
1974"contain letters, numbers, hyphens, dots, and underscores, up to %[1]d "
1975"characters each.\n"
1976"\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single "
1977"'/', like example.com/my-app.\n"
1978"\t\t* If --overwrite is true, then existing labels can be overwritten, "
1979"otherwise attempting to overwrite a label will result in an error.\n"
1980"\t\t* If --resource-version is specified, then updates will use this "
1981"resource version, otherwise the existing resource-version will be used."
1982msgstr ""
1983
1984#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:70
1985#, c-format
1986msgid ""
1987"\n"
1988"\t\tUpdate the taints on one or more nodes.\n"
1989"\n"
1990"\t\t* A taint consists of a key, value, and effect. As an argument here, it "
1991"is expressed as key=value:effect.\n"
1992"\t\t* The key must begin with a letter or number, and may contain letters, "
1993"numbers, hyphens, dots, and underscores, up to %[1]d characters.\n"
1994"\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single "
1995"'/', like example.com/my-app.\n"
1996"\t\t* The value is optional. If given, it must begin with a letter or "
1997"number, and may contain letters, numbers, hyphens, dots, and underscores, up "
1998"to %[2]d characters.\n"
1999"\t\t* The effect must be NoSchedule, PreferNoSchedule or NoExecute.\n"
2000"\t\t* Currently taint can only apply to node."
2001msgstr ""
2002
2003#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:36
2004msgid ""
2005"\n"
2006"\t\tView previous rollout revisions and configurations."
2007msgstr ""
2008
2009#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:47
2010msgid ""
2011"\n"
2012"\t\tView the latest last-applied-configuration annotations by type/name or "
2013"file.\n"
2014"\n"
2015"\t\tThe default output will be printed to stdout in YAML format. You can use "
2016"the -o option\n"
2017"\t\tto change the output format."
2018msgstr ""
2019
2020#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:47
2021msgid ""
2022"\n"
2023"\t  # Create a new TLS secret named tls-secret with the given key pair\n"
2024"\t  kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/"
2025"to/tls.key"
2026msgstr ""
2027
2028#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:42
2029msgid ""
2030"\n"
2031"\t  # Create a new namespace named my-namespace\n"
2032"\t  kubectl create namespace my-namespace"
2033msgstr ""
2034
2035#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:74
2036msgid ""
2037"\n"
2038"\t  # Create a new secret named my-secret with keys for each file in folder "
2039"bar\n"
2040"\t  kubectl create secret generic my-secret --from-file=path/to/bar\n"
2041"\n"
2042"\t  # Create a new secret named my-secret with specified keys instead of "
2043"names on disk\n"
2044"\t  kubectl create secret generic my-secret --from-file=ssh-privatekey=path/"
2045"to/id_rsa --from-file=ssh-publickey=path/to/id_rsa.pub\n"
2046"\n"
2047"\t  # Create a new secret named my-secret with key1=supersecret and "
2048"key2=topsecret\n"
2049"\t  kubectl create secret generic my-secret --from-literal=key1=supersecret "
2050"--from-literal=key2=topsecret\n"
2051"\n"
2052"\t  # Create a new secret named my-secret using a combination of a file and "
2053"a literal\n"
2054"\t  kubectl create secret generic my-secret --from-file=ssh-privatekey=path/"
2055"to/id_rsa --from-literal=passphrase=topsecret\n"
2056"\n"
2057"\t  # Create a new secret named my-secret from an env file\n"
2058"\t  kubectl create secret generic my-secret --from-env-file=path/to/bar.env"
2059msgstr ""
2060
2061#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_serviceaccount.go:43
2062msgid ""
2063"\n"
2064"\t  # Create a new service account named my-service-account\n"
2065"\t  kubectl create serviceaccount my-service-account"
2066msgstr ""
2067
2068#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_deployment.go:45
2069msgid ""
2070"\n"
2071"\t# Create a deployment named my-dep that runs the busybox image\n"
2072"\tkubectl create deployment my-dep --image=busybox\n"
2073"\n"
2074"\t# Create a deployment with a command\n"
2075"\tkubectl create deployment my-dep --image=busybox -- date\n"
2076"\n"
2077"\t# Create a deployment named my-dep that runs the nginx image with 3 "
2078"replicas\n"
2079"\tkubectl create deployment my-dep --image=nginx --replicas=3\n"
2080"\n"
2081"\t# Create a deployment named my-dep that runs the busybox image and expose "
2082"port 5701\n"
2083"\tkubectl create deployment my-dep --image=busybox --port=5701"
2084msgstr ""
2085
2086#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:351
2087msgid ""
2088"\n"
2089"\t# Create a new ExternalName service named my-ns\n"
2090"\tkubectl create service externalname my-ns --external-name bar.com"
2091msgstr ""
2092
2093#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:50
2094msgid ""
2095"\n"
2096"\t# Set deployment nginx-deployment's service account to serviceaccount1\n"
2097"\tkubectl set serviceaccount deployment nginx-deployment serviceaccount1\n"
2098"\n"
2099"\t# Print the result (in YAML format) of updated nginx deployment with the "
2100"service account from local file, without hitting the API server\n"
2101"\tkubectl set sa -f nginx-deployment.yaml serviceaccount1 --local --dry-"
2102"run=client -o yaml\n"
2103"\t"
2104msgstr ""
2105
2106#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_deployment.go:42
2107msgid ""
2108"\n"
2109"\tCreate a deployment with the specified name."
2110msgstr ""
2111
2112#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:344
2113msgid ""
2114"\n"
2115"\tCreate an ExternalName service with the specified name.\n"
2116"\n"
2117"\tExternalName service references to an external DNS address instead of\n"
2118"\tonly pods, which will allow application authors to reference services\n"
2119"\tthat exist off platform, on other clusters, or locally."
2120msgstr ""
2121
2122#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_ingress.go:61
2123msgid ""
2124"\n"
2125"\tCreate an ingress with the specified name."
2126msgstr ""
2127
2128#: staging/src/k8s.io/kubectl/pkg/cmd/help/help.go:28
2129msgid ""
2130"\n"
2131"\tHelp provides help for any command in the application.\n"
2132"\tSimply type kubectl help [path to command] for full details."
2133msgstr ""
2134
2135#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:44
2136msgid ""
2137"\n"
2138"\tSet an individual value in a kubeconfig file.\n"
2139"\n"
2140"\tPROPERTY_NAME is a dot delimited name where each token represents either "
2141"an attribute name or a map key.  Map keys may not contain dots.\n"
2142"\n"
2143"\tPROPERTY_VALUE is the new value you want to set. Binary fields such as "
2144"'certificate-authority-data' expect a base64 encoded string unless the --set-"
2145"raw-bytes flag is used.\n"
2146"\n"
2147"\tSpecifying an attribute name that already exists will merge new fields on "
2148"top of existing values."
2149msgstr ""
2150
2151#: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:39
2152msgid ""
2153"\n"
2154"\tUnset an individual value in a kubeconfig file.\n"
2155"\n"
2156"\tPROPERTY_NAME is a dot delimited name where each token represents either "
2157"an attribute name or a map key.  Map keys may not contain dots."
2158msgstr ""
2159
2160#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:43
2161msgid ""
2162"\n"
2163"\tUpdate the service account of pod template resources.\n"
2164"\n"
2165"\tPossible resources (case insensitive) can be:\n"
2166"\n"
2167"\t"
2168msgstr ""
2169
2170#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_subject.go:40
2171msgid ""
2172"\n"
2173"\tUpdate the user, group, or service account in a role binding or cluster "
2174"role binding."
2175msgstr ""
2176
2177#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:68
2178msgid ""
2179"\n"
2180"  \tpod (po), replicationcontroller (rc), deployment (deploy), daemonset "
2181"(ds), replicaset (rs)"
2182msgstr ""
2183
2184#: staging/src/k8s.io/kubectl/pkg/cmd/portforward/portforward.go:63
2185msgid ""
2186"\n"
2187"                Forward one or more local ports to a pod.\n"
2188"\n"
2189"                Use resource type/name such as deployment/mydeployment to "
2190"select a pod. Resource type defaults to 'pod' if omitted.\n"
2191"\n"
2192"                If there are multiple pods matching the criteria, a pod will "
2193"be selected automatically. The\n"
2194"                forwarding session ends when the selected pod terminates, "
2195"and a rerun of the command is needed\n"
2196"                to resume forwarding."
2197msgstr ""
2198
2199#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:233
2200msgid ""
2201"\n"
2202"    # Create a new ClusterIP service named my-cs\n"
2203"    kubectl create service clusterip my-cs --tcp=5678:8080\n"
2204"\n"
2205"    # Create a new ClusterIP service named my-cs (in headless mode)\n"
2206"    kubectl create service clusterip my-cs --clusterip=\"None\""
2207msgstr ""
2208
2209#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:311
2210msgid ""
2211"\n"
2212"    # Create a new LoadBalancer service named my-lbs\n"
2213"    kubectl create service loadbalancer my-lbs --tcp=5678:8080"
2214msgstr ""
2215
2216#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:274
2217msgid ""
2218"\n"
2219"    # Create a new NodePort service named my-ns\n"
2220"    kubectl create service nodeport my-ns --tcp=5678:8080"
2221msgstr ""
2222
2223#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:102
2224msgid ""
2225"\n"
2226"    # Dump current cluster state to stdout\n"
2227"    kubectl cluster-info dump\n"
2228"\n"
2229"    # Dump current cluster state to /path/to/cluster-state\n"
2230"    kubectl cluster-info dump --output-directory=/path/to/cluster-state\n"
2231"\n"
2232"    # Dump all namespaces to stdout\n"
2233"    kubectl cluster-info dump --all-namespaces\n"
2234"\n"
2235"    # Dump a set of namespaces to /path/to/cluster-state\n"
2236"    kubectl cluster-info dump --namespaces default,kube-system --output-"
2237"directory=/path/to/cluster-state"
2238msgstr ""
2239
2240#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:95
2241msgid ""
2242"\n"
2243"    # Update pod 'foo' with the annotation 'description' and the value 'my "
2244"frontend'\n"
2245"    # If the same annotation is set multiple times, only the last value will "
2246"be applied\n"
2247"    kubectl annotate pods foo description='my frontend'\n"
2248"\n"
2249"    # Update a pod identified by type and name in \"pod.json\"\n"
2250"    kubectl annotate -f pod.json description='my frontend'\n"
2251"\n"
2252"    # Update pod 'foo' with the annotation 'description' and the value 'my "
2253"frontend running nginx', overwriting any existing value\n"
2254"    kubectl annotate --overwrite pods foo description='my frontend running "
2255"nginx'\n"
2256"\n"
2257"    # Update all pods in the namespace\n"
2258"    kubectl annotate pods --all description='my frontend running nginx'\n"
2259"\n"
2260"    # Update pod 'foo' only if the resource is unchanged from version 1\n"
2261"    kubectl annotate pods foo description='my frontend running nginx' --"
2262"resource-version=1\n"
2263"\n"
2264"    # Update pod 'foo' by removing an annotation named 'description' if it "
2265"exists\n"
2266"    # Does not require the --overwrite flag\n"
2267"    kubectl annotate pods foo description-"
2268msgstr ""
2269
2270#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:230
2271msgid ""
2272"\n"
2273"    Create a ClusterIP service with the specified name."
2274msgstr ""
2275
2276#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:308
2277msgid ""
2278"\n"
2279"    Create a LoadBalancer service with the specified name."
2280msgstr ""
2281
2282#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:271
2283msgid ""
2284"\n"
2285"    Create a NodePort service with the specified name."
2286msgstr ""
2287
2288#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:93
2289msgid ""
2290"\n"
2291"    Dump cluster information out suitable for debugging and diagnosing "
2292"cluster problems.  By default, dumps everything to\n"
2293"    stdout. You can optionally specify a directory with --output-directory.  "
2294"If you specify a directory, Kubernetes will\n"
2295"    build a set of files in that directory.  By default, only dumps things "
2296"in the current namespace and 'kube-system' namespace, but you can\n"
2297"    switch to a different namespace with the --namespaces flag, or specify --"
2298"all-namespaces to dump all namespaces.\n"
2299"\n"
2300"    The command also dumps the logs of all of the pods in the cluster; these "
2301"logs are dumped into different directories\n"
2302"    based on namespace and pod name."
2303msgstr ""
2304
2305#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo.go:40
2306msgid ""
2307"\n"
2308"  Display addresses of the control plane and services with label kubernetes."
2309"io/cluster-service=true.\n"
2310"  To further debug and diagnose cluster problems, use 'kubectl cluster-info "
2311"dump'."
2312msgstr ""
2313
2314#: staging/src/k8s.io/kubectl/pkg/cmd/config/config.go:49
2315msgid ""
2316" environment variable is set, then it is used as a list of paths (normal "
2317"path delimiting rules for your system). These paths are merged. When a value "
2318"is modified, it is modified in the file that defines the stanza. When a "
2319"value is created, it is created in the first file that exists. If no files "
2320"in the chain exist, then it creates the last file in the list.\n"
2321"\t\t\t3. Otherwise, "
2322msgstr ""
2323
2324#: staging/src/k8s.io/kubectl/pkg/cmd/config/config.go:48
2325msgid ""
2326" flag is set, then only that file is loaded. The flag may only be set once "
2327"and no merging takes place.\n"
2328"\t\t\t2. If $"
2329msgstr ""
2330
2331#: staging/src/k8s.io/kubectl/pkg/cmd/config/config.go:50
2332msgid " is used and no merging takes place."
2333msgstr ""
2334
2335#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:107
2336msgid ""
2337"A comma-delimited set of quota scopes that must all match each object "
2338"tracked by the quota."
2339msgstr ""
2340
2341#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:106
2342msgid ""
2343"A comma-delimited set of resource=quantity pairs that define a hard limit."
2344msgstr ""
2345
2346#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:113
2347msgid ""
2348"A label selector to use for this budget. Only equality-based selector "
2349"requirements are supported."
2350msgstr ""
2351
2352#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:152
2353msgid ""
2354"A label selector to use for this service. Only equality-based selector "
2355"requirements are supported. If empty (the default) infer the selector from "
2356"the replication controller or replica set.)"
2357msgstr ""
2358
2359#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:157
2360msgid ""
2361"Additional external IP address (not managed by Kubernetes) to accept for the "
2362"service. If this IP is routed to a node, the service can be accessed by this "
2363"IP in addition to its generated service IP."
2364msgstr ""
2365
2366#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:178
2367msgid "Allocate a TTY for the debugging container."
2368msgstr ""
2369
2370#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:158
2371#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:178
2372msgid ""
2373"An inline JSON override for the generated object. If this is non-empty, it "
2374"is used to override the generated object. Requires that the object supply a "
2375"valid apiVersion field."
2376msgstr ""
2377
2378#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:173
2379msgid "Annotations to apply to the pod."
2380msgstr ""
2381
2382#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173
2383msgid "Apply a configuration to a resource by file name or stdin"
2384msgstr ""
2385
2386#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:125
2387msgid "Approve a certificate signing request"
2388msgstr ""
2389
2390#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:263
2391msgid ""
2392"Assign your own ClusterIP or set to 'None' for a 'headless' service (no "
2393"loadbalancing)."
2394msgstr ""
2395
2396#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:106
2397msgid ""
2398"Attach to a process that is already running inside an existing container."
2399msgstr ""
2400
2401#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:105
2402msgid "Attach to a running container"
2403msgstr ""
2404
2405#: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:107
2406msgid ""
2407"Auto-scale a deployment, replica set, stateful set, or replication controller"
2408msgstr ""
2409
2410#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:161
2411msgid ""
2412"ClusterIP to be assigned to the service. Leave empty to auto-allocate, or "
2413"set to 'None' to create a headless service."
2414msgstr ""
2415
2416#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:101
2417msgid "ClusterRole this ClusterRoleBinding should reference"
2418msgstr ""
2419
2420#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:104
2421msgid "ClusterRole this RoleBinding should reference"
2422msgstr ""
2423
2424#: staging/src/k8s.io/kubectl/pkg/cmd/alpha.go:32
2425msgid "Commands for features in alpha"
2426msgstr ""
2427
2428#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:170
2429msgid "Container image to use for debug container."
2430msgstr ""
2431
2432#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:166
2433msgid "Container name to use for debug container."
2434msgstr ""
2435
2436#: pkg/kubectl/cmd/convert/convert.go:95
2437msgid "Convert config files between different API versions"
2438msgstr ""
2439
2440#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:105
2441msgid "Copy files and directories to and from containers"
2442msgstr ""
2443
2444#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:106
2445msgid "Copy files and directories to and from containers."
2446msgstr ""
2447
2448#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:248
2449msgid "Create a ClusterIP service"
2450msgstr ""
2451
2452#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:323
2453msgid "Create a LoadBalancer service"
2454msgstr ""
2455
2456#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:286
2457msgid "Create a NodePort service"
2458msgstr ""
2459
2460#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:94
2461msgid "Create a TLS secret"
2462msgstr ""
2463
2464#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:81
2465msgid "Create a cluster role"
2466msgstr ""
2467
2468#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:87
2469msgid "Create a cluster role binding for a particular cluster role"
2470msgstr ""
2471
2472#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:124
2473msgid "Create a config map from a local file, directory or literal value"
2474msgstr ""
2475
2476#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:167
2477msgid "Create a copy of the target Pod with this name."
2478msgstr ""
2479
2480#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_cronjob.go:90
2481msgid "Create a cron job with the specified name"
2482msgstr ""
2483
2484#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_deployment.go:100
2485msgid "Create a deployment with the specified name"
2486msgstr ""
2487
2488#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:91
2489msgid "Create a job with the specified name"
2490msgstr ""
2491
2492#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:83
2493msgid "Create a namespace with the specified name"
2494msgstr ""
2495
2496#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:95
2497msgid "Create a pod disruption budget with the specified name"
2498msgstr ""
2499
2500#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:92
2501msgid "Create a priority class with the specified name"
2502msgstr ""
2503
2504#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:91
2505msgid "Create a quota with the specified name"
2506msgstr ""
2507
2508#: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:106
2509msgid "Create a resource from a file or from stdin"
2510msgstr ""
2511
2512#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89
2513msgid "Create a role binding for a particular role or cluster role"
2514msgstr ""
2515
2516#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:161
2517msgid "Create a role with single rule"
2518msgstr ""
2519
2520#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:134
2521msgid "Create a secret for use with a Docker registry"
2522msgstr ""
2523
2524#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:137
2525msgid "Create a secret from a local file, directory, or literal value"
2526msgstr ""
2527
2528#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:49
2529msgid "Create a secret using specified subcommand"
2530msgstr ""
2531
2532#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:50
2533msgid "Create a secret using specified subcommand."
2534msgstr ""
2535
2536#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_serviceaccount.go:85
2537msgid "Create a service account with the specified name"
2538msgstr ""
2539
2540#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:48
2541msgid "Create a service using a specified subcommand"
2542msgstr ""
2543
2544#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:49
2545msgid "Create a service using a specified subcommand."
2546msgstr ""
2547
2548#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:363
2549msgid "Create an ExternalName service"
2550msgstr ""
2551
2552#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_ingress.go:145
2553msgid "Create an ingress with the specified name"
2554msgstr ""
2555
2556#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:60
2557msgid "Create and run a particular image in a pod."
2558msgstr ""
2559
2560#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:149
2561msgid "Create debugging sessions for troubleshooting workloads and nodes"
2562msgstr ""
2563
2564#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:137
2565msgid ""
2566"Delete resources by file names, stdin, resources and names, or by resources "
2567"and label selector"
2568msgstr ""
2569
2570#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42
2571msgid "Delete the specified cluster from the kubeconfig"
2572msgstr ""
2573
2574#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:43
2575msgid "Delete the specified cluster from the kubeconfig."
2576msgstr ""
2577
2578#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42
2579msgid "Delete the specified context from the kubeconfig"
2580msgstr ""
2581
2582#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:43
2583msgid "Delete the specified context from the kubeconfig."
2584msgstr ""
2585
2586#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_user.go:64
2587msgid "Delete the specified user from the kubeconfig"
2588msgstr ""
2589
2590#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_user.go:65
2591msgid "Delete the specified user from the kubeconfig."
2592msgstr ""
2593
2594#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:174
2595msgid "Deny a certificate signing request"
2596msgstr ""
2597
2598#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_contexts.go:72
2599msgid "Describe one or many contexts"
2600msgstr ""
2601
2602#: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:142
2603msgid "Diff the live version against a would-be applied version"
2604msgstr ""
2605
2606#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo.go:65
2607msgid "Display cluster information"
2608msgstr ""
2609
2610#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_clusters.go:41
2611msgid "Display clusters defined in the kubeconfig"
2612msgstr ""
2613
2614#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_clusters.go:42
2615msgid "Display clusters defined in the kubeconfig."
2616msgstr ""
2617
2618#: staging/src/k8s.io/kubectl/pkg/cmd/config/view.go:81
2619msgid "Display merged kubeconfig settings or a specified kubeconfig file"
2620msgstr ""
2621
2622#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_contexts.go:50
2623msgid "Display one or many contexts from the kubeconfig file."
2624msgstr ""
2625
2626#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:165
2627msgid "Display one or many resources"
2628msgstr ""
2629
2630#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50
2631msgid "Display resource (CPU/memory) usage"
2632msgstr ""
2633
2634#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:81
2635msgid "Display resource (CPU/memory) usage of nodes"
2636msgstr ""
2637
2638#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:100
2639msgid "Display resource (CPU/memory) usage of pods"
2640msgstr ""
2641
2642#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51
2643msgid "Display the current-context"
2644msgstr ""
2645
2646#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_users.go:60
2647msgid "Display users defined in the kubeconfig"
2648msgstr ""
2649
2650#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_users.go:61
2651msgid "Display users defined in the kubeconfig."
2652msgstr ""
2653
2654#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:184
2655msgid "Drain node in preparation for maintenance"
2656msgstr ""
2657
2658#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:74
2659msgid "Dump relevant information for debugging and diagnosis"
2660msgstr ""
2661
2662#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:77
2663msgid "Edit a resource on the server"
2664msgstr ""
2665
2666#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_edit_last_applied.go:67
2667msgid "Edit latest last-applied-configuration annotations of a resource/object"
2668msgstr ""
2669
2670#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:152
2671msgid "Email for Docker registry"
2672msgstr ""
2673
2674#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:169
2675msgid "Environment variables to set in the container."
2676msgstr ""
2677
2678#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:89
2679msgid "Execute a command in a container"
2680msgstr ""
2681
2682#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:90
2683msgid "Execute a command in a container."
2684msgstr ""
2685
2686#: staging/src/k8s.io/kubectl/pkg/cmd/wait/wait.go:115
2687msgid "Experimental: Wait for a specific condition on one or many resources"
2688msgstr ""
2689
2690#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:378
2691msgid "External name of service"
2692msgstr ""
2693
2694#: staging/src/k8s.io/kubectl/pkg/cmd/portforward/portforward.go:109
2695msgid "Forward one or more local ports to a pod"
2696msgstr ""
2697
2698#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79
2699msgid "Get documentation for a resource"
2700msgstr ""
2701
2702#: staging/src/k8s.io/kubectl/pkg/cmd/help/help.go:37
2703msgid "Help about any command"
2704msgstr ""
2705
2706#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:151
2707msgid ""
2708"IP to assign to the LoadBalancer. If empty, an ephemeral IP will be created "
2709"and used (cloud-provider specific)."
2710msgstr ""
2711
2712#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:160
2713msgid ""
2714"If non-empty, set the session affinity for the service to this; legal "
2715"values: 'None', 'ClientIP'"
2716msgstr ""
2717
2718#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:157
2719msgid ""
2720"If non-empty, the annotation update will only succeed if this is the current "
2721"resource-version for the object. Only valid when specifying a single "
2722"resource."
2723msgstr ""
2724
2725#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:154
2726msgid ""
2727"If non-empty, the labels update will only succeed if this is the current "
2728"resource-version for the object. Only valid when specifying a single "
2729"resource."
2730msgstr ""
2731
2732#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:164
2733msgid ""
2734"If specified, everything after -- will be passed to the new container as "
2735"Args instead of Command."
2736msgstr ""
2737
2738#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:198
2739msgid "If true, run the container in privileged mode."
2740msgstr ""
2741
2742#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:174
2743msgid "If true, suppress informational messages."
2744msgstr ""
2745
2746#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:165
2747msgid ""
2748"If true, wait for the container to start running, and then attach as if "
2749"'kubectl attach ...' were called.  Default false, unless '-i/--stdin' is "
2750"set, in which case the default is true."
2751msgstr ""
2752
2753#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:173
2754msgid ""
2755"Keep stdin open on the container(s) in the pod, even if nothing is attached."
2756msgstr ""
2757
2758#: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:90
2759msgid "List all visible plugin executables on a user's PATH"
2760msgstr ""
2761
2762#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout.go:54
2763msgid "Manage the rollout of a resource"
2764msgstr ""
2765
2766#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:98
2767msgid "Mark node as schedulable"
2768msgstr ""
2769
2770#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:69
2771msgid "Mark node as unschedulable"
2772msgstr ""
2773
2774#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:83
2775msgid "Mark the provided resource as paused"
2776msgstr ""
2777
2778#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:49
2779#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:50
2780msgid "Modify certificate resources."
2781msgstr ""
2782
2783#: staging/src/k8s.io/kubectl/pkg/cmd/config/config.go:42
2784msgid "Modify kubeconfig files"
2785msgstr ""
2786
2787#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:156
2788msgid ""
2789"Name or number for the port on the container that the service should direct "
2790"traffic to. Optional."
2791msgstr ""
2792
2793#: staging/src/k8s.io/kubectl/pkg/cmd/alpha.go:43
2794msgid "No alpha commands are available in this version of kubectl"
2795msgstr ""
2796
2797#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:174
2798msgid ""
2799"Only return logs after a specific date (RFC3339). Defaults to all logs. Only "
2800"one of since-time / since may be used."
2801msgstr ""
2802
2803#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:112
2804msgid "Output shell completion code for the specified shell (bash or zsh)"
2805msgstr ""
2806
2807#: pkg/kubectl/cmd/convert/convert.go:105
2808msgid ""
2809"Output the formatted object with the given group version (for ex: "
2810"'extensions/v1beta1')."
2811msgstr ""
2812
2813#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:151
2814msgid "Password for Docker registry authentication"
2815msgstr ""
2816
2817#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:110
2818msgid "Path to PEM encoded public key certificate."
2819msgstr ""
2820
2821#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:111
2822msgid "Path to private key associated with given certificate."
2823msgstr ""
2824
2825#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:130
2826msgid ""
2827"Precondition for resource version. Requires that the current resource "
2828"version match this value in order to scale."
2829msgstr ""
2830
2831#: staging/src/k8s.io/kubectl/pkg/cmd/version/version.go:73
2832msgid "Print the client and server version information"
2833msgstr ""
2834
2835#: staging/src/k8s.io/kubectl/pkg/cmd/version/version.go:74
2836msgid ""
2837"Print the client and server version information for the current context."
2838msgstr ""
2839
2840#: staging/src/k8s.io/kubectl/pkg/cmd/options/options.go:38
2841#: staging/src/k8s.io/kubectl/pkg/cmd/options/options.go:39
2842msgid "Print the list of flags inherited by all commands"
2843msgstr ""
2844
2845#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:152
2846msgid "Print the logs for a container in a pod"
2847msgstr ""
2848
2849#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:97
2850msgid "Print the supported API resources on the server"
2851msgstr ""
2852
2853#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:98
2854msgid "Print the supported API resources on the server."
2855msgstr ""
2856
2857#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:58
2858msgid ""
2859"Print the supported API versions on the server, in the form of \"group/"
2860"version\""
2861msgstr ""
2862
2863#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:59
2864msgid ""
2865"Print the supported API versions on the server, in the form of \"group/"
2866"version\"."
2867msgstr ""
2868
2869#: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:62
2870msgid "Provides utilities for interacting with plugins"
2871msgstr ""
2872
2873#: staging/src/k8s.io/kubectl/pkg/cmd/config/rename_context.go:45
2874msgid "Rename a context from the kubeconfig file"
2875msgstr ""
2876
2877#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:115
2878msgid "Replace a resource by file name or stdin"
2879msgstr ""
2880
2881#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_restart.go:87
2882msgid "Restart a resource"
2883msgstr ""
2884
2885#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:87
2886msgid "Resume a paused resource"
2887msgstr ""
2888
2889#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:105
2890msgid "Role this RoleBinding should reference"
2891msgstr ""
2892
2893#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:152
2894msgid "Run a particular image on the cluster"
2895msgstr ""
2896
2897#: staging/src/k8s.io/kubectl/pkg/cmd/proxy/proxy.go:119
2898msgid "Run a proxy to the Kubernetes API server"
2899msgstr ""
2900
2901#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:153
2902msgid "Server location for Docker registry"
2903msgstr ""
2904
2905#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73
2906msgid "Set a cluster entry in kubeconfig"
2907msgstr ""
2908
2909#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61
2910msgid "Set a context entry in kubeconfig"
2911msgstr ""
2912
2913#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:114
2914msgid "Set a new size for a deployment, replica set, or replication controller"
2915msgstr ""
2916
2917#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152
2918msgid "Set a user entry in kubeconfig"
2919msgstr ""
2920
2921#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74
2922msgid "Set an individual value in a kubeconfig file"
2923msgstr ""
2924
2925#: staging/src/k8s.io/kubectl/pkg/cmd/set/set.go:39
2926msgid "Set specific features on objects"
2927msgstr ""
2928
2929#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:52
2930msgid "Set the current-context in a kubeconfig file"
2931msgstr ""
2932
2933#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:101
2934msgid ""
2935"Set the last-applied-configuration annotation on a live object to match the "
2936"contents of a file"
2937msgstr ""
2938
2939#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_selector.go:104
2940msgid "Set the selector on a resource"
2941msgstr ""
2942
2943#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:107
2944msgid "Show details of a specific resource or group of resources"
2945msgstr ""
2946
2947#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:102
2948msgid "Show the status of the rollout"
2949msgstr ""
2950
2951#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:154
2952msgid "Synonym for --target-port"
2953msgstr ""
2954
2955#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:134
2956msgid ""
2957"Take a replication controller, service, deployment or pod and expose it as a "
2958"new Kubernetes service"
2959msgstr ""
2960
2961#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:174
2962msgid "The image for the container to run."
2963msgstr ""
2964
2965#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:176
2966msgid ""
2967"The image pull policy for the container. If left empty, this value will not "
2968"be specified by the client and defaulted by the server"
2969msgstr ""
2970
2971#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:172
2972msgid ""
2973"The image pull policy for the container. If left empty, this value will not "
2974"be specified by the client and defaulted by the server."
2975msgstr ""
2976
2977#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:112
2978msgid ""
2979"The maximum number or percentage of unavailable pods this budget requires."
2980msgstr ""
2981
2982#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:111
2983msgid ""
2984"The minimum number or percentage of available pods this budget requires."
2985msgstr ""
2986
2987#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:159
2988msgid "The name for the newly created object."
2989msgstr ""
2990
2991#: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:125
2992msgid ""
2993"The name for the newly created object. If not specified, the name of the "
2994"input resource will be used."
2995msgstr ""
2996
2997#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:147
2998msgid ""
2999"The name of the API generator to use. There are 2 generators: 'service/v1' "
3000"and 'service/v2'. The only difference between them is that service port in "
3001"v1 is named 'default', while it is left unnamed in v2. Default is 'service/"
3002"v2'."
3003msgstr ""
3004
3005#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:148
3006msgid "The network protocol for the service to be created. Default is 'TCP'."
3007msgstr ""
3008
3009#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:149
3010msgid ""
3011"The port that the service should serve on. Copied from the resource being "
3012"exposed, if unspecified"
3013msgstr ""
3014
3015#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:182
3016msgid "The port that this container exposes."
3017msgstr ""
3018
3019#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:194
3020msgid ""
3021"The resource requirement limits for this container.  For example, 'cpu=200m,"
3022"memory=512Mi'.  Note that server side components may assign limits depending "
3023"on the server configuration, such as limit ranges."
3024msgstr ""
3025
3026#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:192
3027msgid ""
3028"The resource requirement requests for this container.  For example, "
3029"'cpu=100m,memory=256Mi'.  Note that server side components may assign "
3030"requests depending on the server configuration, such as limit ranges."
3031msgstr ""
3032
3033#: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:190
3034msgid ""
3035"The restart policy for this Pod.  Legal values [Always, OnFailure, Never]."
3036msgstr ""
3037
3038#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:155
3039msgid "The type of secret to create"
3040msgstr ""
3041
3042#: staging/src/k8s.io/kubectl/pkg/cmd/alpha.go:33
3043msgid ""
3044"These commands correspond to alpha features that are not enabled in "
3045"Kubernetes clusters by default."
3046msgstr ""
3047
3048#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:150
3049msgid ""
3050"Type for this service: ClusterIP, NodePort, LoadBalancer, or ExternalName. "
3051"Default is 'ClusterIP'."
3052msgstr ""
3053
3054#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:87
3055msgid "Undo a previous rollout"
3056msgstr ""
3057
3058#: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:59
3059msgid "Unset an individual value in a kubeconfig file"
3060msgstr ""
3061
3062#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_env.go:154
3063msgid "Update environment variables on a pod template"
3064msgstr ""
3065
3066#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:115
3067msgid "Update fields of a resource"
3068msgstr ""
3069
3070#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_resources.go:116
3071msgid "Update resource requests/limits on objects with pod templates"
3072msgstr ""
3073
3074#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:135
3075msgid "Update the annotations on a resource"
3076msgstr ""
3077
3078#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110
3079msgid "Update the image of a pod template"
3080msgstr ""
3081
3082#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:133
3083msgid "Update the labels on a resource"
3084msgstr ""
3085
3086#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:102
3087msgid "Update the service account of a resource"
3088msgstr ""
3089
3090#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:109
3091msgid "Update the taints on one or more nodes"
3092msgstr ""
3093
3094#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_subject.go:99
3095msgid ""
3096"Update the user, group, or service account in a role binding or cluster role "
3097"binding"
3098msgstr ""
3099
3100#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:150
3101msgid "Username for Docker registry authentication"
3102msgstr ""
3103
3104#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:83
3105msgid "View rollout history"
3106msgstr ""
3107
3108#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77
3109msgid ""
3110"View the latest last-applied-configuration annotations of a resource/object"
3111msgstr ""
3112
3113#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:171
3114msgid ""
3115"When used with '--copy-to', a list of name=image pairs for changing "
3116"container images, similar to how 'kubectl set image' works."
3117msgstr ""
3118
3119#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:168
3120msgid "When used with '--copy-to', delete the original Pod."
3121msgstr ""
3122
3123#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:176
3124msgid ""
3125"When used with '--copy-to', enable process namespace sharing in the copy."
3126msgstr ""
3127
3128#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:175
3129msgid ""
3130"When used with '--copy-to', schedule the copy of target Pod on the same node."
3131msgstr ""
3132
3133#: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:177
3134msgid ""
3135"When using an ephemeral container, target processes in this container name."
3136msgstr ""
3137
3138#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:85
3139msgid ""
3140"Where to output the files.  If empty or '-' uses stdout, otherwise creates a "
3141"directory hierarchy in that directory"
3142msgstr ""
3143
3144#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:108
3145msgid ""
3146"description is an arbitrary string that usually provides guidelines on when "
3147"this priority class should be used."
3148msgstr ""
3149
3150#: staging/src/k8s.io/kubectl/pkg/cmd/run/run_test.go:88
3151msgid "dummy restart flag)"
3152msgstr ""
3153
3154#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:107
3155msgid ""
3156"global-default specifies whether this PriorityClass should be considered as "
3157"the default priority."
3158msgstr ""
3159
3160#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:227
3161msgid "kubectl controls the Kubernetes cluster manager"
3162msgstr ""
3163
3164#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:45
3165msgid ""
3166"pod (po), service (svc), replicationcontroller (rc), deployment (deploy), "
3167"replicaset (rs)"
3168msgstr ""
3169
3170#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:109
3171msgid ""
3172"preemption-policy is the policy for preempting pods with lower priority."
3173msgstr ""
3174
3175#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:41
3176msgid ""
3177"replicationcontroller (rc), deployment (deploy), daemonset (ds), job, "
3178"replicaset (rs), statefulset"
3179msgstr ""
3180
3181#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:106
3182msgid "the value of this priority class."
3183msgstr ""
3184