diff --git a/hack/update-translations.sh b/hack/update-translations.sh index bc5b4d6dbd1..f40cc25e50b 100755 --- a/hack/update-translations.sh +++ b/hack/update-translations.sh @@ -14,8 +14,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -# This script updates `translations/kubectl/template.pot` for -# `pkg/kubectl/cmd/*.go pkg/kubectl/cmd/*/*.go`. +# This script updates `staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/template.pot` and +# generates/fixes .po and .mo files. # Usage: `update-translations.sh`. KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/.. @@ -98,15 +98,15 @@ fi if [[ "${fix_translations}" == "true" ]]; then echo "Fixing .po files" kube::util::ensure-temp-dir - for PO_FILE in translations/kubectl/*/LC_MESSAGES/k8s.po; do + for PO_FILE in "${TRANSLATIONS}"/kubectl/*/LC_MESSAGES/k8s.po; do TMP="${KUBE_TEMP}/fix.po" if [[ "${PO_FILE}" =~ .*/default/.* || "${PO_FILE}" =~ .*/en_US/.* ]]; then # mark obsolete, and set default values for english translations - msgen translations/kubectl/template.pot | \ + msgen "${TRANSLATIONS}/kubectl/template.pot" | \ msgmerge -s --no-fuzzy-matching "${PO_FILE}" - > "${TMP}" else # mark obsolete, but do not add untranslated messages - msgmerge -s --no-fuzzy-matching "${PO_FILE}" translations/kubectl/template.pot | msgattrib --translated - > "${TMP}" + msgmerge -s --no-fuzzy-matching "${PO_FILE}" "${TRANSLATIONS}/kubectl/template.pot" | msgattrib --translated - > "${TMP}" fi mv "${TMP}" "${PO_FILE}" done diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/de_DE/LC_MESSAGES/k8s.mo b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/de_DE/LC_MESSAGES/k8s.mo index 9ac708334bd..ee64eb7a8d1 100644 Binary files a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/de_DE/LC_MESSAGES/k8s.mo and b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/de_DE/LC_MESSAGES/k8s.mo differ diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/de_DE/LC_MESSAGES/k8s.po b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/de_DE/LC_MESSAGES/k8s.po index bd63d83db44..cd5d53c888f 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/de_DE/LC_MESSAGES/k8s.po +++ b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/de_DE/LC_MESSAGES/k8s.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kubernetes\n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2021-05-17 15:40+0200\n" +"POT-Creation-Date: 2021-07-07 20:15+0200\n" "PO-Revision-Date: 2017-09-02 01:36+0200\n" "Last-Translator: Steffen Schmitz \n" "Language-Team: Steffen Schmitz \n" @@ -20,34 +20,6 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "X-Poedit-SourceCharset: UTF-8\n" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using the " -"cluster-admin ClusterRole\n" -"\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" -"admin --user=user1 --user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # Erstellt ein ClusterRoleBinding für user1, user2 und group1 mit der " -"ClusterRole cluster-admin\n" -"\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" -"admin --user=user1 --user=user2 --group=group1" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # Erstellt ein RoleBinding für user1, user2 und group1 mit der " -"ClusterRole admin\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" - #: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:62 msgid "" "\n" @@ -64,177 +36,6 @@ msgstr "" "\t\t # Zeige Metriken für den gegebenen Node\n" "\t\t kubectl top node NODE_NAME" -#: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:48 -#, c-format -msgid "" -"\n" -"\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 and " -"10, no target CPU utilization specified so a default autoscaling policy will " -"be used:\n" -"\t\tkubectl autoscale deployment foo --min=2 --max=10\n" -"\n" -"\t\t# Auto scale a replication controller \"foo\", with the number of pods " -"between 1 and 5, target CPU utilization at 80%:\n" -"\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" -msgstr "" -"\n" -"\t\t# Auto-skaliere ein Deployment \"foo\", mit einer Anzahl an Pods " -"zwischen 2 und 10, eine Ziel-CPU-Auslastung ist angegeben, sodass eine " -"Standard-autoskalierungsregel verwendet wird:\n" -"\t\tkubectl autoscale deployment foo --min=2 --max=10\n" -"\n" -"\t\t# Auto-skaliere einen Replication-Controller \"foo\", mit einer Anzahl " -"an Pods zwischen 1 und 5, mit einer Ziel-CPU-Auslastung von 80%:\n" -"\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:44 -msgid "" -"\n" -"\t\t# Create a new resourcequota named my-quota\n" -"\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," -"replicationcontrollers=2,resourcequotas=1,secrets=5," -"persistentvolumeclaims=10\n" -"\n" -"\t\t# Create a new resourcequota named best-effort\n" -"\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" -msgstr "" -"\n" -"\t\t# Erstellt eine neue ResourceQuota my-quota\n" -"\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," -"replicationcontrollers=2,resourcequotas=1,secrets=5," -"persistentvolumeclaims=10\n" -"\n" -"\t\t# Erstellt eine neue ResourceQuota best-effort\n" -"\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:44 -#, c-format -msgid "" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=rails label\n" -"\t\t# and require at least one of them being available at any point in " -"time.\n" -"\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" -"available=1\n" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=nginx label\n" -"\t\t# and require at least half of the pods selected to be available at any " -"point in time.\n" -"\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" -msgstr "" -"\n" -"\t\t# Erstellt ein Pod-Disruption-Budget my-pdb, dass alle Pods mit dem " -"Label app=rails auswählt\n" -"\t\t# und sicherstellt, dass mindestens einer von ihnen zu jedem Zeitpunkt " -"verfügbar ist.\n" -"\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" -"available=1\n" -"\n" -"\t\t# Erstellt ein Pod-Disruption-Budget my-pdb, dass alle Pods mit dem " -"Label app=nginx auswählt\n" -"\t\t# und sicherstellt, dass mindestens die Hälfte der gewählten Pods zu " -"jedem Zeitpunkt verfügbar ist.\n" -"\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" - -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:50 -msgid "" -"\n" -"\t\t# Describe a node\n" -"\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" -"\n" -"\t\t# Describe a pod\n" -"\t\tkubectl describe pods/nginx\n" -"\n" -"\t\t# Describe a pod identified by type and name in \"pod.json\"\n" -"\t\tkubectl describe -f pod.json\n" -"\n" -"\t\t# Describe all pods\n" -"\t\tkubectl describe pods\n" -"\n" -"\t\t# Describe pods by label name=myLabel\n" -"\t\tkubectl describe po -l name=myLabel\n" -"\n" -"\t\t# Describe all pods managed by the 'frontend' replication controller (rc-" -"created pods\n" -"\t\t# get the name of the rc as a prefix in the pod the name).\n" -"\t\tkubectl describe pods frontend" -msgstr "" -"\n" -"\t\t# Beschreibt einen Knoten\n" -"\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" -"\n" -"\t\t# Beschreibt einen Pod\n" -"\t\tkubectl describe pods/nginx\n" -"\n" -"\t\t# Beschreibt einen Pod mit type und name aus \"pod.json\"\n" -"\t\tkubectl describe -f pod.json\n" -"\n" -"\t\t# Beschreibt alle Pods\n" -"\t\tkubectl describe pods\n" -"\n" -"\t\t# Beschreibt Pods mit dem Label name=myLabel\n" -"\t\tkubectl describe po -l name=myLabel\n" -"\n" -"\t\t# Beschreibt alle Pods, die vom ReplicationController 'frontend' " -"verwaltet werden (rc-erstellte Pods\n" -"\t\t# bekommen den Namen des rc als Prefix im Podnamen).\n" -"\t\tkubectl describe pods frontend" - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:135 -msgid "" -"\n" -"\t\t# Drain node \"foo\", even if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" -"\t\t$ kubectl drain foo --force\n" -"\n" -"\t\t# As above, but abort if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a " -"grace period of 15 minutes.\n" -"\t\t$ kubectl drain foo --grace-period=900" -msgstr "" -"\n" -"\t\t# Leere den Knoten \"foo\", selbst wenn er Pods enthält, die nicht von " -"einem ReplicationController, ReplicaSet, Job, DaemonSet oder StatefulSet " -"verwaltet werden.\n" -"\t\t$ kubectl drain foo --force\n" -"\n" -"\t\t# Wie zuvor, aber es wird abgebrochen, wenn er Pods enthält, die nicht " -"von einem ReplicationController, ReplicaSet, Job, DaemonSet oder StatefulSet " -"verwaltet werden und mit einer Schonfrist von 15 Minuten.\n" -"\t\t$ kubectl drain foo --grace-period=900" - -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:54 -msgid "" -"\n" -"\t\t# Edit the service named 'docker-registry':\n" -"\t\tkubectl edit svc/docker-registry\n" -"\n" -"\t\t# Use an alternative editor\n" -"\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" -"\n" -"\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" -"\t\tkubectl edit job.v1.batch/myjob -o json\n" -"\n" -"\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " -"config in its annotation:\n" -"\t\tkubectl edit deployment/mydeployment -o yaml --save-config" -msgstr "" -"\n" -"\t\t# Bearbeite den Service 'docker-registry':\n" -"\t\tkubectl edit svc/docker-registry\n" -"\n" -"\t\t# Benutze einen anderen Editor\n" -"\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" -"\n" -"\t\t# Bearbeite den Job 'myjob' in JSON mit dem v1 API Format:\n" -"\t\tkubectl edit job.v1.batch/myjob -o json\n" -"\n" -"\t\t# Bearbeite das Deployment 'mydeployment' in YAML und speichere die " -"veränderte Konfiguration in ihrer Annotation:\n" -"\t\tkubectl edit deployment/mydeployment -o yaml --save-config" - #: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:46 msgid "" "\n" @@ -251,26 +52,6 @@ msgstr "" "\t\t# Erhalte die Dokumentation eines speziellen Felds einer Resource\n" "\t\tkubectl explain pods.spec.containers" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:85 -msgid "" -"\n" -"\t\t# Mark node \"foo\" as schedulable.\n" -"\t\t$ kubectl uncordon foo" -msgstr "" -"\n" -"\t\t# Markiere Knoten \"foo\" als schedulable.\n" -"\t\t$ kubectl uncordon foo" - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:57 -msgid "" -"\n" -"\t\t# Mark node \"foo\" as unschedulable.\n" -"\t\tkubectl cordon foo" -msgstr "" -"\n" -"\t\t# Markiere Knoten \"foo\" als unschedulable.\n" -"\t\tkubectl cordon foo" - #: staging/src/k8s.io/kubectl/pkg/cmd/options/options.go:29 msgid "" "\n" @@ -301,67 +82,7 @@ msgstr "" "\t\t# Gebe die unterstützten API Versionen aus\n" "\t\tkubectl api-versions" -#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:56 -msgid "" -"\n" -"\t\t# Replace a pod using the data in pod.json.\n" -"\t\tkubectl replace -f ./pod.json\n" -"\n" -"\t\t# Replace a pod based on the JSON passed into stdin.\n" -"\t\tcat pod.json | kubectl replace -f -\n" -"\n" -"\t\t# Update a single-container pod's image version (tag) to v4\n" -"\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' | " -"kubectl replace -f -\n" -"\n" -"\t\t# Force replace, delete and then re-create the resource\n" -"\t\tkubectl replace --force -f ./pod.json" -msgstr "" -"\n" -"\t\t# Ersetze einen Pod mit den Daten aus pod.json.\n" -"\t\tkubectl replace -f ./pod.json\n" -"\n" -"\t\t# Ersetze einen Pod mit den JSON-Daten von stdin.\n" -"\t\tcat pod.json | kubectl replace -f -\n" -"\n" -"\t\t# Setze die Pod-Image-Version (tag) eines einzelnen Containers zu v4\n" -"\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' | " -"kubectl replace -f -\n" -"\n" -"\t\t# Erzwinge das Ersetzen, Löschen und Neu-Erstellen der Resource\n" -"\t\tkubectl replace --force -f ./pod.json" - -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:75 -msgid "" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml\n" -"\n" -"\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" -"\t\tkubectl apply set-last-applied -f path/\n" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file, will create the annotation if it does not already exist.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" -"\t\t" -msgstr "" -"\n" -"\t\t# Setze die Last-Applied-Configuration einer Resource auf den Inhalt " -"einer Datei.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml\n" -"\n" -"\t\t# Führe Set-Last-Applied auf jeder Konfigurationsdatei in einem Ordner " -"aus.\n" -"\t\tkubectl apply set-last-applied -f path/\n" -"\n" -"\t\t# Setze die Last-Applied-Configuration einer Resource auf den Inhalt " -"einer Datei; erstellt die Annotation, wenn sie noch nicht existiert.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" -"\t\t" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:72 +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:75 msgid "" "\n" "\t\t# Show metrics for all pods in the default namespace\n" @@ -389,71 +110,6 @@ msgstr "" "\t\t# Zeige Metriken für Pods mit dem Label name=myLabel\n" "\t\tkubectl top pod -l name=myLabel" -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:94 -msgid "" -"\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" -"\t\tkubectl label pods foo unhealthy=true\n" -"\n" -"\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" -"\t\tkubectl label --overwrite pods foo status=unhealthy\n" -"\n" -"\t\t# Update all pods in the namespace\n" -"\t\tkubectl label pods --all status=unhealthy\n" -"\n" -"\t\t# Update a pod identified by the type and name in \"pod.json\"\n" -"\t\tkubectl label -f pod.json status=unhealthy\n" -"\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" -"\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" -"\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" -"\t\tkubectl label pods foo bar-" -msgstr "" -"\n" -"\t\t# Aktualisiere den Pod 'foo' mit dem Label 'unhealthy' und dem Value " -"'true'.\n" -"\t\tkubectl label pods foo unhealthy=true\n" -"\n" -"\t\t# Aktualisiere den Pod 'foo' mit dem Label 'status' und dem Value " -"'unhealthy' und überschreibe alle bisherigen Values.\n" -"\t\tkubectl label --overwrite pods foo status=unhealthy\n" -"\n" -"\t\t# Aktualisiere alle Pods im Namespace\n" -"\t\tkubectl label pods --all status=unhealthy\n" -"\n" -"\t\t# Aktualisiere den Pod mit type und name aus \"pod.json\"\n" -"\t\tkubectl label -f pod.json status=unhealthy\n" -"\n" -"\t\t# Aktualisiere den Pod 'foo', wenn die Resource sich nicht von version 1 " -"unterscheidet.\n" -"\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" -"\n" -"\t\t# Aktualisiere den Pod 'foo', indem das Label 'bar' gelöscht wird, wenn " -"es existiert.\n" -"\t\t# Benötigt kein --overwrite flag.\n" -"\t\tkubectl label pods foo bar-" - -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:53 -msgid "" -"\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" -"\t\tkubectl apply view-last-applied deployment/nginx\n" -"\n" -"\t\t# View the last-applied-configuration annotations by file in JSON\n" -"\t\tkubectl apply view-last-applied -f deploy.yaml -o json" -msgstr "" -"\n" -"\t\t# Zeige die Annotation Last-Applied-Configuration mit type/name in YAML " -"an.\n" -"\t\tkubectl apply view-last-applied deployment/nginx\n" -"\n" -"\t\t# Zeige die Annotation Last-applied-configuration mit der Datei in JSON " -"an\n" -"\t\tkubectl apply view-last-applied -f deploy.yaml -o json" - #: pkg/kubectl/cmd/convert/convert.go:40 msgid "" "\n" @@ -483,66 +139,6 @@ msgstr "" "die Option -o verwenden,\n" "\t\tum das Ausgabeziel festzulegen." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38 -msgid "" -"\n" -"\t\tCreate a ClusterRole." -msgstr "" -"\n" -"\t\tErstelle eine ClusterRole." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a ClusterRoleBinding for a particular ClusterRole." -msgstr "" -"\n" -"\t\tErstelle ein ClusterRoleBinding für eine bestimmte ClusterRole." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a RoleBinding for a particular Role or ClusterRole." -msgstr "" -"\n" -"\t\tErstelle ein RoleBinding für eine bestimmte ClusterRole." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:46 -msgid "" -"\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " -"value.\n" -"\n" -"\t\tA single configmap may package one or more key/value pairs.\n" -"\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " -"basename of the file, and the value will\n" -"\t\tdefault to the file content. If the basename is an invalid key, you may " -"specify an alternate key.\n" -"\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" -"\t\tsymlinks, devices, pipes, etc)." -msgstr "" -"\n" -"\t\tErstelle eine ConfigMap basierend auf einer Datei, einem Order oder " -"einem gegebenen Wert.\n" -"\n" -"\t\tEine einzelne ConfigMap kann eins oder mehr Key/Value-Paare beinhalten.\n" -"\n" -"\t\tWenn man eine ConfigMap von einer Datei erstellt, wird der Key " -"standardmäßig der Name der Datei, und der Wert wird\n" -"\t\tstandardmäßig der Dateiinhalt. Wenn der Dateiname ein ungültiger Key " -"ist, kann ein anderer Key angegeben werden.\n" -"\n" -"\t\tWenn man eine ConfigMap von einem Ordner erstellt, wird jede Datei, " -"deren Name ein gültiger Key ist\n" -"\t\tin die ConfigMap aufgenommen. Jegliche Einträge im Ordner, die keine " -"regulären Dateien sind, werden ignoriert (z.B. SubDirectories, \n" -"\t\tSymLinks, Devices, Pipes, usw)." - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:39 msgid "" "\n" @@ -551,26 +147,6 @@ msgstr "" "\n" "\t\tErstelle einen Namespace mit dem gegebenen Namen." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:41 -msgid "" -"\n" -"\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" -msgstr "" -"\n" -"\t\tErstelle ein Pod-Disruption-Budget mit dem gegebenen name, selector und " -"der gewünschten Mindestanzahl verfügbarer Pods" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:41 -msgid "" -"\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" -msgstr "" -"\n" -"\t\tErstelle eine ResourceQuota mit dem gegebenen name, hard limits und " -"optional scopes" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:43 msgid "" "\n" @@ -587,80 +163,7 @@ msgstr "" "\n" "\t\tErstelle einen ServiceAccount mit dem gegebenen Namen." -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:30 -msgid "" -"\n" -"\t\tEdit a resource from the default editor.\n" -"\n" -"\t\tThe edit command allows you to directly edit any API resource you can " -"retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " -"or EDITOR\n" -"\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " -"Windows.\n" -"\t\tYou can edit multiple objects, although changes are applied one at a " -"time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " -"you point to must\n" -"\t\tbe previously saved versions of resources.\n" -"\n" -"\t\tEditing is done with the API version used to fetch the resource.\n" -"\t\tTo edit using a specific API version, fully-qualify the resource, " -"version, and group.\n" -"\n" -"\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" -"\n" -"\t\tThe flag --windows-line-endings can be used to force Windows line " -"endings,\n" -"\t\totherwise the default for your operating system will be used.\n" -"\n" -"\t\tIn the event an error occurs while updating, a temporary file will be " -"created on disk\n" -"\t\tthat contains your unapplied changes. The most common error when " -"updating a resource\n" -"\t\tis another editor changing the resource on the server. When this occurs, " -"you will have\n" -"\t\tto apply your changes to the newer version of the resource, or update " -"your temporary\n" -"\t\tsaved copy to include the latest resource version." -msgstr "" -"\n" -"\t\tBearbeite eine Resource mit dem Standardeditor.\n" -"\n" -"\t\tDer edit-Befehl erlaubt es jede API Resource direkt zu bearbeiten, wenn " -"sie mit den\n" -"\t\tCommand-Line-Tools erreichbar ist. Er öffnet den Editor, der in der " -"KUBE_EDITOR oder EDITOR\n" -"\t\tUmgebunsvariable festgelegt ist, oder 'vi' auf Linux und 'notepad' auf " -"Windows.\n" -"\t\tEs ist möglich mehrere Objekte zu bearbeiten, aber die Änderungen werden " -"nacheinander angewendet. Der Befehl\n" -"\t\takzeptiert Dateinamen und Command-Line-Parameter, aber die verwendeten " -"Dateien müssen\n" -"\t\tvorab gespeicherte Versionen von Resourcen sein.\n" -"\n" -"\t\tDie Bearbeitung verwendet die API Version, die genutzt wurde, um die " -"Resource zu lesen.\n" -"\t\tUm eine spezifische API Version zu verwenden, muss die vollständige " -"Resource, Version und Group angegeben werden.\n" -"\n" -"\t\tDas Standardformat ist YAML. Um mit JSON zu arbeiten, setze \"-o json" -"\".\n" -"\n" -"\t\tDie Option --windows-line-endings kann benutzt werden, um Windows Zeilen-" -"umbrüche zu verwenden,\n" -"\t\tansonsten wird der Standard des Betriebssystems verwendet.\n" -"\n" -"\t\tFalls beim Update ein Fehler auftritt, wird eine temporäre Datei auf der " -"Festplatte angelegt,\n" -"\t\tdie die nicht verarbeiteten Änderungen enthält. Der häufigste Fehler " -"beim Bearbeiten einer Resource\n" -"\t\tist ein anderer Editor, der die Resource auf dem Server ändert. Wenn das " -"auftritt, muss man\n" -"\t\tseine Änderungen auf die neue Version anwenden oder seine temporäre\n" -"\t\tgespeicherte Kopie mit der neuesten Resourcenversion aktualisieren." - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:84 msgid "" "\n" "\t\tMark node as schedulable." @@ -668,7 +171,7 @@ msgstr "" "\n" "\t\tMarkiere Knoten als schedulable." -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:54 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:55 msgid "" "\n" "\t\tMark node as unschedulable." @@ -692,19 +195,6 @@ msgstr "" "'kubectl apply -f ' ausgeführt wurde,\n" "\t\tohne andere Teile des Objekts zu aktualisieren." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:47 -msgid "" -"\n" -"\t # Create a new TLS secret named tls-secret with the given key pair:\n" -"\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" -"to/tls.key" -msgstr "" -"\n" -"\t # Erstelle ein neues TLS Secret tl-secret mit dem gegebenen " -"Schlüsselpaar:\n" -"\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" -"to/tls.key" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:42 msgid "" "\n" @@ -844,11 +334,6 @@ msgstr "" "gerouted wird, kann der Service über die IP angesprochen werden, zusätzlich " "zu seiner generierten Service-IP." -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173 -msgid "Apply a configuration to a resource by filename or stdin" -msgstr "" -"Wende eine Konfiguration auf eine Resource über den Dateinamen oder stdin an" - #: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:125 msgid "Approve a certificate signing request" msgstr "Genehmige eine Certificate-Signing-Request" @@ -861,7 +346,7 @@ msgstr "" "Weise Deine eigene ClusterIP zu oder setze sie auf 'None' für einen " "'headless'-Service (kein LoadBalancing)." -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:104 +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:105 msgid "Attach to a running container" msgstr "Weise einem laufenden Container zu" @@ -873,7 +358,7 @@ msgstr "" "ClusterIP, die dem Service zugewiesen werden soll. Freilassen, für " "automatische Zuweisung oder auf 'None' setzen für einen headless-Service." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:100 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:101 msgid "ClusterRole this ClusterRoleBinding should reference" msgstr "ClusterRole, die das ClusterRoleBinding referenzieren soll" @@ -885,58 +370,22 @@ msgstr "ClusterRole, die das RoleBinding referenzieren soll" msgid "Convert config files between different API versions" msgstr "Konvertiere Config-Dateien zwischen verschiedenen API Versionen" -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:104 -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:105 +#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:106 msgid "Copy files and directories to and from containers." msgstr "Kopiere Dateien und Ordner aus/in Container(n)." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:86 -msgid "Create a ClusterRoleBinding for a particular ClusterRole" -msgstr "Erstelle ein ClusterRoleBinding für eine bestimmte ClusterRole" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:323 -msgid "Create a LoadBalancer service." -msgstr "Erstelle einen LoadBalancer-Service." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:286 -msgid "Create a NodePort service." -msgstr "Erstelle einen NodePort-Service." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89 -msgid "Create a RoleBinding for a particular Role or ClusterRole" -msgstr "Erstelle ein RoleBinding für eine bestimmte Role oder ClusterRole" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:94 msgid "Create a TLS secret" msgstr "Erstelle ein TLS-Secret" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:124 -msgid "Create a configmap from a local file, directory or literal value" -msgstr "" -"Erstelle eine ConfigMap von einer Datei, einem Ordner oder einem festen Wert" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:83 msgid "Create a namespace with the specified name" msgstr "Erstelle einen Namespace mit dem gegebenen Namen" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:95 -msgid "Create a pod disruption budget with the specified name." -msgstr "Erstelle ein Pod-Disruption-Budget mit dem gegebenen Namen." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:91 -msgid "Create a quota with the specified name." -msgstr "Erstelle eine Quota mit dem gegebenen Namen." - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:134 msgid "Create a secret for use with a Docker registry" msgstr "Erstelle ein Secret für die Benutzung mit einer Docker-Registry" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:137 -msgid "Create a secret from a local file, directory or literal value" -msgstr "" -"Erstelle ein Secret von einer lokalen Datei, einem Ordner oder einem festen " -"Wert" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:49 msgid "Create a secret using specified subcommand" msgstr "Erstelle ein Secret mit dem angegebenen Sub-Befehl" @@ -945,34 +394,15 @@ msgstr "Erstelle ein Secret mit dem angegebenen Sub-Befehl" msgid "Create a service account with the specified name" msgstr "Erstelle einen ServiceAccount mit dem gegebenen Namen" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:48 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:49 -msgid "Create a service using specified subcommand." -msgstr "Erstelle einen Servuce mit dem angegebenen Sub-Befehl" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:363 -msgid "Create an ExternalName service." -msgstr "Erstelle einen ExternalName-Service." - -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:135 -msgid "" -"Delete resources by filenames, stdin, resources and names, or by resources " -"and label selector" -msgstr "" -"Lösche Resourcen von einer Datei, stdin, resources- und names- oder mit " -"resources- und label-Selektor" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42 msgid "Delete the specified cluster from the kubeconfig" msgstr "Lösche das angegebene Cluster aus der kubeconfig" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42 msgid "Delete the specified context from the kubeconfig" msgstr "Lösche den angegebenen Kontext aus der kubeconfig" -#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:170 +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:174 msgid "Deny a certificate signing request" msgstr "Lehne eine Certificate-Signing-Request ab" @@ -980,22 +410,6 @@ msgstr "Lehne eine Certificate-Signing-Request ab" msgid "Describe one or many contexts" msgstr "Beschreibe einen oder mehrere Kontexte" -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:80 -msgid "Display Resource (CPU/Memory) usage of nodes" -msgstr "Zeige Resourcennutzung (CPU/Memory) von Knoten" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:96 -msgid "Display Resource (CPU/Memory) usage of pods" -msgstr "Zeige Resourcennutzung (CPU/Memory) von Pods" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50 -msgid "Display Resource (CPU/Memory) usage." -msgstr "Zeige Resourcennutzung (CPU/Memory)." - -#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo.go:65 -msgid "Display cluster info" -msgstr "Zeige Cluster-Info" - #: staging/src/k8s.io/kubectl/pkg/cmd/config/get_clusters.go:41 msgid "Display clusters defined in the kubeconfig" msgstr "Zeige Cluster, die in der kubeconfig definiert sind" @@ -1005,27 +419,15 @@ msgid "Display merged kubeconfig settings or a specified kubeconfig file" msgstr "" "Zeige vereinte kubeconfig-Einstellungen oder die angegebene kubeconfig-Datei" -#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:161 +#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:165 msgid "Display one or many resources" msgstr "Zeige eine oder mehrere Resourcen" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 -msgid "Displays the current-context" -msgstr "Zeige den aktuellen Kontext" - -#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79 -msgid "Documentation of resources" -msgstr "Dokumentation einer Resource" - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:181 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:184 msgid "Drain node in preparation for maintenance" msgstr "Leere Knoten, um eine Wartung vorzubereiten" -#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:74 -msgid "Dump lots of relevant info for debugging and diagnosis" -msgstr "Zeige viele relevante Informationen für Debugging und Diagnose" - -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:76 +#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:77 msgid "Edit a resource on the server" msgstr "Bearbeite eine Resource auf dem Server" @@ -1033,7 +435,7 @@ msgstr "Bearbeite eine Resource auf dem Server" msgid "Email for Docker registry" msgstr "E-Mail für Docker-Registry" -#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:88 +#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:89 msgid "Execute a command in a container" msgstr "Führe einen Befehl im Container aus" @@ -1045,15 +447,15 @@ msgstr "Leite einen oder mehrere lokale Ports an einen Pod weiter" msgid "Help about any command" msgstr "Hilfe für jeden Befehl" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:96 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:98 msgid "Mark node as schedulable" msgstr "Markiere Knoten als schedulable" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:68 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:69 msgid "Mark node as unschedulable" msgstr "Markiere Knoten als unschedulable" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:83 msgid "Mark the provided resource as paused" msgstr "Markiere die gegebene Resource als pausiert" @@ -1074,7 +476,7 @@ msgstr "" "Name oder Nummer des Ports in dem Container, zu dem der Service Daten leiten " "soll. Optional." -#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:173 +#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:174 msgid "" "Only return logs after a specific date (RFC3339). Defaults to all logs. Only " "one of since-time / since may be used." @@ -1082,7 +484,7 @@ msgstr "" "Zeige nur Logs nach einem bestimmten Datum (RFC3339) an. Zeigt standardmäßig " "alle logs. Es kann entweder since-time oder since benutzt werden." -#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:113 +#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:112 msgid "Output shell completion code for the specified shell (bash or zsh)" msgstr "Zeige Shell-Completion-Code für die angegebene Shell (bash oder zsh)" @@ -1098,7 +500,7 @@ msgstr "Pfad des Public-Key-Zertifikats im PEM-Format." msgid "Path to private key associated with given certificate." msgstr "Pfad zum Private-Key, der zum gegebenen Zertifikat passt." -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:129 +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:130 msgid "" "Precondition for resource version. Requires that the current resource " "version match this value in order to scale." @@ -1119,11 +521,7 @@ msgstr "Schreibt die Liste von Optionen, die alle Befehle erben" msgid "Print the logs for a container in a pod" msgstr "Schreibt die Logs für einen Container in einem Pod" -#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:115 -msgid "Replace a resource by filename or stdin" -msgstr "Ersetze eine Resource von einem Dateinamen oder stdin" - -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:87 msgid "Resume a paused resource" msgstr "Setze eine pausierte Resource fort" @@ -1143,43 +541,15 @@ msgstr "Starte einen Proxy zum Kubernetes-API-Server" msgid "Set specific features on objects" msgstr "Setze bestimmte Features auf Objekten" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:101 -msgid "" -"Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." -msgstr "" -"Setze die Annotation Last-Applied-Configuration auf einem Live-Objekt auf " -"den Inhalt einer Datei." - #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_selector.go:104 msgid "Set the selector on a resource" msgstr "Setze den Selektor auf einer Resource" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 -msgid "Sets a cluster entry in kubeconfig" -msgstr "Setze einen Cluster-Eintrag in der kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 -msgid "Sets a context entry in kubeconfig" -msgstr "Setze einen Kontext-Eintrag in der kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 -msgid "Sets a user entry in kubeconfig" -msgstr "Setze einen User-Eintrag in der kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 -msgid "Sets an individual value in a kubeconfig file" -msgstr "Setze einen einzelnen Value in einer kubeconfig-Datei" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:51 -msgid "Sets the current-context in a kubeconfig file" -msgstr "Setze den aktuellen Kontext in einer kubeconfig-Datei" - -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:106 +#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:107 msgid "Show details of a specific resource or group of resources" msgstr "Zeige Details zu einer bestimmten Resource oder Gruppe von Resourcen" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:101 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:102 msgid "Show the status of the rollout" msgstr "Zeige den Status des Rollout" @@ -1187,14 +557,6 @@ msgstr "Zeige den Status des Rollout" msgid "Synonym for --target-port" msgstr "Synonym für --target-port" -#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:134 -msgid "" -"Take a replication controller, service, deployment or pod and expose it as a " -"new Kubernetes Service" -msgstr "" -"Nehme einen Replication Controller, Service, Deployment oder Pod und biete " -"ihn als neuen Kubernetes-Service an" - #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:174 msgid "The image for the container to run." msgstr "Das Image, dass auf dem Container gestartet werden soll." @@ -1255,27 +617,23 @@ msgstr "" msgid "The type of secret to create" msgstr "Der Typ des zu erstellenden Secrets" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:87 msgid "Undo a previous rollout" msgstr "Widerrufe ein vorheriges Rollout" -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110 -msgid "Update image of a pod template" -msgstr "Aktualisiere das Image einer Pod-Template" - #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_resources.go:116 msgid "Update resource requests/limits on objects with pod templates" msgstr "Aktualisiere Resourcen requests/limits auf Objekten mit Pod-Templates" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:134 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:135 msgid "Update the annotations on a resource" msgstr "Aktualisiere die Annotationen auf einer Resource" -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:132 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:133 msgid "Update the labels on a resource" msgstr "Aktualisiere die Labels auf einer Resource" -#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:108 +#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:109 msgid "Update the taints on one or more nodes" msgstr "Aktualisiere die Taints auf einem oder mehreren Knoten" @@ -1283,20 +641,40 @@ msgstr "Aktualisiere die Taints auf einem oder mehreren Knoten" msgid "Username for Docker registry authentication" msgstr "Username für Authentifizierung bei der Docker-Registry" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77 -msgid "View latest last-applied-configuration annotations of a resource/object" -msgstr "" -"Zeige die aktuelle Annotation Last-Applied-Configuration einer Resource / " -"eines Object" - -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:83 msgid "View rollout history" msgstr "Zeige rollout-Verlauf" -#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:478 +#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:227 msgid "kubectl controls the Kubernetes cluster manager" msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" +#~ msgid "" +#~ "\n" +#~ "\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using " +#~ "the cluster-admin ClusterRole\n" +#~ "\t\t kubectl create clusterrolebinding cluster-admin --" +#~ "clusterrole=cluster-admin --user=user1 --user=user2 --group=group1" +#~ msgstr "" +#~ "\n" +#~ "\t\t # Erstellt ein ClusterRoleBinding für user1, user2 und group1 mit " +#~ "der ClusterRole cluster-admin\n" +#~ "\t\t kubectl create clusterrolebinding cluster-admin --" +#~ "clusterrole=cluster-admin --user=user1 --user=user2 --group=group1" + +#~ msgid "" +#~ "\n" +#~ "\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " +#~ "ClusterRole\n" +#~ "\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +#~ "user=user2 --group=group1" +#~ msgstr "" +#~ "\n" +#~ "\t\t # Erstellt ein RoleBinding für user1, user2 und group1 mit der " +#~ "ClusterRole admin\n" +#~ "\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +#~ "user=user2 --group=group1" + #~ msgid "" #~ "\n" #~ "\t\t # Create a new configmap named my-config based on folder bar\n" @@ -1379,6 +757,28 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "\t\tkubectl apply --prune -f manifest.yaml --all --prune-whitelist=core/" #~ "v1/ConfigMap" +#, c-format +#~ msgid "" +#~ "\n" +#~ "\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 " +#~ "and 10, no target CPU utilization specified so a default autoscaling " +#~ "policy will be used:\n" +#~ "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" +#~ "\n" +#~ "\t\t# Auto scale a replication controller \"foo\", with the number of " +#~ "pods between 1 and 5, target CPU utilization at 80%:\n" +#~ "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Auto-skaliere ein Deployment \"foo\", mit einer Anzahl an Pods " +#~ "zwischen 2 und 10, eine Ziel-CPU-Auslastung ist angegeben, sodass eine " +#~ "Standard-autoskalierungsregel verwendet wird:\n" +#~ "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" +#~ "\n" +#~ "\t\t# Auto-skaliere einen Replication-Controller \"foo\", mit einer " +#~ "Anzahl an Pods zwischen 1 und 5, mit einer Ziel-CPU-Auslastung von 80%:\n" +#~ "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" + #~ msgid "" #~ "\n" #~ "\t\t# Convert 'pod.yaml' to latest version and print to stdout.\n" @@ -1451,6 +851,55 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "\t\tkubectl create role pod-reader --verb=get --verg=list --verb=watch --" #~ "resource=pods --resource-name=readablepod" +#~ msgid "" +#~ "\n" +#~ "\t\t# Create a new resourcequota named my-quota\n" +#~ "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2," +#~ "services=3,replicationcontrollers=2,resourcequotas=1,secrets=5," +#~ "persistentvolumeclaims=10\n" +#~ "\n" +#~ "\t\t# Create a new resourcequota named best-effort\n" +#~ "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Erstellt eine neue ResourceQuota my-quota\n" +#~ "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2," +#~ "services=3,replicationcontrollers=2,resourcequotas=1,secrets=5," +#~ "persistentvolumeclaims=10\n" +#~ "\n" +#~ "\t\t# Erstellt eine neue ResourceQuota best-effort\n" +#~ "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" + +#, c-format +#~ msgid "" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=rails label\n" +#~ "\t\t# and require at least one of them being available at any point in " +#~ "time.\n" +#~ "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" +#~ "available=1\n" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=nginx label\n" +#~ "\t\t# and require at least half of the pods selected to be available at " +#~ "any point in time.\n" +#~ "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Erstellt ein Pod-Disruption-Budget my-pdb, dass alle Pods mit dem " +#~ "Label app=rails auswählt\n" +#~ "\t\t# und sicherstellt, dass mindestens einer von ihnen zu jedem " +#~ "Zeitpunkt verfügbar ist.\n" +#~ "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" +#~ "available=1\n" +#~ "\n" +#~ "\t\t# Erstellt ein Pod-Disruption-Budget my-pdb, dass alle Pods mit dem " +#~ "Label app=nginx auswählt\n" +#~ "\t\t# und sicherstellt, dass mindestens die Hälfte der gewählten Pods zu " +#~ "jedem Zeitpunkt verfügbar ist.\n" +#~ "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" + #~ msgid "" #~ "\n" #~ "\t\t# Create a pod using the data in pod.json.\n" @@ -1590,6 +1039,100 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "\t\t# Löscht alle Pods\n" #~ "\t\tkubectl delete pods --all" +#~ msgid "" +#~ "\n" +#~ "\t\t# Describe a node\n" +#~ "\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" +#~ "\n" +#~ "\t\t# Describe a pod\n" +#~ "\t\tkubectl describe pods/nginx\n" +#~ "\n" +#~ "\t\t# Describe a pod identified by type and name in \"pod.json\"\n" +#~ "\t\tkubectl describe -f pod.json\n" +#~ "\n" +#~ "\t\t# Describe all pods\n" +#~ "\t\tkubectl describe pods\n" +#~ "\n" +#~ "\t\t# Describe pods by label name=myLabel\n" +#~ "\t\tkubectl describe po -l name=myLabel\n" +#~ "\n" +#~ "\t\t# Describe all pods managed by the 'frontend' replication controller " +#~ "(rc-created pods\n" +#~ "\t\t# get the name of the rc as a prefix in the pod the name).\n" +#~ "\t\tkubectl describe pods frontend" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Beschreibt einen Knoten\n" +#~ "\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" +#~ "\n" +#~ "\t\t# Beschreibt einen Pod\n" +#~ "\t\tkubectl describe pods/nginx\n" +#~ "\n" +#~ "\t\t# Beschreibt einen Pod mit type und name aus \"pod.json\"\n" +#~ "\t\tkubectl describe -f pod.json\n" +#~ "\n" +#~ "\t\t# Beschreibt alle Pods\n" +#~ "\t\tkubectl describe pods\n" +#~ "\n" +#~ "\t\t# Beschreibt Pods mit dem Label name=myLabel\n" +#~ "\t\tkubectl describe po -l name=myLabel\n" +#~ "\n" +#~ "\t\t# Beschreibt alle Pods, die vom ReplicationController 'frontend' " +#~ "verwaltet werden (rc-erstellte Pods\n" +#~ "\t\t# bekommen den Namen des rc als Prefix im Podnamen).\n" +#~ "\t\tkubectl describe pods frontend" + +#~ msgid "" +#~ "\n" +#~ "\t\t# Drain node \"foo\", even if there are pods not managed by a " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" +#~ "\t\t$ kubectl drain foo --force\n" +#~ "\n" +#~ "\t\t# As above, but abort if there are pods not managed by a " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use " +#~ "a grace period of 15 minutes.\n" +#~ "\t\t$ kubectl drain foo --grace-period=900" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Leere den Knoten \"foo\", selbst wenn er Pods enthält, die nicht " +#~ "von einem ReplicationController, ReplicaSet, Job, DaemonSet oder " +#~ "StatefulSet verwaltet werden.\n" +#~ "\t\t$ kubectl drain foo --force\n" +#~ "\n" +#~ "\t\t# Wie zuvor, aber es wird abgebrochen, wenn er Pods enthält, die " +#~ "nicht von einem ReplicationController, ReplicaSet, Job, DaemonSet oder " +#~ "StatefulSet verwaltet werden und mit einer Schonfrist von 15 Minuten.\n" +#~ "\t\t$ kubectl drain foo --grace-period=900" + +#~ msgid "" +#~ "\n" +#~ "\t\t# Edit the service named 'docker-registry':\n" +#~ "\t\tkubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Use an alternative editor\n" +#~ "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" +#~ "\t\tkubectl edit job.v1.batch/myjob -o json\n" +#~ "\n" +#~ "\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " +#~ "config in its annotation:\n" +#~ "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Bearbeite den Service 'docker-registry':\n" +#~ "\t\tkubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Benutze einen anderen Editor\n" +#~ "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Bearbeite den Job 'myjob' in JSON mit dem v1 API Format:\n" +#~ "\t\tkubectl edit job.v1.batch/myjob -o json\n" +#~ "\n" +#~ "\t\t# Bearbeite das Deployment 'mydeployment' in YAML und speichere die " +#~ "veränderte Konfiguration in ihrer Annotation:\n" +#~ "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" + #~ msgid "" #~ "\n" #~ "\t\t# Get output from running 'date' from pod 123456-7890, using the " @@ -1800,6 +1343,24 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "Pods weiter\n" #~ "\t\tkubectl port-forward mypod 0:5000" +#~ msgid "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as schedulable.\n" +#~ "\t\t$ kubectl uncordon foo" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Markiere Knoten \"foo\" als schedulable.\n" +#~ "\t\t$ kubectl uncordon foo" + +#~ msgid "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as unschedulable.\n" +#~ "\t\tkubectl cordon foo" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Markiere Knoten \"foo\" als unschedulable.\n" +#~ "\t\tkubectl cordon foo" + #~ msgid "" #~ "\n" #~ "\t\t# Partially update a node using strategic merge patch\n" @@ -1849,6 +1410,35 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "\t\t# Gebe die Adresse des Masters und des Cluster-Services aus\n" #~ "\t\tkubectl cluster-info" +#~ msgid "" +#~ "\n" +#~ "\t\t# Replace a pod using the data in pod.json.\n" +#~ "\t\tkubectl replace -f ./pod.json\n" +#~ "\n" +#~ "\t\t# Replace a pod based on the JSON passed into stdin.\n" +#~ "\t\tcat pod.json | kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Update a single-container pod's image version (tag) to v4\n" +#~ "\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' " +#~ "| kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Force replace, delete and then re-create the resource\n" +#~ "\t\tkubectl replace --force -f ./pod.json" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Ersetze einen Pod mit den Daten aus pod.json.\n" +#~ "\t\tkubectl replace -f ./pod.json\n" +#~ "\n" +#~ "\t\t# Ersetze einen Pod mit den JSON-Daten von stdin.\n" +#~ "\t\tcat pod.json | kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Setze die Pod-Image-Version (tag) eines einzelnen Containers zu v4\n" +#~ "\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' " +#~ "| kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Erzwinge das Ersetzen, Löschen und Neu-Erstellen der Resource\n" +#~ "\t\tkubectl replace --force -f ./pod.json" + #~ msgid "" #~ "\n" #~ "\t\t# Return snapshot logs from pod nginx with only one container\n" @@ -1973,6 +1563,38 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "\t\t# Skaliere den Job cron auf 3.\n" #~ "\t\tkubectl scale --replicas=3 job/cron" +#~ msgid "" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml\n" +#~ "\n" +#~ "\t\t# Execute set-last-applied against each configuration file in a " +#~ "directory.\n" +#~ "\t\tkubectl apply set-last-applied -f path/\n" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file, will create the annotation if it does not already " +#~ "exist.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml --create-" +#~ "annotation=true\n" +#~ "\t\t" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Setze die Last-Applied-Configuration einer Resource auf den Inhalt " +#~ "einer Datei.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml\n" +#~ "\n" +#~ "\t\t# Führe Set-Last-Applied auf jeder Konfigurationsdatei in einem " +#~ "Ordner aus.\n" +#~ "\t\tkubectl apply set-last-applied -f path/\n" +#~ "\n" +#~ "\t\t# Setze die Last-Applied-Configuration einer Resource auf den Inhalt " +#~ "einer Datei; erstellt die Annotation, wenn sie noch nicht existiert.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml --create-" +#~ "annotation=true\n" +#~ "\t\t" + #~ msgid "" #~ "\n" #~ "\t\t# Shut down foo.\n" @@ -2124,6 +1746,52 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "\t\t# Entferne vom Knoten 'foo' alle Tains mit dem Key 'dedicated'\n" #~ "\t\tkubectl taint nodes foo dedicated-" +#~ msgid "" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +#~ "\t\tkubectl label pods foo unhealthy=true\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " +#~ "overwriting any existing value.\n" +#~ "\t\tkubectl label --overwrite pods foo status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update all pods in the namespace\n" +#~ "\t\tkubectl label pods --all status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" +#~ "\t\tkubectl label -f pod.json status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" +#~ "\t\t# Does not require the --overwrite flag.\n" +#~ "\t\tkubectl label pods foo bar-" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Aktualisiere den Pod 'foo' mit dem Label 'unhealthy' und dem Value " +#~ "'true'.\n" +#~ "\t\tkubectl label pods foo unhealthy=true\n" +#~ "\n" +#~ "\t\t# Aktualisiere den Pod 'foo' mit dem Label 'status' und dem Value " +#~ "'unhealthy' und überschreibe alle bisherigen Values.\n" +#~ "\t\tkubectl label --overwrite pods foo status=unhealthy\n" +#~ "\n" +#~ "\t\t# Aktualisiere alle Pods im Namespace\n" +#~ "\t\tkubectl label pods --all status=unhealthy\n" +#~ "\n" +#~ "\t\t# Aktualisiere den Pod mit type und name aus \"pod.json\"\n" +#~ "\t\tkubectl label -f pod.json status=unhealthy\n" +#~ "\n" +#~ "\t\t# Aktualisiere den Pod 'foo', wenn die Resource sich nicht von " +#~ "version 1 unterscheidet.\n" +#~ "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" +#~ "\n" +#~ "\t\t# Aktualisiere den Pod 'foo', indem das Label 'bar' gelöscht wird, " +#~ "wenn es existiert.\n" +#~ "\t\t# Benötigt kein --overwrite flag.\n" +#~ "\t\tkubectl label pods foo bar-" + #~ msgid "" #~ "\n" #~ "\t\t# Update pods of frontend-v1 using new replication controller data in " @@ -2167,6 +1835,24 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "und mache es rückgängig.\n" #~ "\t\tkubectl rolling-update frontend-v1 frontend-v2 --rollback" +#~ msgid "" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by type/name in " +#~ "YAML.\n" +#~ "\t\tkubectl apply view-last-applied deployment/nginx\n" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by file in JSON\n" +#~ "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Zeige die Annotation Last-Applied-Configuration mit type/name in " +#~ "YAML an.\n" +#~ "\t\tkubectl apply view-last-applied deployment/nginx\n" +#~ "\n" +#~ "\t\t# Zeige die Annotation Last-applied-configuration mit der Datei in " +#~ "JSON an\n" +#~ "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" + #~ msgid "" #~ "\n" #~ "\t\tApply a configuration to a resource by filename or stdin.\n" @@ -2193,6 +1879,27 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "sie nicht, wenn der aktuelle Zustand nicht bekannt ist. Siehe https://" #~ "issues.k8s.io/34274." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\tErstelle eine ClusterRole." + +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a ClusterRoleBinding for a particular ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\tErstelle ein ClusterRoleBinding für eine bestimmte ClusterRole." + +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a RoleBinding for a particular Role or ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\tErstelle ein RoleBinding für eine bestimmte ClusterRole." + #~ msgid "" #~ "\n" #~ "\t\tCreate a TLS secret from the given public/private key pair.\n" @@ -2206,6 +1913,42 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "\t\tDas Public/Private-Schlüsselpaar muss vorab bestehen. Das Public-Key-" #~ "Zertifikat muss im PEM-Format sein und zum gegebenen Private-Key passen." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a configmap based on a file, directory, or specified literal " +#~ "value.\n" +#~ "\n" +#~ "\t\tA single configmap may package one or more key/value pairs.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a file, the key will default to " +#~ "the basename of the file, and the value will\n" +#~ "\t\tdefault to the file content. If the basename is an invalid key, you " +#~ "may specify an alternate key.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a directory, each file whose " +#~ "basename is a valid key in the directory will be\n" +#~ "\t\tpackaged into the configmap. Any directory entries except regular " +#~ "files are ignored (e.g. subdirectories,\n" +#~ "\t\tsymlinks, devices, pipes, etc)." +#~ msgstr "" +#~ "\n" +#~ "\t\tErstelle eine ConfigMap basierend auf einer Datei, einem Order oder " +#~ "einem gegebenen Wert.\n" +#~ "\n" +#~ "\t\tEine einzelne ConfigMap kann eins oder mehr Key/Value-Paare " +#~ "beinhalten.\n" +#~ "\n" +#~ "\t\tWenn man eine ConfigMap von einer Datei erstellt, wird der Key " +#~ "standardmäßig der Name der Datei, und der Wert wird\n" +#~ "\t\tstandardmäßig der Dateiinhalt. Wenn der Dateiname ein ungültiger Key " +#~ "ist, kann ein anderer Key angegeben werden.\n" +#~ "\n" +#~ "\t\tWenn man eine ConfigMap von einem Ordner erstellt, wird jede Datei, " +#~ "deren Name ein gültiger Key ist\n" +#~ "\t\tin die ConfigMap aufgenommen. Jegliche Einträge im Ordner, die keine " +#~ "regulären Dateien sind, werden ignoriert (z.B. SubDirectories, \n" +#~ "\t\tSymLinks, Devices, Pipes, usw)." + #~ msgid "" #~ "\n" #~ "\t\tCreate a new secret for use with Docker registries.\n" @@ -2254,6 +1997,15 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "\t\tindem man ein dockercfg secret erstellt und zu seinem ServiceAccount " #~ "hinzufügt." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a pod disruption budget with the specified name, selector, and " +#~ "desired minimum available pods" +#~ msgstr "" +#~ "\n" +#~ "\t\tErstelle ein Pod-Disruption-Budget mit dem gegebenen name, selector " +#~ "und der gewünschten Mindestanzahl verfügbarer Pods" + #~ msgid "" #~ "\n" #~ "\t\tCreate a resource by filename or stdin.\n" @@ -2265,6 +2017,15 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "\n" #~ "\t\tJSON- und YAML-Formate werden akzeptiert." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a resourcequota with the specified name, hard limits and " +#~ "optional scopes" +#~ msgstr "" +#~ "\n" +#~ "\t\tErstelle eine ResourceQuota mit dem gegebenen name, hard limits und " +#~ "optional scopes" + #~ msgid "" #~ "\n" #~ "\t\tCreate a secret based on a file, directory, or specified literal " @@ -2578,6 +2339,78 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "\n" #~ "\t\t![Workflow](http://kubernetes.io/images/docs/kubectl_drain.svg)" +#~ msgid "" +#~ "\n" +#~ "\t\tEdit a resource from the default editor.\n" +#~ "\n" +#~ "\t\tThe edit command allows you to directly edit any API resource you can " +#~ "retrieve via the\n" +#~ "\t\tcommand line tools. It will open the editor defined by your " +#~ "KUBE_EDITOR, or EDITOR\n" +#~ "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' " +#~ "for Windows.\n" +#~ "\t\tYou can edit multiple objects, although changes are applied one at a " +#~ "time. The command\n" +#~ "\t\taccepts filenames as well as command line arguments, although the " +#~ "files you point to must\n" +#~ "\t\tbe previously saved versions of resources.\n" +#~ "\n" +#~ "\t\tEditing is done with the API version used to fetch the resource.\n" +#~ "\t\tTo edit using a specific API version, fully-qualify the resource, " +#~ "version, and group.\n" +#~ "\n" +#~ "\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" +#~ "\n" +#~ "\t\tThe flag --windows-line-endings can be used to force Windows line " +#~ "endings,\n" +#~ "\t\totherwise the default for your operating system will be used.\n" +#~ "\n" +#~ "\t\tIn the event an error occurs while updating, a temporary file will be " +#~ "created on disk\n" +#~ "\t\tthat contains your unapplied changes. The most common error when " +#~ "updating a resource\n" +#~ "\t\tis another editor changing the resource on the server. When this " +#~ "occurs, you will have\n" +#~ "\t\tto apply your changes to the newer version of the resource, or update " +#~ "your temporary\n" +#~ "\t\tsaved copy to include the latest resource version." +#~ msgstr "" +#~ "\n" +#~ "\t\tBearbeite eine Resource mit dem Standardeditor.\n" +#~ "\n" +#~ "\t\tDer edit-Befehl erlaubt es jede API Resource direkt zu bearbeiten, " +#~ "wenn sie mit den\n" +#~ "\t\tCommand-Line-Tools erreichbar ist. Er öffnet den Editor, der in der " +#~ "KUBE_EDITOR oder EDITOR\n" +#~ "\t\tUmgebunsvariable festgelegt ist, oder 'vi' auf Linux und 'notepad' " +#~ "auf Windows.\n" +#~ "\t\tEs ist möglich mehrere Objekte zu bearbeiten, aber die Änderungen " +#~ "werden nacheinander angewendet. Der Befehl\n" +#~ "\t\takzeptiert Dateinamen und Command-Line-Parameter, aber die " +#~ "verwendeten Dateien müssen\n" +#~ "\t\tvorab gespeicherte Versionen von Resourcen sein.\n" +#~ "\n" +#~ "\t\tDie Bearbeitung verwendet die API Version, die genutzt wurde, um die " +#~ "Resource zu lesen.\n" +#~ "\t\tUm eine spezifische API Version zu verwenden, muss die vollständige " +#~ "Resource, Version und Group angegeben werden.\n" +#~ "\n" +#~ "\t\tDas Standardformat ist YAML. Um mit JSON zu arbeiten, setze \"-o json" +#~ "\".\n" +#~ "\n" +#~ "\t\tDie Option --windows-line-endings kann benutzt werden, um Windows " +#~ "Zeilen-umbrüche zu verwenden,\n" +#~ "\t\tansonsten wird der Standard des Betriebssystems verwendet.\n" +#~ "\n" +#~ "\t\tFalls beim Update ein Fehler auftritt, wird eine temporäre Datei auf " +#~ "der Festplatte angelegt,\n" +#~ "\t\tdie die nicht verarbeiteten Änderungen enthält. Der häufigste Fehler " +#~ "beim Bearbeiten einer Resource\n" +#~ "\t\tist ein anderer Editor, der die Resource auf dem Server ändert. Wenn " +#~ "das auftritt, muss man\n" +#~ "\t\tseine Änderungen auf die neue Version anwenden oder seine temporäre\n" +#~ "\t\tgespeicherte Kopie mit der neuesten Resourcenversion aktualisieren." + #~ msgid "" #~ "\n" #~ "\t\tOutput shell completion code for the specified shell (bash or zsh).\n" @@ -2765,6 +2598,18 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html um " #~ "zu erfahren, ob ein Feld mutable ist." +#~ msgid "" +#~ "\n" +#~ "\t # Create a new TLS secret named tls-secret with the given key pair:\n" +#~ "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --" +#~ "key=path/to/tls.key" +#~ msgstr "" +#~ "\n" +#~ "\t # Erstelle ein neues TLS Secret tl-secret mit dem gegebenen " +#~ "Schlüsselpaar:\n" +#~ "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --" +#~ "key=path/to/tls.key" + #~ msgid "" #~ "\n" #~ "\t # Create a new secret named my-secret with keys for each file in " @@ -2876,6 +2721,11 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ msgid "A schedule in the Cron format the job should be run with." #~ msgstr "Ein Schedule im Cron Format, dass der Job nutzen soll." +#~ msgid "Apply a configuration to a resource by filename or stdin" +#~ msgstr "" +#~ "Wende eine Konfiguration auf eine Resource über den Dateinamen oder stdin " +#~ "an" + #~ msgid "Auto-scale a Deployment, ReplicaSet, or ReplicationController" #~ msgstr "Auto-skaliere ein Deployment, ReplicaSet oder ReplicationController" @@ -2888,20 +2738,82 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "image angegeben ist, sonst ignoriert. Verpflichtend, wenn --image auf " #~ "einem Multi-Container-Pod verwendet wird" +#~ msgid "Create a ClusterRoleBinding for a particular ClusterRole" +#~ msgstr "Erstelle ein ClusterRoleBinding für eine bestimmte ClusterRole" + +#~ msgid "Create a LoadBalancer service." +#~ msgstr "Erstelle einen LoadBalancer-Service." + +#~ msgid "Create a NodePort service." +#~ msgstr "Erstelle einen NodePort-Service." + +#~ msgid "Create a RoleBinding for a particular Role or ClusterRole" +#~ msgstr "Erstelle ein RoleBinding für eine bestimmte Role oder ClusterRole" + #~ msgid "Create a clusterIP service." #~ msgstr "Erstelle einen ClusterIP-Service" +#~ msgid "Create a configmap from a local file, directory or literal value" +#~ msgstr "" +#~ "Erstelle eine ConfigMap von einer Datei, einem Ordner oder einem festen " +#~ "Wert" + #~ msgid "Create a deployment with the specified name." #~ msgstr "Erstelle ein Deployment mit dem gegebenen Namen." +#~ msgid "Create a pod disruption budget with the specified name." +#~ msgstr "Erstelle ein Pod-Disruption-Budget mit dem gegebenen Namen." + +#~ msgid "Create a quota with the specified name." +#~ msgstr "Erstelle eine Quota mit dem gegebenen Namen." + #~ msgid "Create a resource by filename or stdin" #~ msgstr "Erstelle eine Resource von einer Datei oder stdin" +#~ msgid "Create a secret from a local file, directory or literal value" +#~ msgstr "" +#~ "Erstelle ein Secret von einer lokalen Datei, einem Ordner oder einem " +#~ "festen Wert" + +#~ msgid "Create a service using specified subcommand." +#~ msgstr "Erstelle einen Servuce mit dem angegebenen Sub-Befehl" + +#~ msgid "Create an ExternalName service." +#~ msgstr "Erstelle einen ExternalName-Service." + +#~ msgid "" +#~ "Delete resources by filenames, stdin, resources and names, or by " +#~ "resources and label selector" +#~ msgstr "" +#~ "Lösche Resourcen von einer Datei, stdin, resources- und names- oder mit " +#~ "resources- und label-Selektor" + #~ msgid "Deprecated: Gracefully shut down a resource by name or filename" #~ msgstr "" #~ "Veraltet: Graziöses herunterfahren einer Resource über den Namen oder " #~ "Dateinamen" +#~ msgid "Display Resource (CPU/Memory) usage of nodes" +#~ msgstr "Zeige Resourcennutzung (CPU/Memory) von Knoten" + +#~ msgid "Display Resource (CPU/Memory) usage of pods" +#~ msgstr "Zeige Resourcennutzung (CPU/Memory) von Pods" + +#~ msgid "Display Resource (CPU/Memory) usage." +#~ msgstr "Zeige Resourcennutzung (CPU/Memory)." + +#~ msgid "Display cluster info" +#~ msgstr "Zeige Cluster-Info" + +#~ msgid "Displays the current-context" +#~ msgstr "Zeige den aktuellen Kontext" + +#~ msgid "Documentation of resources" +#~ msgstr "Dokumentation einer Resource" + +#~ msgid "Dump lots of relevant info for debugging and diagnosis" +#~ msgstr "Zeige viele relevante Informationen für Debugging und Diagnose" + #~ msgid "" #~ "Explicit policy for when to pull container images. Required when --image " #~ "is same as existing image, ignored otherwise." @@ -2922,6 +2834,9 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ msgid "Perform a rolling update of the given ReplicationController" #~ msgstr "Führe ein Rolling-Update des gegebenen ReplicationControllers aus" +#~ msgid "Replace a resource by filename or stdin" +#~ msgstr "Ersetze eine Resource von einem Dateinamen oder stdin" + #~ msgid "" #~ "Set a new size for a Deployment, ReplicaSet, Replication Controller, or " #~ "Job" @@ -2929,6 +2844,35 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ "Setze eine neue Größe für ein Deployment, ReplicaSet, " #~ "ReplicationController oder Job" +#~ msgid "" +#~ "Set the last-applied-configuration annotation on a live object to match " +#~ "the contents of a file." +#~ msgstr "" +#~ "Setze die Annotation Last-Applied-Configuration auf einem Live-Objekt auf " +#~ "den Inhalt einer Datei." + +#~ msgid "Sets a cluster entry in kubeconfig" +#~ msgstr "Setze einen Cluster-Eintrag in der kubeconfig" + +#~ msgid "Sets a context entry in kubeconfig" +#~ msgstr "Setze einen Kontext-Eintrag in der kubeconfig" + +#~ msgid "Sets a user entry in kubeconfig" +#~ msgstr "Setze einen User-Eintrag in der kubeconfig" + +#~ msgid "Sets an individual value in a kubeconfig file" +#~ msgstr "Setze einen einzelnen Value in einer kubeconfig-Datei" + +#~ msgid "Sets the current-context in a kubeconfig file" +#~ msgstr "Setze den aktuellen Kontext in einer kubeconfig-Datei" + +#~ msgid "" +#~ "Take a replication controller, service, deployment or pod and expose it " +#~ "as a new Kubernetes Service" +#~ msgstr "" +#~ "Nehme einen Replication Controller, Service, Deployment oder Pod und " +#~ "biete ihn als neuen Kubernetes-Service an" + #~ msgid "" #~ "The name of the API generator to use, see http://kubernetes.io/docs/user-" #~ "guide/kubectl-conventions/#generators for a list." @@ -2965,3 +2909,12 @@ msgstr "kubectl kontrolliert den Kubernetes-Cluster-Manager" #~ msgid "Update field(s) of a resource using strategic merge patch" #~ msgstr "Aktualisiere Felder einer Resource mit einem Strategic-Merge-Patch" + +#~ msgid "Update image of a pod template" +#~ msgstr "Aktualisiere das Image einer Pod-Template" + +#~ msgid "" +#~ "View latest last-applied-configuration annotations of a resource/object" +#~ msgstr "" +#~ "Zeige die aktuelle Annotation Last-Applied-Configuration einer Resource / " +#~ "eines Object" diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/default/LC_MESSAGES/k8s.mo b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/default/LC_MESSAGES/k8s.mo index 3779a9ba083..77b13524a32 100644 Binary files a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/default/LC_MESSAGES/k8s.mo and b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/default/LC_MESSAGES/k8s.mo differ diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/default/LC_MESSAGES/k8s.po b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/default/LC_MESSAGES/k8s.po index 20757755554..c0952d13c74 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/default/LC_MESSAGES/k8s.po +++ b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/default/LC_MESSAGES/k8s.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gettext-go-examples-hello\n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2021-05-17 15:40+0200\n" +"POT-Creation-Date: 2021-07-07 20:15+0200\n" "PO-Revision-Date: 2017-05-24 18:01+0800\n" "Last-Translator: Brendan Burns \n" "Language-Team: \n" @@ -19,6 +19,30 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:138 +msgid "" +"\n" +"\t\t\t# Approve CSR 'csr-sqgzp'\n" +"\t\t\tkubectl certificate approve csr-sqgzp\n" +"\t\t" +msgstr "" +"\n" +"\t\t\t# Approve CSR 'csr-sqgzp'\n" +"\t\t\tkubectl certificate approve csr-sqgzp\n" +"\t\t" + +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:182 +msgid "" +"\n" +"\t\t\t# Deny CSR 'csr-sqgzp'\n" +"\t\t\tkubectl certificate deny csr-sqgzp\n" +"\t\t" +msgstr "" +"\n" +"\t\t\t# Deny CSR 'csr-sqgzp'\n" +"\t\t\tkubectl certificate deny csr-sqgzp\n" +"\t\t" + #: staging/src/k8s.io/kubectl/pkg/cmd/config/config.go:43 msgid "" "\n" @@ -37,78 +61,78 @@ msgstr "" "\n" "\t\t\t1. If the --" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:43 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:44 msgid "" "\n" -"\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using the " -"cluster-admin ClusterRole\n" +"\t\t # Create a cluster role binding for user1, user2, and group1 using the " +"cluster-admin cluster role\n" "\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" "admin --user=user1 --user=user2 --group=group1" msgstr "" "\n" -"\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using the " -"cluster-admin ClusterRole\n" +"\t\t # Create a cluster role binding for user1, user2, and group1 using the " +"cluster-admin cluster role\n" "\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" "admin --user=user1 --user=user2 --group=group1" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:58 msgid "" "\n" -"\t\t # Create a new configmap named my-config based on folder bar\n" +"\t\t # Create a new config map named my-config based on folder bar\n" "\t\t kubectl create configmap my-config --from-file=path/to/bar\n" "\n" -"\t\t # Create a new configmap named my-config with specified keys instead " +"\t\t # Create a new config map named my-config with specified keys instead " "of file basenames on disk\n" "\t\t kubectl create configmap my-config --from-file=key1=/path/to/bar/file1." "txt --from-file=key2=/path/to/bar/file2.txt\n" "\n" -"\t\t # Create a new configmap named my-config with key1=config1 and " +"\t\t # Create a new config map named my-config with key1=config1 and " "key2=config2\n" "\t\t kubectl create configmap my-config --from-literal=key1=config1 --from-" "literal=key2=config2\n" "\n" -"\t\t # Create a new configmap named my-config from the key=value pairs in " +"\t\t # Create a new config map named my-config from the key=value pairs in " "the file\n" "\t\t kubectl create configmap my-config --from-file=path/to/bar\n" "\n" -"\t\t # Create a new configmap named my-config from an env file\n" +"\t\t # Create a new config map named my-config from an env file\n" "\t\t kubectl create configmap my-config --from-env-file=path/to/bar.env" msgstr "" "\n" -"\t\t # Create a new configmap named my-config based on folder bar\n" +"\t\t # Create a new config map named my-config based on folder bar\n" "\t\t kubectl create configmap my-config --from-file=path/to/bar\n" "\n" -"\t\t # Create a new configmap named my-config with specified keys instead " +"\t\t # Create a new config map named my-config with specified keys instead " "of file basenames on disk\n" "\t\t kubectl create configmap my-config --from-file=key1=/path/to/bar/file1." "txt --from-file=key2=/path/to/bar/file2.txt\n" "\n" -"\t\t # Create a new configmap named my-config with key1=config1 and " +"\t\t # Create a new config map named my-config with key1=config1 and " "key2=config2\n" "\t\t kubectl create configmap my-config --from-literal=key1=config1 --from-" "literal=key2=config2\n" "\n" -"\t\t # Create a new configmap named my-config from the key=value pairs in " +"\t\t # Create a new config map named my-config from the key=value pairs in " "the file\n" "\t\t kubectl create configmap my-config --from-file=path/to/bar\n" "\n" -"\t\t # Create a new configmap named my-config from an env file\n" +"\t\t # Create a new config map named my-config from an env file\n" "\t\t kubectl create configmap my-config --from-env-file=path/to/bar.env" +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43 +msgid "" +"\n" +"\t\t # Create a role binding for user1, user2, and group1 using the admin " +"cluster role\n" +"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +"user=user2 --group=group1" +msgstr "" +"\n" +"\t\t # Create a role binding for user1, user2, and group1 using the admin " +"cluster role\n" +"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +"user=user2 --group=group1" + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:56 msgid "" "\n" @@ -117,7 +141,7 @@ msgid "" "\t\t kubectl create secret docker-registry my-secret --docker-" "server=DOCKER_REGISTRY_SERVER --docker-username=DOCKER_USER --docker-" "password=DOCKER_PASSWORD --docker-email=DOCKER_EMAIL\n" -"\t\t \n" +"\n" "\t\t # Create a new secret named my-secret from ~/.docker/config.json\n" "\t\t kubectl create secret docker-registry my-secret --from-file=." "dockerconfigjson=path/to/.docker/config.json" @@ -128,7 +152,7 @@ msgstr "" "\t\t kubectl create secret docker-registry my-secret --docker-" "server=DOCKER_REGISTRY_SERVER --docker-username=DOCKER_USER --docker-" "password=DOCKER_PASSWORD --docker-email=DOCKER_EMAIL\n" -"\t\t \n" +"\n" "\t\t # Create a new secret named my-secret from ~/.docker/config.json\n" "\t\t kubectl create secret docker-registry my-secret --from-file=." "dockerconfigjson=path/to/.docker/config.json" @@ -149,7 +173,7 @@ msgstr "" "\t\t # Show metrics for a given node\n" "\t\t kubectl top node NODE_NAME" -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:44 +#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:45 msgid "" "\n" "\t\t# !!!Important Note!!!\n" @@ -157,7 +181,7 @@ msgid "" "\t\t# image. If 'tar' is not present, 'kubectl cp' will fail.\n" "\t\t#\n" "\t\t# For advanced use cases, such as symlinks, wildcard expansion or\n" -"\t\t# file mode preservation consider using 'kubectl exec'.\n" +"\t\t# file mode preservation, consider using 'kubectl exec'.\n" "\n" "\t\t# Copy /tmp/foo local file to /tmp/bar in a remote pod in namespace " "\n" @@ -189,7 +213,7 @@ msgstr "" "\t\t# image. If 'tar' is not present, 'kubectl cp' will fail.\n" "\t\t#\n" "\t\t# For advanced use cases, such as symlinks, wildcard expansion or\n" -"\t\t# file mode preservation consider using 'kubectl exec'.\n" +"\t\t# file mode preservation, consider using 'kubectl exec'.\n" "\n" "\t\t# Copy /tmp/foo local file to /tmp/bar in a remote pod in namespace " "\n" @@ -218,46 +242,46 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:119 msgid "" "\n" -"\t\t# Apply the configuration in pod.json to a pod.\n" +"\t\t# Apply the configuration in pod.json to a pod\n" "\t\tkubectl apply -f ./pod.json\n" "\n" "\t\t# Apply resources from a directory containing kustomization.yaml - e.g. " -"dir/kustomization.yaml.\n" +"dir/kustomization.yaml\n" "\t\tkubectl apply -k dir/\n" "\n" -"\t\t# Apply the JSON passed into stdin to a pod.\n" +"\t\t# Apply the JSON passed into stdin to a pod\n" "\t\tcat pod.json | kubectl apply -f -\n" "\n" "\t\t# Note: --prune is still in Alpha\n" "\t\t# Apply the configuration in manifest.yaml that matches label app=nginx " -"and delete all the other resources that are not in the file and match label " -"app=nginx.\n" +"and delete all other resources that are not in the file and match label " +"app=nginx\n" "\t\tkubectl apply --prune -f manifest.yaml -l app=nginx\n" "\n" "\t\t# Apply the configuration in manifest.yaml and delete all the other " -"configmaps that are not in the file.\n" +"config maps that are not in the file\n" "\t\tkubectl apply --prune -f manifest.yaml --all --prune-whitelist=core/v1/" "ConfigMap" msgstr "" "\n" -"\t\t# Apply the configuration in pod.json to a pod.\n" +"\t\t# Apply the configuration in pod.json to a pod\n" "\t\tkubectl apply -f ./pod.json\n" "\n" "\t\t# Apply resources from a directory containing kustomization.yaml - e.g. " -"dir/kustomization.yaml.\n" +"dir/kustomization.yaml\n" "\t\tkubectl apply -k dir/\n" "\n" -"\t\t# Apply the JSON passed into stdin to a pod.\n" +"\t\t# Apply the JSON passed into stdin to a pod\n" "\t\tcat pod.json | kubectl apply -f -\n" "\n" "\t\t# Note: --prune is still in Alpha\n" "\t\t# Apply the configuration in manifest.yaml that matches label app=nginx " -"and delete all the other resources that are not in the file and match label " -"app=nginx.\n" +"and delete all other resources that are not in the file and match label " +"app=nginx\n" "\t\tkubectl apply --prune -f manifest.yaml -l app=nginx\n" "\n" "\t\t# Apply the configuration in manifest.yaml and delete all the other " -"configmaps that are not in the file.\n" +"config maps that are not in the file\n" "\t\tkubectl apply --prune -f manifest.yaml --all --prune-whitelist=core/v1/" "ConfigMap" @@ -267,21 +291,21 @@ msgid "" "\n" "\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 and " "10, no target CPU utilization specified so a default autoscaling policy will " -"be used:\n" +"be used\n" "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" "\n" "\t\t# Auto scale a replication controller \"foo\", with the number of pods " -"between 1 and 5, target CPU utilization at 80%:\n" +"between 1 and 5, target CPU utilization at 80%\n" "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" msgstr "" "\n" "\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 and " "10, no target CPU utilization specified so a default autoscaling policy will " -"be used:\n" +"be used\n" "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" "\n" "\t\t# Auto scale a replication controller \"foo\", with the number of pods " -"between 1 and 5, target CPU utilization at 80%:\n" +"between 1 and 5, target CPU utilization at 80%\n" "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" #: pkg/kubectl/cmd/convert/convert.go:51 @@ -315,133 +339,101 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:41 msgid "" "\n" -"\t\t# Create a ClusterRole named \"pod-reader\" that allows user to perform " +"\t\t# Create a cluster role named \"pod-reader\" that allows user to perform " "\"get\", \"watch\" and \"list\" on pods\n" "\t\tkubectl create clusterrole pod-reader --verb=get,list,watch --" "resource=pods\n" "\n" -"\t\t# Create a ClusterRole named \"pod-reader\" with ResourceName specified\n" +"\t\t# Create a cluster role named \"pod-reader\" with ResourceName " +"specified\n" "\t\tkubectl create clusterrole pod-reader --verb=get --resource=pods --" "resource-name=readablepod --resource-name=anotherpod\n" "\n" -"\t\t# Create a ClusterRole named \"foo\" with API Group specified\n" +"\t\t# Create a cluster role named \"foo\" with API Group specified\n" "\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=rs." "extensions\n" "\n" -"\t\t# Create a ClusterRole named \"foo\" with SubResource specified\n" +"\t\t# Create a cluster role named \"foo\" with SubResource specified\n" "\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=pods," "pods/status\n" "\n" -"\t\t# Create a ClusterRole name \"foo\" with NonResourceURL specified\n" +"\t\t# Create a cluster role name \"foo\" with NonResourceURL specified\n" "\t\tkubectl create clusterrole \"foo\" --verb=get --non-resource-url=/logs/" "*\n" "\n" -"\t\t# Create a ClusterRole name \"monitoring\" with AggregationRule " +"\t\t# Create a cluster role name \"monitoring\" with AggregationRule " "specified\n" "\t\tkubectl create clusterrole monitoring --aggregation-rule=\"rbac.example." "com/aggregate-to-monitoring=true\"" msgstr "" "\n" -"\t\t# Create a ClusterRole named \"pod-reader\" that allows user to perform " +"\t\t# Create a cluster role named \"pod-reader\" that allows user to perform " "\"get\", \"watch\" and \"list\" on pods\n" "\t\tkubectl create clusterrole pod-reader --verb=get,list,watch --" "resource=pods\n" "\n" -"\t\t# Create a ClusterRole named \"pod-reader\" with ResourceName specified\n" +"\t\t# Create a cluster role named \"pod-reader\" with ResourceName " +"specified\n" "\t\tkubectl create clusterrole pod-reader --verb=get --resource=pods --" "resource-name=readablepod --resource-name=anotherpod\n" "\n" -"\t\t# Create a ClusterRole named \"foo\" with API Group specified\n" +"\t\t# Create a cluster role named \"foo\" with API Group specified\n" "\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=rs." "extensions\n" "\n" -"\t\t# Create a ClusterRole named \"foo\" with SubResource specified\n" +"\t\t# Create a cluster role named \"foo\" with SubResource specified\n" "\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=pods," "pods/status\n" "\n" -"\t\t# Create a ClusterRole name \"foo\" with NonResourceURL specified\n" +"\t\t# Create a cluster role name \"foo\" with NonResourceURL specified\n" "\t\tkubectl create clusterrole \"foo\" --verb=get --non-resource-url=/logs/" "*\n" "\n" -"\t\t# Create a ClusterRole name \"monitoring\" with AggregationRule " +"\t\t# Create a cluster role name \"monitoring\" with AggregationRule " "specified\n" "\t\tkubectl create clusterrole monitoring --aggregation-rule=\"rbac.example." "com/aggregate-to-monitoring=true\"" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:46 -msgid "" -"\n" -"\t\t# Create a Role named \"pod-reader\" that allows user to perform \"get" -"\", \"watch\" and \"list\" on pods\n" -"\t\tkubectl create role pod-reader --verb=get --verb=list --verb=watch --" -"resource=pods\n" -"\n" -"\t\t# Create a Role named \"pod-reader\" with ResourceName specified\n" -"\t\tkubectl create role pod-reader --verb=get --resource=pods --resource-" -"name=readablepod --resource-name=anotherpod\n" -"\n" -"\t\t# Create a Role named \"foo\" with API Group specified\n" -"\t\tkubectl create role foo --verb=get,list,watch --resource=rs.extensions\n" -"\n" -"\t\t# Create a Role named \"foo\" with SubResource specified\n" -"\t\tkubectl create role foo --verb=get,list,watch --resource=pods,pods/status" -msgstr "" -"\n" -"\t\t# Create a Role named \"pod-reader\" that allows user to perform \"get" -"\", \"watch\" and \"list\" on pods\n" -"\t\tkubectl create role pod-reader --verb=get --verb=list --verb=watch --" -"resource=pods\n" -"\n" -"\t\t# Create a Role named \"pod-reader\" with ResourceName specified\n" -"\t\tkubectl create role pod-reader --verb=get --resource=pods --resource-" -"name=readablepod --resource-name=anotherpod\n" -"\n" -"\t\t# Create a Role named \"foo\" with API Group specified\n" -"\t\tkubectl create role foo --verb=get,list,watch --resource=rs.extensions\n" -"\n" -"\t\t# Create a Role named \"foo\" with SubResource specified\n" -"\t\tkubectl create role foo --verb=get,list,watch --resource=pods,pods/status" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:44 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:43 msgid "" "\n" "\t\t# Create a job\n" "\t\tkubectl create job my-job --image=busybox\n" "\n" -"\t\t# Create a job with command\n" +"\t\t# Create a job with a command\n" "\t\tkubectl create job my-job --image=busybox -- date\n" "\n" -"\t\t# Create a job from a CronJob named \"a-cronjob\"\n" +"\t\t# Create a job from a cron job named \"a-cronjob\"\n" "\t\tkubectl create job test-job --from=cronjob/a-cronjob" msgstr "" "\n" "\t\t# Create a job\n" "\t\tkubectl create job my-job --image=busybox\n" "\n" -"\t\t# Create a job with command\n" +"\t\t# Create a job with a command\n" "\t\tkubectl create job my-job --image=busybox -- date\n" "\n" -"\t\t# Create a job from a CronJob named \"a-cronjob\"\n" +"\t\t# Create a job from a cron job named \"a-cronjob\"\n" "\t\tkubectl create job test-job --from=cronjob/a-cronjob" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:44 msgid "" "\n" -"\t\t# Create a new resourcequota named my-quota\n" +"\t\t# Create a new resource quota named my-quota\n" "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," "replicationcontrollers=2,resourcequotas=1,secrets=5," "persistentvolumeclaims=10\n" "\n" -"\t\t# Create a new resourcequota named best-effort\n" +"\t\t# Create a new resource quota named best-effort\n" "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" msgstr "" "\n" -"\t\t# Create a new resourcequota named my-quota\n" +"\t\t# Create a new resource quota named my-quota\n" "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," "replicationcontrollers=2,resourcequotas=1,secrets=5," "persistentvolumeclaims=10\n" "\n" -"\t\t# Create a new resourcequota named best-effort\n" +"\t\t# Create a new resource quota named best-effort\n" "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:44 @@ -450,97 +442,129 @@ msgid "" "\n" "\t\t# Create a pod disruption budget named my-pdb that will select all pods " "with the app=rails label\n" -"\t\t# and require at least one of them being available at any point in " -"time.\n" +"\t\t# and require at least one of them being available at any point in time\n" "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" "available=1\n" "\n" "\t\t# Create a pod disruption budget named my-pdb that will select all pods " "with the app=nginx label\n" "\t\t# and require at least half of the pods selected to be available at any " -"point in time.\n" +"point in time\n" "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" msgstr "" "\n" "\t\t# Create a pod disruption budget named my-pdb that will select all pods " "with the app=rails label\n" -"\t\t# and require at least one of them being available at any point in " -"time.\n" +"\t\t# and require at least one of them being available at any point in time\n" "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" "available=1\n" "\n" "\t\t# Create a pod disruption budget named my-pdb that will select all pods " "with the app=nginx label\n" "\t\t# and require at least half of the pods selected to be available at any " -"point in time.\n" +"point in time\n" "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:76 msgid "" "\n" -"\t\t# Create a pod using the data in pod.json.\n" +"\t\t# Create a pod using the data in pod.json\n" "\t\tkubectl create -f ./pod.json\n" "\n" -"\t\t# Create a pod based on the JSON passed into stdin.\n" +"\t\t# Create a pod based on the JSON passed into stdin\n" "\t\tcat pod.json | kubectl create -f -\n" "\n" "\t\t# Edit the data in docker-registry.yaml in JSON then create the resource " -"using the edited data.\n" +"using the edited data\n" "\t\tkubectl create -f docker-registry.yaml --edit -o json" msgstr "" "\n" -"\t\t# Create a pod using the data in pod.json.\n" +"\t\t# Create a pod using the data in pod.json\n" "\t\tkubectl create -f ./pod.json\n" "\n" -"\t\t# Create a pod based on the JSON passed into stdin.\n" +"\t\t# Create a pod based on the JSON passed into stdin\n" "\t\tcat pod.json | kubectl create -f -\n" "\n" "\t\t# Edit the data in docker-registry.yaml in JSON then create the resource " -"using the edited data.\n" +"using the edited data\n" "\t\tkubectl create -f docker-registry.yaml --edit -o json" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:43 msgid "" "\n" -"\t\t# Create a priorityclass named high-priority\n" +"\t\t# Create a priority class named high-priority\n" "\t\tkubectl create priorityclass high-priority --value=1000 --description=" "\"high priority\"\n" "\n" -"\t\t# Create a priorityclass named default-priority that considered as the " -"global default priority\n" +"\t\t# Create a priority class named default-priority that is considered as " +"the global default priority\n" "\t\tkubectl create priorityclass default-priority --value=1000 --global-" "default=true --description=\"default priority\"\n" "\n" -"\t\t# Create a priorityclass named high-priority that can not preempt pods " +"\t\t# Create a priority class named high-priority that cannot preempt pods " "with lower priority\n" "\t\tkubectl create priorityclass high-priority --value=1000 --description=" "\"high priority\" --preemption-policy=\"Never\"" msgstr "" "\n" -"\t\t# Create a priorityclass named high-priority\n" +"\t\t# Create a priority class named high-priority\n" "\t\tkubectl create priorityclass high-priority --value=1000 --description=" "\"high priority\"\n" "\n" -"\t\t# Create a priorityclass named default-priority that considered as the " -"global default priority\n" +"\t\t# Create a priority class named default-priority that is considered as " +"the global default priority\n" "\t\tkubectl create priorityclass default-priority --value=1000 --global-" "default=true --description=\"default priority\"\n" "\n" -"\t\t# Create a priorityclass named high-priority that can not preempt pods " +"\t\t# Create a priority class named high-priority that cannot preempt pods " "with lower priority\n" "\t\tkubectl create priorityclass high-priority --value=1000 --description=" "\"high priority\" --preemption-policy=\"Never\"" +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:46 +msgid "" +"\n" +"\t\t# Create a role named \"pod-reader\" that allows user to perform \"get" +"\", \"watch\" and \"list\" on pods\n" +"\t\tkubectl create role pod-reader --verb=get --verb=list --verb=watch --" +"resource=pods\n" +"\n" +"\t\t# Create a role named \"pod-reader\" with ResourceName specified\n" +"\t\tkubectl create role pod-reader --verb=get --resource=pods --resource-" +"name=readablepod --resource-name=anotherpod\n" +"\n" +"\t\t# Create a role named \"foo\" with API Group specified\n" +"\t\tkubectl create role foo --verb=get,list,watch --resource=rs.extensions\n" +"\n" +"\t\t# Create a role named \"foo\" with SubResource specified\n" +"\t\tkubectl create role foo --verb=get,list,watch --resource=pods,pods/status" +msgstr "" +"\n" +"\t\t# Create a role named \"pod-reader\" that allows user to perform \"get" +"\", \"watch\" and \"list\" on pods\n" +"\t\tkubectl create role pod-reader --verb=get --verb=list --verb=watch --" +"resource=pods\n" +"\n" +"\t\t# Create a role named \"pod-reader\" with ResourceName specified\n" +"\t\tkubectl create role pod-reader --verb=get --resource=pods --resource-" +"name=readablepod --resource-name=anotherpod\n" +"\n" +"\t\t# Create a role named \"foo\" with API Group specified\n" +"\t\tkubectl create role foo --verb=get,list,watch --resource=rs.extensions\n" +"\n" +"\t\t# Create a role named \"foo\" with SubResource specified\n" +"\t\tkubectl create role foo --verb=get,list,watch --resource=pods,pods/status" + #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:61 msgid "" "\n" "\t\t# Create a service for a replicated nginx, which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose rc nginx --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for a replication controller identified by type and " "name specified in \"nginx-controller.yaml\", which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose -f nginx-controller.yaml --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for a pod valid-pod, which serves on port 444 with " @@ -558,21 +582,21 @@ msgid "" "stream\n" "\n" "\t\t# Create a service for a replicated nginx using replica set, which " -"serves on port 80 and connects to the containers on port 8000.\n" +"serves on port 80 and connects to the containers on port 8000\n" "\t\tkubectl expose rs nginx --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for an nginx deployment, which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose deployment nginx --port=80 --target-port=8000" msgstr "" "\n" "\t\t# Create a service for a replicated nginx, which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose rc nginx --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for a replication controller identified by type and " "name specified in \"nginx-controller.yaml\", which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose -f nginx-controller.yaml --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for a pod valid-pod, which serves on port 444 with " @@ -590,11 +614,11 @@ msgstr "" "stream\n" "\n" "\t\t# Create a service for a replicated nginx using replica set, which " -"serves on port 80 and connects to the containers on port 8000.\n" +"serves on port 80 and connects to the containers on port 8000\n" "\t\tkubectl expose rs nginx --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for an nginx deployment, which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose deployment nginx --port=80 --target-port=8000" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_ingress.go:64 @@ -753,24 +777,23 @@ msgstr "" "filesystem will be mounted at /host\n" "\t\tkubectl debug node/mynode -it --image=busybox\n" -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:72 +#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:74 msgid "" "\n" -"\t\t# Delete a pod using the type and name specified in pod.json.\n" +"\t\t# Delete a pod using the type and name specified in pod.json\n" "\t\tkubectl delete -f ./pod.json\n" "\n" "\t\t# Delete resources from a directory containing kustomization.yaml - e.g. " -"dir/kustomization.yaml.\n" +"dir/kustomization.yaml\n" "\t\tkubectl delete -k dir\n" "\n" -"\t\t# Delete a pod based on the type and name in the JSON passed into " -"stdin.\n" +"\t\t# Delete a pod based on the type and name in the JSON passed into stdin\n" "\t\tcat pod.json | kubectl delete -f -\n" "\n" "\t\t# Delete pods and services with same names \"baz\" and \"foo\"\n" "\t\tkubectl delete pod,service baz foo\n" "\n" -"\t\t# Delete pods and services with label name=myLabel.\n" +"\t\t# Delete pods and services with label name=myLabel\n" "\t\tkubectl delete pods,services -l name=myLabel\n" "\n" "\t\t# Delete a pod with minimal delay\n" @@ -783,21 +806,20 @@ msgid "" "\t\tkubectl delete pods --all" msgstr "" "\n" -"\t\t# Delete a pod using the type and name specified in pod.json.\n" +"\t\t# Delete a pod using the type and name specified in pod.json\n" "\t\tkubectl delete -f ./pod.json\n" "\n" "\t\t# Delete resources from a directory containing kustomization.yaml - e.g. " -"dir/kustomization.yaml.\n" +"dir/kustomization.yaml\n" "\t\tkubectl delete -k dir\n" "\n" -"\t\t# Delete a pod based on the type and name in the JSON passed into " -"stdin.\n" +"\t\t# Delete a pod based on the type and name in the JSON passed into stdin\n" "\t\tcat pod.json | kubectl delete -f -\n" "\n" "\t\t# Delete pods and services with same names \"baz\" and \"foo\"\n" "\t\tkubectl delete pod,service baz foo\n" "\n" -"\t\t# Delete pods and services with label name=myLabel.\n" +"\t\t# Delete pods and services with label name=myLabel\n" "\t\tkubectl delete pods,services -l name=myLabel\n" "\n" "\t\t# Delete a pod with minimal delay\n" @@ -809,7 +831,7 @@ msgstr "" "\t\t# Delete all pods\n" "\t\tkubectl delete pods --all" -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:50 +#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:51 msgid "" "\n" "\t\t# Describe a node\n" @@ -829,7 +851,7 @@ msgid "" "\n" "\t\t# Describe all pods managed by the 'frontend' replication controller (rc-" "created pods\n" -"\t\t# get the name of the rc as a prefix in the pod the name).\n" +"\t\t# get the name of the rc as a prefix in the pod the name)\n" "\t\tkubectl describe pods frontend" msgstr "" "\n" @@ -850,103 +872,143 @@ msgstr "" "\n" "\t\t# Describe all pods managed by the 'frontend' replication controller (rc-" "created pods\n" -"\t\t# get the name of the rc as a prefix in the pod the name).\n" +"\t\t# get the name of the rc as a prefix in the pod the name)\n" "\t\tkubectl describe pods frontend" #: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:76 msgid "" "\n" -"\t\t# Diff resources included in pod.json.\n" +"\t\t# Diff resources included in pod.json\n" "\t\tkubectl diff -f pod.json\n" "\n" "\t\t# Diff file read from stdin\n" "\t\tcat service.yaml | kubectl diff -f -" msgstr "" "\n" -"\t\t# Diff resources included in pod.json.\n" +"\t\t# Diff resources included in pod.json\n" "\t\tkubectl diff -f pod.json\n" "\n" "\t\t# Diff file read from stdin\n" "\t\tcat service.yaml | kubectl diff -f -" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:135 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:138 msgid "" "\n" "\t\t# Drain node \"foo\", even if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" -"\t\t$ kubectl drain foo --force\n" +"replication controller, replica set, job, daemon set or stateful set on it\n" +"\t\tkubectl drain foo --force\n" "\n" -"\t\t# As above, but abort if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a " -"grace period of 15 minutes.\n" -"\t\t$ kubectl drain foo --grace-period=900" +"\t\t# As above, but abort if there are pods not managed by a replication " +"controller, replica set, job, daemon set or stateful set, and use a grace " +"period of 15 minutes\n" +"\t\tkubectl drain foo --grace-period=900" msgstr "" "\n" "\t\t# Drain node \"foo\", even if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" -"\t\t$ kubectl drain foo --force\n" +"replication controller, replica set, job, daemon set or stateful set on it\n" +"\t\tkubectl drain foo --force\n" "\n" -"\t\t# As above, but abort if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a " -"grace period of 15 minutes.\n" -"\t\t$ kubectl drain foo --grace-period=900" +"\t\t# As above, but abort if there are pods not managed by a replication " +"controller, replica set, job, daemon set or stateful set, and use a grace " +"period of 15 minutes\n" +"\t\tkubectl drain foo --grace-period=900" -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:54 +#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:55 msgid "" "\n" -"\t\t# Edit the service named 'docker-registry':\n" +"\t\t# Edit the service named 'docker-registry'\n" "\t\tkubectl edit svc/docker-registry\n" "\n" "\t\t# Use an alternative editor\n" "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" "\n" -"\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" +"\t\t# Edit the job 'myjob' in JSON using the v1 API format\n" "\t\tkubectl edit job.v1.batch/myjob -o json\n" "\n" "\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " -"config in its annotation:\n" +"config in its annotation\n" "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" msgstr "" "\n" -"\t\t# Edit the service named 'docker-registry':\n" +"\t\t# Edit the service named 'docker-registry'\n" "\t\tkubectl edit svc/docker-registry\n" "\n" "\t\t# Use an alternative editor\n" "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" "\n" -"\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" +"\t\t# Edit the job 'myjob' in JSON using the v1 API format\n" "\t\tkubectl edit job.v1.batch/myjob -o json\n" "\n" "\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " -"config in its annotation:\n" +"config in its annotation\n" "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" -#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:47 +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:44 msgid "" "\n" -"\t\t# Get output from running 'date' command from pod mypod, using the first " -"container by default\n" +"\t\t# Get output from running pod mypod; use the 'kubectl.kubernetes.io/" +"default-container' annotation\n" +"\t\t# for selecting the container to be attached or the first container in " +"the pod will be chosen\n" +"\t\tkubectl attach mypod\n" +"\n" +"\t\t# Get output from ruby-container from pod mypod\n" +"\t\tkubectl attach mypod -c ruby-container\n" +"\n" +"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container " +"from pod mypod\n" +"\t\t# and sends stdout/stderr from 'bash' back to the client\n" +"\t\tkubectl attach mypod -c ruby-container -i -t\n" +"\n" +"\t\t# Get output from the first pod of a replica set named nginx\n" +"\t\tkubectl attach rs/nginx\n" +"\t\t" +msgstr "" +"\n" +"\t\t# Get output from running pod mypod; use the 'kubectl.kubernetes.io/" +"default-container' annotation\n" +"\t\t# for selecting the container to be attached or the first container in " +"the pod will be chosen\n" +"\t\tkubectl attach mypod\n" +"\n" +"\t\t# Get output from ruby-container from pod mypod\n" +"\t\tkubectl attach mypod -c ruby-container\n" +"\n" +"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container " +"from pod mypod\n" +"\t\t# and sends stdout/stderr from 'bash' back to the client\n" +"\t\tkubectl attach mypod -c ruby-container -i -t\n" +"\n" +"\t\t# Get output from the first pod of a replica set named nginx\n" +"\t\tkubectl attach rs/nginx\n" +"\t\t" + +#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:48 +msgid "" +"\n" +"\t\t# Get output from running the 'date' command from pod mypod, using the " +"first container by default\n" "\t\tkubectl exec mypod -- date\n" "\n" -"\t\t# Get output from running 'date' command in ruby-container from pod " +"\t\t# Get output from running the 'date' command in ruby-container from pod " "mypod\n" "\t\tkubectl exec mypod -c ruby-container -- date\n" "\n" -"\t\t# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container " +"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container " "from pod mypod\n" "\t\t# and sends stdout/stderr from 'bash' back to the client\n" "\t\tkubectl exec mypod -c ruby-container -i -t -- bash -il\n" "\n" "\t\t# List contents of /usr from the first container of pod mypod and sort " -"by modification time.\n" +"by modification time\n" "\t\t# If the command you want to execute in the pod has any flags in common " "(e.g. -i),\n" "\t\t# you must use two dashes (--) to separate your command's flags/" -"arguments.\n" +"arguments\n" "\t\t# Also note, do not surround your command and its flags/arguments with " "quotes\n" "\t\t# unless that is how you would execute it normally (i.e., do ls -t /usr, " -"not \"ls -t /usr\").\n" +"not \"ls -t /usr\")\n" "\t\tkubectl exec mypod -i -t -- ls -t /usr\n" "\n" "\t\t# Get output from running 'date' command from the first pod of the " @@ -959,29 +1021,29 @@ msgid "" "\t\t" msgstr "" "\n" -"\t\t# Get output from running 'date' command from pod mypod, using the first " -"container by default\n" +"\t\t# Get output from running the 'date' command from pod mypod, using the " +"first container by default\n" "\t\tkubectl exec mypod -- date\n" "\n" -"\t\t# Get output from running 'date' command in ruby-container from pod " +"\t\t# Get output from running the 'date' command in ruby-container from pod " "mypod\n" "\t\tkubectl exec mypod -c ruby-container -- date\n" "\n" -"\t\t# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container " +"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container " "from pod mypod\n" "\t\t# and sends stdout/stderr from 'bash' back to the client\n" "\t\tkubectl exec mypod -c ruby-container -i -t -- bash -il\n" "\n" "\t\t# List contents of /usr from the first container of pod mypod and sort " -"by modification time.\n" +"by modification time\n" "\t\t# If the command you want to execute in the pod has any flags in common " "(e.g. -i),\n" "\t\t# you must use two dashes (--) to separate your command's flags/" -"arguments.\n" +"arguments\n" "\t\t# Also note, do not surround your command and its flags/arguments with " "quotes\n" "\t\t# unless that is how you would execute it normally (i.e., do ls -t /usr, " -"not \"ls -t /usr\").\n" +"not \"ls -t /usr\")\n" "\t\tkubectl exec mypod -i -t -- ls -t /usr\n" "\n" "\t\t# Get output from running 'date' command from the first pod of the " @@ -993,46 +1055,6 @@ msgstr "" "\t\tkubectl exec svc/myservice -- date\n" "\t\t" -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:43 -msgid "" -"\n" -"\t\t# Get output from running pod mypod, use the kubectl.kubernetes.io/" -"default-container annotation \n" -"\t\t# for selecting the container to be attached or the first container in " -"the pod will be chosen\n" -"\t\tkubectl attach mypod\n" -"\n" -"\t\t# Get output from ruby-container from pod mypod\n" -"\t\tkubectl attach mypod -c ruby-container\n" -"\n" -"\t\t# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container " -"from pod mypod\n" -"\t\t# and sends stdout/stderr from 'bash' back to the client\n" -"\t\tkubectl attach mypod -c ruby-container -i -t\n" -"\n" -"\t\t# Get output from the first pod of a ReplicaSet named nginx\n" -"\t\tkubectl attach rs/nginx\n" -"\t\t" -msgstr "" -"\n" -"\t\t# Get output from running pod mypod, use the kubectl.kubernetes.io/" -"default-container annotation \n" -"\t\t# for selecting the container to be attached or the first container in " -"the pod will be chosen\n" -"\t\tkubectl attach mypod\n" -"\n" -"\t\t# Get output from ruby-container from pod mypod\n" -"\t\tkubectl attach mypod -c ruby-container\n" -"\n" -"\t\t# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container " -"from pod mypod\n" -"\t\t# and sends stdout/stderr from 'bash' back to the client\n" -"\t\tkubectl attach mypod -c ruby-container -i -t\n" -"\n" -"\t\t# Get output from the first pod of a ReplicaSet named nginx\n" -"\t\tkubectl attach rs/nginx\n" -"\t\t" - #: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:46 msgid "" "\n" @@ -1049,7 +1071,7 @@ msgstr "" "\t\t# Get the documentation of a specific field of a resource\n" "\t\tkubectl explain pods.spec.containers" -#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:66 +#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:65 msgid "" "\n" "\t\t# Installing bash completion on macOS using homebrew\n" @@ -1058,7 +1080,7 @@ msgid "" "\t\t## or, if running Bash 4.1+\n" "\t\t brew install bash-completion@2\n" "\t\t## If kubectl is installed via homebrew, this should start working " -"immediately.\n" +"immediately\n" "\t\t## If you've installed via other means, you may need add the completion " "to your completion directory\n" "\t\t kubectl completion bash > $(brew --prefix)/etc/bash_completion.d/" @@ -1066,8 +1088,8 @@ msgid "" "\n" "\n" "\t\t# Installing bash completion on Linux\n" -"\t\t## If bash-completion is not installed on Linux, please install the " -"'bash-completion' package\n" +"\t\t## If bash-completion is not installed on Linux, install the 'bash-" +"completion' package\n" "\t\t## via your distribution's package manager.\n" "\t\t## Load the kubectl completion code for bash into the current shell\n" "\t\t source <(kubectl completion bash)\n" @@ -1092,7 +1114,7 @@ msgstr "" "\t\t## or, if running Bash 4.1+\n" "\t\t brew install bash-completion@2\n" "\t\t## If kubectl is installed via homebrew, this should start working " -"immediately.\n" +"immediately\n" "\t\t## If you've installed via other means, you may need add the completion " "to your completion directory\n" "\t\t kubectl completion bash > $(brew --prefix)/etc/bash_completion.d/" @@ -1100,8 +1122,8 @@ msgstr "" "\n" "\n" "\t\t# Installing bash completion on Linux\n" -"\t\t## If bash-completion is not installed on Linux, please install the " -"'bash-completion' package\n" +"\t\t## If bash-completion is not installed on Linux, install the 'bash-" +"completion' package\n" "\t\t## via your distribution's package manager.\n" "\t\t## Load the kubectl completion code for bash into the current shell\n" "\t\t source <(kubectl completion bash)\n" @@ -1119,88 +1141,88 @@ msgstr "" "\t\t# Set the kubectl completion code for zsh[1] to autoload on startup\n" "\t\t kubectl completion zsh > \"${fpath[1]}/_kubectl\"" -#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:101 +#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:105 msgid "" "\n" -"\t\t# List all pods in ps output format.\n" +"\t\t# List all pods in ps output format\n" "\t\tkubectl get pods\n" "\n" "\t\t# List all pods in ps output format with more information (such as node " -"name).\n" +"name)\n" "\t\tkubectl get pods -o wide\n" "\n" "\t\t# List a single replication controller with specified NAME in ps output " -"format.\n" +"format\n" "\t\tkubectl get replicationcontroller web\n" "\n" "\t\t# List deployments in JSON output format, in the \"v1\" version of the " -"\"apps\" API group:\n" +"\"apps\" API group\n" "\t\tkubectl get deployments.v1.apps -o json\n" "\n" -"\t\t# List a single pod in JSON output format.\n" +"\t\t# List a single pod in JSON output format\n" "\t\tkubectl get -o json pod web-pod-13je7\n" "\n" "\t\t# List a pod identified by type and name specified in \"pod.yaml\" in " -"JSON output format.\n" +"JSON output format\n" "\t\tkubectl get -f pod.yaml -o json\n" "\n" "\t\t# List resources from a directory with kustomization.yaml - e.g. dir/" -"kustomization.yaml.\n" +"kustomization.yaml\n" "\t\tkubectl get -k dir/\n" "\n" -"\t\t# Return only the phase value of the specified pod.\n" +"\t\t# Return only the phase value of the specified pod\n" "\t\tkubectl get -o template pod/web-pod-13je7 --template={{.status.phase}}\n" "\n" -"\t\t# List resource information in custom columns.\n" +"\t\t# List resource information in custom columns\n" "\t\tkubectl get pod test-pod -o custom-columns=CONTAINER:.spec.containers[0]." "name,IMAGE:.spec.containers[0].image\n" "\n" "\t\t# List all replication controllers and services together in ps output " -"format.\n" +"format\n" "\t\tkubectl get rc,services\n" "\n" -"\t\t# List one or more resources by their type and names.\n" +"\t\t# List one or more resources by their type and names\n" "\t\tkubectl get rc/web service/frontend pods/web-pod-13je7" msgstr "" "\n" -"\t\t# List all pods in ps output format.\n" +"\t\t# List all pods in ps output format\n" "\t\tkubectl get pods\n" "\n" "\t\t# List all pods in ps output format with more information (such as node " -"name).\n" +"name)\n" "\t\tkubectl get pods -o wide\n" "\n" "\t\t# List a single replication controller with specified NAME in ps output " -"format.\n" +"format\n" "\t\tkubectl get replicationcontroller web\n" "\n" "\t\t# List deployments in JSON output format, in the \"v1\" version of the " -"\"apps\" API group:\n" +"\"apps\" API group\n" "\t\tkubectl get deployments.v1.apps -o json\n" "\n" -"\t\t# List a single pod in JSON output format.\n" +"\t\t# List a single pod in JSON output format\n" "\t\tkubectl get -o json pod web-pod-13je7\n" "\n" "\t\t# List a pod identified by type and name specified in \"pod.yaml\" in " -"JSON output format.\n" +"JSON output format\n" "\t\tkubectl get -f pod.yaml -o json\n" "\n" "\t\t# List resources from a directory with kustomization.yaml - e.g. dir/" -"kustomization.yaml.\n" +"kustomization.yaml\n" "\t\tkubectl get -k dir/\n" "\n" -"\t\t# Return only the phase value of the specified pod.\n" +"\t\t# Return only the phase value of the specified pod\n" "\t\tkubectl get -o template pod/web-pod-13je7 --template={{.status.phase}}\n" "\n" -"\t\t# List resource information in custom columns.\n" +"\t\t# List resource information in custom columns\n" "\t\tkubectl get pod test-pod -o custom-columns=CONTAINER:.spec.containers[0]." "name,IMAGE:.spec.containers[0].image\n" "\n" "\t\t# List all replication controllers and services together in ps output " -"format.\n" +"format\n" "\t\tkubectl get rc,services\n" "\n" -"\t\t# List one or more resources by their type and names.\n" +"\t\t# List one or more resources by their type and names\n" "\t\tkubectl get rc/web service/frontend pods/web-pod-13je7" #: staging/src/k8s.io/kubectl/pkg/cmd/portforward/portforward.go:72 @@ -1259,72 +1281,71 @@ msgstr "" "\t\t# Listen on a random port locally, forwarding to 5000 in the pod\n" "\t\tkubectl port-forward pod/mypod :5000" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:85 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:87 msgid "" "\n" -"\t\t# Mark node \"foo\" as schedulable.\n" -"\t\t$ kubectl uncordon foo" +"\t\t# Mark node \"foo\" as schedulable\n" +"\t\tkubectl uncordon foo" msgstr "" "\n" -"\t\t# Mark node \"foo\" as schedulable.\n" -"\t\t$ kubectl uncordon foo" +"\t\t# Mark node \"foo\" as schedulable\n" +"\t\tkubectl uncordon foo" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:57 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:58 msgid "" "\n" -"\t\t# Mark node \"foo\" as unschedulable.\n" +"\t\t# Mark node \"foo\" as unschedulable\n" "\t\tkubectl cordon foo" msgstr "" "\n" -"\t\t# Mark node \"foo\" as unschedulable.\n" +"\t\t# Mark node \"foo\" as unschedulable\n" "\t\tkubectl cordon foo" -#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:83 msgid "" "\n" -"\t\t# Partially update a node using a strategic merge patch. Specify the " -"patch as JSON.\n" +"\t\t# Partially update a node using a strategic merge patch, specifying the " +"patch as JSON\n" "\t\tkubectl patch node k8s-node-1 -p '{\"spec\":{\"unschedulable\":true}}'\n" "\n" -"\t\t# Partially update a node using a strategic merge patch. Specify the " -"patch as YAML.\n" +"\t\t# Partially update a node using a strategic merge patch, specifying the " +"patch as YAML\n" "\t\tkubectl patch node k8s-node-1 -p $'spec:\n" " unschedulable: true'\n" "\n" "\t\t# Partially update a node identified by the type and name specified in " -"\"node.json\" using strategic merge patch.\n" +"\"node.json\" using strategic merge patch\n" "\t\tkubectl patch -f node.json -p '{\"spec\":{\"unschedulable\":true}}'\n" "\n" "\t\t# Update a container's image; spec.containers[*].name is required " -"because it's a merge key.\n" +"because it's a merge key\n" "\t\tkubectl patch pod valid-pod -p '{\"spec\":{\"containers\":[{\"name\":" "\"kubernetes-serve-hostname\",\"image\":\"new image\"}]}}'\n" "\n" -"\t\t# Update a container's image using a json patch with positional arrays.\n" +"\t\t# Update a container's image using a JSON patch with positional arrays\n" "\t\tkubectl patch pod valid-pod --type='json' -p='[{\"op\": \"replace\", " "\"path\": \"/spec/containers/0/image\", \"value\":\"new image\"}]'" msgstr "" "\n" -"\t\t# Partially update a node using a strategic merge patch. Specify the " -"patch as JSON.\n" +"\t\t# Partially update a node using a strategic merge patch, specifying the " +"patch as JSON\n" "\t\tkubectl patch node k8s-node-1 -p '{\"spec\":{\"unschedulable\":true}}'\n" "\n" -"\t\t# Partially update a node using a strategic merge patch. Specify the " -"patch as YAML.\n" +"\t\t# Partially update a node using a strategic merge patch, specifying the " +"patch as YAML\n" "\t\tkubectl patch node k8s-node-1 -p $'spec:\n" " unschedulable: true'\n" "\n" "\t\t# Partially update a node identified by the type and name specified in " -"\"node.json\" using strategic merge patch.\n" +"\"node.json\" using strategic merge patch\n" "\t\tkubectl patch -f node.json -p '{\"spec\":{\"unschedulable\":true}}'\n" "\n" "\t\t# Update a container's image; spec.containers[*].name is required " -"because it's a merge key.\n" +"because it's a merge key\n" "\t\tkubectl patch pod valid-pod -p '{\"spec\":{\"containers\":[{\"name\":" "\"kubernetes-serve-hostname\",\"image\":\"new image\"}]}}'\n" "\n" -"\t\t# Update a container's image using a json patch with positional arrays.\n" +"\t\t# Update a container's image using a JSON patch with positional arrays\n" "\t\tkubectl patch pod valid-pod --type='json' -p='[{\"op\": \"replace\", " "\"path\": \"/spec/containers/0/image\", \"value\":\"new image\"}]'" @@ -1373,10 +1394,10 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:56 msgid "" "\n" -"\t\t# Replace a pod using the data in pod.json.\n" +"\t\t# Replace a pod using the data in pod.json\n" "\t\tkubectl replace -f ./pod.json\n" "\n" -"\t\t# Replace a pod based on the JSON passed into stdin.\n" +"\t\t# Replace a pod based on the JSON passed into stdin\n" "\t\tcat pod.json | kubectl replace -f -\n" "\n" "\t\t# Update a single-container pod's image version (tag) to v4\n" @@ -1387,10 +1408,10 @@ msgid "" "\t\tkubectl replace --force -f ./pod.json" msgstr "" "\n" -"\t\t# Replace a pod using the data in pod.json.\n" +"\t\t# Replace a pod using the data in pod.json\n" "\t\tkubectl replace -f ./pod.json\n" "\n" -"\t\t# Replace a pod based on the JSON passed into stdin.\n" +"\t\t# Replace a pod based on the JSON passed into stdin\n" "\t\tcat pod.json | kubectl replace -f -\n" "\n" "\t\t# Update a single-container pod's image version (tag) to v4\n" @@ -1411,7 +1432,7 @@ msgid "" "\n" "\t\t# Return snapshot logs from all containers in pods defined by label " "app=nginx\n" -"\t\tkubectl logs -lapp=nginx --all-containers=true\n" +"\t\tkubectl logs -l app=nginx --all-containers=true\n" "\n" "\t\t# Return snapshot of previous terminated ruby container logs from pod " "web-1\n" @@ -1422,7 +1443,7 @@ msgid "" "\n" "\t\t# Begin streaming the logs from all containers in pods defined by label " "app=nginx\n" -"\t\tkubectl logs -f -lapp=nginx --all-containers=true\n" +"\t\tkubectl logs -f -l app=nginx --all-containers=true\n" "\n" "\t\t# Display only the most recent 20 lines of output in pod nginx\n" "\t\tkubectl logs --tail=20 nginx\n" @@ -1449,7 +1470,7 @@ msgstr "" "\n" "\t\t# Return snapshot logs from all containers in pods defined by label " "app=nginx\n" -"\t\tkubectl logs -lapp=nginx --all-containers=true\n" +"\t\tkubectl logs -l app=nginx --all-containers=true\n" "\n" "\t\t# Return snapshot of previous terminated ruby container logs from pod " "web-1\n" @@ -1460,7 +1481,7 @@ msgstr "" "\n" "\t\t# Begin streaming the logs from all containers in pods defined by label " "app=nginx\n" -"\t\tkubectl logs -f -lapp=nginx --all-containers=true\n" +"\t\tkubectl logs -f -l app=nginx --all-containers=true\n" "\n" "\t\t# Display only the most recent 20 lines of output in pod nginx\n" "\t\tkubectl logs --tail=20 nginx\n" @@ -1478,73 +1499,73 @@ msgstr "" "nginx\n" "\t\tkubectl logs deployment/nginx -c nginx-1" -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:48 +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:49 msgid "" "\n" -"\t\t# Scale a replicaset named 'foo' to 3.\n" +"\t\t# Scale a replica set named 'foo' to 3\n" "\t\tkubectl scale --replicas=3 rs/foo\n" "\n" "\t\t# Scale a resource identified by type and name specified in \"foo.yaml\" " -"to 3.\n" +"to 3\n" "\t\tkubectl scale --replicas=3 -f foo.yaml\n" "\n" -"\t\t# If the deployment named mysql's current size is 2, scale mysql to 3.\n" +"\t\t# If the deployment named mysql's current size is 2, scale mysql to 3\n" "\t\tkubectl scale --current-replicas=2 --replicas=3 deployment/mysql\n" "\n" -"\t\t# Scale multiple replication controllers.\n" +"\t\t# Scale multiple replication controllers\n" "\t\tkubectl scale --replicas=5 rc/foo rc/bar rc/baz\n" "\n" -"\t\t# Scale statefulset named 'web' to 3.\n" +"\t\t# Scale stateful set named 'web' to 3\n" "\t\tkubectl scale --replicas=3 statefulset/web" msgstr "" "\n" -"\t\t# Scale a replicaset named 'foo' to 3.\n" +"\t\t# Scale a replica set named 'foo' to 3\n" "\t\tkubectl scale --replicas=3 rs/foo\n" "\n" "\t\t# Scale a resource identified by type and name specified in \"foo.yaml\" " -"to 3.\n" +"to 3\n" "\t\tkubectl scale --replicas=3 -f foo.yaml\n" "\n" -"\t\t# If the deployment named mysql's current size is 2, scale mysql to 3.\n" +"\t\t# If the deployment named mysql's current size is 2, scale mysql to 3\n" "\t\tkubectl scale --current-replicas=2 --replicas=3 deployment/mysql\n" "\n" -"\t\t# Scale multiple replication controllers.\n" +"\t\t# Scale multiple replication controllers\n" "\t\tkubectl scale --replicas=5 rc/foo rc/bar rc/baz\n" "\n" -"\t\t# Scale statefulset named 'web' to 3.\n" +"\t\t# Scale stateful set named 'web' to 3\n" "\t\tkubectl scale --replicas=3 statefulset/web" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:75 msgid "" "\n" "\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file.\n" +"of a file\n" "\t\tkubectl apply set-last-applied -f deploy.yaml\n" "\n" "\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" +"directory\n" "\t\tkubectl apply set-last-applied -f path/\n" "\n" "\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file, will create the annotation if it does not already exist.\n" +"of a file; will create the annotation if it does not already exist\n" "\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" "\t\t" msgstr "" "\n" "\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file.\n" +"of a file\n" "\t\tkubectl apply set-last-applied -f deploy.yaml\n" "\n" "\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" +"directory\n" "\t\tkubectl apply set-last-applied -f path/\n" "\n" "\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file, will create the annotation if it does not already exist.\n" +"of a file; will create the annotation if it does not already exist\n" "\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" "\t\t" -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:72 +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:75 msgid "" "\n" "\t\t# Show metrics for all pods in the default namespace\n" @@ -1575,142 +1596,142 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:62 msgid "" "\n" -"\t\t# Start a nginx pod.\n" +"\t\t# Start a nginx pod\n" "\t\tkubectl run nginx --image=nginx\n" "\n" -"\t\t# Start a hazelcast pod and let the container expose port 5701.\n" +"\t\t# Start a hazelcast pod and let the container expose port 5701\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --port=5701\n" "\n" "\t\t# Start a hazelcast pod and set environment variables " -"\"DNS_DOMAIN=cluster\" and \"POD_NAMESPACE=default\" in the container.\n" +"\"DNS_DOMAIN=cluster\" and \"POD_NAMESPACE=default\" in the container\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --env=" "\"DNS_DOMAIN=cluster\" --env=\"POD_NAMESPACE=default\"\n" "\n" "\t\t# Start a hazelcast pod and set labels \"app=hazelcast\" and \"env=prod" -"\" in the container.\n" +"\" in the container\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --labels=" "\"app=hazelcast,env=prod\"\n" "\n" -"\t\t# Dry run. Print the corresponding API objects without creating them.\n" +"\t\t# Dry run; print the corresponding API objects without creating them\n" "\t\tkubectl run nginx --image=nginx --dry-run=client\n" "\n" "\t\t# Start a nginx pod, but overload the spec with a partial set of values " -"parsed from JSON.\n" +"parsed from JSON\n" "\t\tkubectl run nginx --image=nginx --overrides='{ \"apiVersion\": \"v1\", " "\"spec\": { ... } }'\n" "\n" "\t\t# Start a busybox pod and keep it in the foreground, don't restart it if " -"it exits.\n" +"it exits\n" "\t\tkubectl run -i -t busybox --image=busybox --restart=Never\n" "\n" "\t\t# Start the nginx pod using the default command, but use custom " -"arguments (arg1 .. argN) for that command.\n" +"arguments (arg1 .. argN) for that command\n" "\t\tkubectl run nginx --image=nginx -- ... \n" "\n" -"\t\t# Start the nginx pod using a different command and custom arguments.\n" +"\t\t# Start the nginx pod using a different command and custom arguments\n" "\t\tkubectl run nginx --image=nginx --command -- ... " msgstr "" "\n" -"\t\t# Start a nginx pod.\n" +"\t\t# Start a nginx pod\n" "\t\tkubectl run nginx --image=nginx\n" "\n" -"\t\t# Start a hazelcast pod and let the container expose port 5701.\n" +"\t\t# Start a hazelcast pod and let the container expose port 5701\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --port=5701\n" "\n" "\t\t# Start a hazelcast pod and set environment variables " -"\"DNS_DOMAIN=cluster\" and \"POD_NAMESPACE=default\" in the container.\n" +"\"DNS_DOMAIN=cluster\" and \"POD_NAMESPACE=default\" in the container\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --env=" "\"DNS_DOMAIN=cluster\" --env=\"POD_NAMESPACE=default\"\n" "\n" "\t\t# Start a hazelcast pod and set labels \"app=hazelcast\" and \"env=prod" -"\" in the container.\n" +"\" in the container\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --labels=" "\"app=hazelcast,env=prod\"\n" "\n" -"\t\t# Dry run. Print the corresponding API objects without creating them.\n" +"\t\t# Dry run; print the corresponding API objects without creating them\n" "\t\tkubectl run nginx --image=nginx --dry-run=client\n" "\n" "\t\t# Start a nginx pod, but overload the spec with a partial set of values " -"parsed from JSON.\n" +"parsed from JSON\n" "\t\tkubectl run nginx --image=nginx --overrides='{ \"apiVersion\": \"v1\", " "\"spec\": { ... } }'\n" "\n" "\t\t# Start a busybox pod and keep it in the foreground, don't restart it if " -"it exits.\n" +"it exits\n" "\t\tkubectl run -i -t busybox --image=busybox --restart=Never\n" "\n" "\t\t# Start the nginx pod using the default command, but use custom " -"arguments (arg1 .. argN) for that command.\n" +"arguments (arg1 .. argN) for that command\n" "\t\tkubectl run nginx --image=nginx -- ... \n" "\n" -"\t\t# Start the nginx pod using a different command and custom arguments.\n" +"\t\t# Start the nginx pod using a different command and custom arguments\n" "\t\tkubectl run nginx --image=nginx --command -- ... " #: staging/src/k8s.io/kubectl/pkg/cmd/proxy/proxy.go:73 msgid "" "\n" -"\t\t# To proxy all of the kubernetes api and nothing else.\n" +"\t\t# To proxy all of the Kubernetes API and nothing else\n" "\t\tkubectl proxy --api-prefix=/\n" "\n" -"\t\t# To proxy only part of the kubernetes api and also some static files.\n" +"\t\t# To proxy only part of the Kubernetes API and also some static files\n" "\t\t# You can get pods info with 'curl localhost:8001/api/v1/pods'\n" "\t\tkubectl proxy --www=/my/files --www-prefix=/static/ --api-prefix=/api/\n" "\n" -"\t\t# To proxy the entire kubernetes api at a different root.\n" +"\t\t# To proxy the entire Kubernetes API at a different root\n" "\t\t# You can get pods info with 'curl localhost:8001/custom/api/v1/pods'\n" "\t\tkubectl proxy --api-prefix=/custom/\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver on port 8011, serving static " +"\t\t# Run a proxy to the Kubernetes API server on port 8011, serving static " "content from ./local/www/\n" "\t\tkubectl proxy --port=8011 --www=./local/www/\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver on an arbitrary local port.\n" -"\t\t# The chosen port for the server will be output to stdout.\n" +"\t\t# Run a proxy to the Kubernetes API server on an arbitrary local port\n" +"\t\t# The chosen port for the server will be output to stdout\n" "\t\tkubectl proxy --port=0\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver, changing the api prefix to k8s-" -"api\n" -"\t\t# This makes e.g. the pods api available at localhost:8001/k8s-api/v1/" +"\t\t# Run a proxy to the Kubernetes API server, changing the API prefix to " +"k8s-api\n" +"\t\t# This makes e.g. the pods API available at localhost:8001/k8s-api/v1/" "pods/\n" "\t\tkubectl proxy --api-prefix=/k8s-api" msgstr "" "\n" -"\t\t# To proxy all of the kubernetes api and nothing else.\n" +"\t\t# To proxy all of the Kubernetes API and nothing else\n" "\t\tkubectl proxy --api-prefix=/\n" "\n" -"\t\t# To proxy only part of the kubernetes api and also some static files.\n" +"\t\t# To proxy only part of the Kubernetes API and also some static files\n" "\t\t# You can get pods info with 'curl localhost:8001/api/v1/pods'\n" "\t\tkubectl proxy --www=/my/files --www-prefix=/static/ --api-prefix=/api/\n" "\n" -"\t\t# To proxy the entire kubernetes api at a different root.\n" +"\t\t# To proxy the entire Kubernetes API at a different root\n" "\t\t# You can get pods info with 'curl localhost:8001/custom/api/v1/pods'\n" "\t\tkubectl proxy --api-prefix=/custom/\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver on port 8011, serving static " +"\t\t# Run a proxy to the Kubernetes API server on port 8011, serving static " "content from ./local/www/\n" "\t\tkubectl proxy --port=8011 --www=./local/www/\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver on an arbitrary local port.\n" -"\t\t# The chosen port for the server will be output to stdout.\n" +"\t\t# Run a proxy to the Kubernetes API server on an arbitrary local port\n" +"\t\t# The chosen port for the server will be output to stdout\n" "\t\tkubectl proxy --port=0\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver, changing the api prefix to k8s-" -"api\n" -"\t\t# This makes e.g. the pods api available at localhost:8001/k8s-api/v1/" +"\t\t# Run a proxy to the Kubernetes API server, changing the API prefix to " +"k8s-api\n" +"\t\t# This makes e.g. the pods API available at localhost:8001/k8s-api/v1/" "pods/\n" "\t\tkubectl proxy --api-prefix=/k8s-api" -#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:79 +#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:80 msgid "" "\n" "\t\t# Update node 'foo' with a taint with key 'dedicated' and value 'special-" -"user' and effect 'NoSchedule'.\n" +"user' and effect 'NoSchedule'\n" "\t\t# If a taint with that key and effect already exists, its value is " -"replaced as specified.\n" +"replaced as specified\n" "\t\tkubectl taint nodes foo dedicated=special-user:NoSchedule\n" "\n" "\t\t# Remove from node 'foo' the taint with key 'dedicated' and effect " -"'NoSchedule' if one exists.\n" +"'NoSchedule' if one exists\n" "\t\tkubectl taint nodes foo dedicated:NoSchedule-\n" "\n" "\t\t# Remove from node 'foo' all the taints with key 'dedicated'\n" @@ -1724,13 +1745,13 @@ msgid "" msgstr "" "\n" "\t\t# Update node 'foo' with a taint with key 'dedicated' and value 'special-" -"user' and effect 'NoSchedule'.\n" +"user' and effect 'NoSchedule'\n" "\t\t# If a taint with that key and effect already exists, its value is " -"replaced as specified.\n" +"replaced as specified\n" "\t\tkubectl taint nodes foo dedicated=special-user:NoSchedule\n" "\n" "\t\t# Remove from node 'foo' the taint with key 'dedicated' and effect " -"'NoSchedule' if one exists.\n" +"'NoSchedule' if one exists\n" "\t\tkubectl taint nodes foo dedicated:NoSchedule-\n" "\n" "\t\t# Remove from node 'foo' all the taints with key 'dedicated'\n" @@ -1742,14 +1763,14 @@ msgstr "" "\t\t# Add to node 'foo' a taint with key 'bar' and no value\n" "\t\tkubectl taint nodes foo bar:NoSchedule" -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:94 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:95 msgid "" "\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'\n" "\t\tkubectl label pods foo unhealthy=true\n" "\n" "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" +"overwriting any existing value\n" "\t\tkubectl label --overwrite pods foo status=unhealthy\n" "\n" "\t\t# Update all pods in the namespace\n" @@ -1758,19 +1779,19 @@ msgid "" "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" "\t\tkubectl label -f pod.json status=unhealthy\n" "\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +"\t\t# Update pod 'foo' only if the resource is unchanged from version 1\n" "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" "\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" +"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists\n" +"\t\t# Does not require the --overwrite flag\n" "\t\tkubectl label pods foo bar-" msgstr "" "\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'\n" "\t\tkubectl label pods foo unhealthy=true\n" "\n" "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" +"overwriting any existing value\n" "\t\tkubectl label --overwrite pods foo status=unhealthy\n" "\n" "\t\t# Update all pods in the namespace\n" @@ -1779,24 +1800,24 @@ msgstr "" "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" "\t\tkubectl label -f pod.json status=unhealthy\n" "\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +"\t\t# Update pod 'foo' only if the resource is unchanged from version 1\n" "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" "\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" +"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists\n" +"\t\t# Does not require the --overwrite flag\n" "\t\tkubectl label pods foo bar-" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:53 msgid "" "\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" +"\t\t# View the last-applied-configuration annotations by type/name in YAML\n" "\t\tkubectl apply view-last-applied deployment/nginx\n" "\n" "\t\t# View the last-applied-configuration annotations by file in JSON\n" "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" msgstr "" "\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" +"\t\t# View the last-applied-configuration annotations by type/name in YAML\n" "\t\tkubectl apply view-last-applied deployment/nginx\n" "\n" "\t\t# View the last-applied-configuration annotations by file in JSON\n" @@ -1806,34 +1827,36 @@ msgstr "" msgid "" "\n" "\t\t# Wait for the pod \"busybox1\" to contain the status condition of type " -"\"Ready\".\n" +"\"Ready\"\n" "\t\tkubectl wait --for=condition=Ready pod/busybox1\n" "\n" -"\t\t# The default value of status condition is true, you can set false.\n" +"\t\t# The default value of status condition is true; you can set it to " +"false\n" "\t\tkubectl wait --for=condition=Ready=false pod/busybox1\n" "\n" "\t\t# Wait for the pod \"busybox1\" to be deleted, with a timeout of 60s, " -"after having issued the \"delete\" command.\n" +"after having issued the \"delete\" command\n" "\t\tkubectl delete pod/busybox1\n" "\t\tkubectl wait --for=delete pod/busybox1 --timeout=60s" msgstr "" "\n" "\t\t# Wait for the pod \"busybox1\" to contain the status condition of type " -"\"Ready\".\n" +"\"Ready\"\n" "\t\tkubectl wait --for=condition=Ready pod/busybox1\n" "\n" -"\t\t# The default value of status condition is true, you can set false.\n" +"\t\t# The default value of status condition is true; you can set it to " +"false\n" "\t\tkubectl wait --for=condition=Ready=false pod/busybox1\n" "\n" "\t\t# Wait for the pod \"busybox1\" to be deleted, with a timeout of 60s, " -"after having issued the \"delete\" command.\n" +"after having issued the \"delete\" command\n" "\t\tkubectl delete pod/busybox1\n" "\t\tkubectl wait --for=delete pod/busybox1 --timeout=60s" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:110 msgid "" "\n" -"\t\tApply a configuration to a resource by filename or stdin.\n" +"\t\tApply a configuration to a resource by file name or stdin.\n" "\t\tThe resource name must be specified. This resource will be created if it " "doesn't exist yet.\n" "\t\tTo use 'apply', always create the resource initially with either 'apply' " @@ -1846,7 +1869,7 @@ msgid "" "k8s.io/34274." msgstr "" "\n" -"\t\tApply a configuration to a resource by filename or stdin.\n" +"\t\tApply a configuration to a resource by file name or stdin.\n" "\t\tThe resource name must be specified. This resource will be created if it " "doesn't exist yet.\n" "\t\tTo use 'apply', always create the resource initially with either 'apply' " @@ -1901,12 +1924,12 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set.go:28 msgid "" "\n" -"\t\tConfigure application resources\n" +"\t\tConfigure application resources.\n" "\n" "\t\tThese commands help you make changes to existing application resources." msgstr "" "\n" -"\t\tConfigure application resources\n" +"\t\tConfigure application resources.\n" "\n" "\t\tThese commands help you make changes to existing application resources." @@ -1940,94 +1963,83 @@ msgstr "" "-o option\n" "\t\tto change to output destination." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L68 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38 -msgid "" -"\n" -"\t\tCreate a ClusterRole." -msgstr "" -"\n" -"\t\tCreate a ClusterRole." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a ClusterRoleBinding for a particular ClusterRole." -msgstr "" -"\n" -"\t\tCreate a ClusterRoleBinding for a particular ClusterRole." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a RoleBinding for a particular Role or ClusterRole." -msgstr "" -"\n" -"\t\tCreate a RoleBinding for a particular Role or ClusterRole." - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:41 msgid "" "\n" "\t\tCreate a TLS secret from the given public/private key pair.\n" "\n" -"\t\tThe public/private key pair must exist before hand. The public key " +"\t\tThe public/private key pair must exist beforehand. The public key " "certificate must be .PEM encoded and match\n" "\t\tthe given private key." msgstr "" "\n" "\t\tCreate a TLS secret from the given public/private key pair.\n" "\n" -"\t\tThe public/private key pair must exist before hand. The public key " +"\t\tThe public/private key pair must exist beforehand. The public key " "certificate must be .PEM encoded and match\n" "\t\tthe given private key." +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:41 +msgid "" +"\n" +"\t\tCreate a cluster role binding for a particular cluster role." +msgstr "" +"\n" +"\t\tCreate a cluster role binding for a particular cluster role." + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38 +msgid "" +"\n" +"\t\tCreate a cluster role." +msgstr "" +"\n" +"\t\tCreate a cluster role." + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:46 msgid "" "\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " +"\t\tCreate a config map based on a file, directory, or specified literal " "value.\n" "\n" -"\t\tA single configmap may package one or more key/value pairs.\n" +"\t\tA single config map may package one or more key/value pairs.\n" "\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " +"\t\tWhen creating a config map based on a file, the key will default to the " "basename of the file, and the value will\n" "\t\tdefault to the file content. If the basename is an invalid key, you may " "specify an alternate key.\n" "\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" +"\t\tWhen creating a config map based on a directory, each file whose " +"basename is a valid key in the directory will be\n" +"\t\tpackaged into the config map. Any directory entries except regular " +"files are ignored (e.g. subdirectories,\n" "\t\tsymlinks, devices, pipes, etc)." msgstr "" "\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " +"\t\tCreate a config map based on a file, directory, or specified literal " "value.\n" "\n" -"\t\tA single configmap may package one or more key/value pairs.\n" +"\t\tA single config map may package one or more key/value pairs.\n" "\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " +"\t\tWhen creating a config map based on a file, the key will default to the " "basename of the file, and the value will\n" "\t\tdefault to the file content. If the basename is an invalid key, you may " "specify an alternate key.\n" "\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" +"\t\tWhen creating a config map based on a directory, each file whose " +"basename is a valid key in the directory will be\n" +"\t\tpackaged into the config map. Any directory entries except regular " +"files are ignored (e.g. subdirectories,\n" "\t\tsymlinks, devices, pipes, etc)." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_cronjob.go:42 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_cronjob.go:40 msgid "" "\n" -"\t\tCreate a cronjob with the specified name." +"\t\tCreate a cron job with the specified name." msgstr "" "\n" -"\t\tCreate a cronjob with the specified name." +"\t\tCreate a cron job with the specified name." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:41 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:40 msgid "" "\n" "\t\tCreate a job with the specified name." @@ -2062,7 +2074,7 @@ msgid "" "\n" "\t\tWhen creating applications, you may have a Docker registry that requires " "authentication. In order for the\n" -"\t\tnodes to pull images on your behalf, they have to have the credentials. " +"\t\tnodes to pull images on your behalf, they must have the credentials. " "You can provide this information\n" "\t\tby creating a dockercfg secret and attaching it to your service account." msgstr "" @@ -2082,30 +2094,29 @@ msgstr "" "\n" "\t\tWhen creating applications, you may have a Docker registry that requires " "authentication. In order for the\n" -"\t\tnodes to pull images on your behalf, they have to have the credentials. " +"\t\tnodes to pull images on your behalf, they must have the credentials. " "You can provide this information\n" "\t\tby creating a dockercfg secret and attaching it to your service account." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:41 msgid "" "\n" "\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" +"desired minimum available pods." msgstr "" "\n" "\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" +"desired minimum available pods." #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:40 msgid "" "\n" -"\t\tCreate a priorityclass with the specified name, value, globalDefault and " -"description" +"\t\tCreate a priority class with the specified name, value, globalDefault " +"and description." msgstr "" "\n" -"\t\tCreate a priorityclass with the specified name, value, globalDefault and " -"description" +"\t\tCreate a priority class with the specified name, value, globalDefault " +"and description." #: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:71 msgid "" @@ -2119,16 +2130,23 @@ msgstr "" "\n" "\t\tJSON and YAML formats are accepted." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:41 msgid "" "\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" +"\t\tCreate a resource quota with the specified name, hard limits, and " +"optional scopes." msgstr "" "\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" +"\t\tCreate a resource quota with the specified name, hard limits, and " +"optional scopes." + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40 +msgid "" +"\n" +"\t\tCreate a role binding for a particular role or cluster role." +msgstr "" +"\n" +"\t\tCreate a role binding for a particular role or cluster role." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:43 @@ -2189,42 +2207,42 @@ msgid "" "\n" "\t\tCreates a proxy server or application-level gateway between localhost " "and\n" -"\t\tthe Kubernetes API Server. It also allows serving static content over " +"\t\tthe Kubernetes API server. It also allows serving static content over " "specified\n" "\t\tHTTP path. All incoming data enters through one port and gets forwarded " "to\n" -"\t\tthe remote kubernetes API Server port, except for the path matching the " +"\t\tthe remote Kubernetes API server port, except for the path matching the " "static content path." msgstr "" "\n" "\t\tCreates a proxy server or application-level gateway between localhost " "and\n" -"\t\tthe Kubernetes API Server. It also allows serving static content over " +"\t\tthe Kubernetes API server. It also allows serving static content over " "specified\n" "\t\tHTTP path. All incoming data enters through one port and gets forwarded " "to\n" -"\t\tthe remote kubernetes API Server port, except for the path matching the " +"\t\tthe remote Kubernetes API server port, except for the path matching the " "static content path." #: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:42 msgid "" "\n" "\t\tCreates an autoscaler that automatically chooses and sets the number of " -"pods that run in a kubernetes cluster.\n" +"pods that run in a Kubernetes cluster.\n" "\n" -"\t\tLooks up a Deployment, ReplicaSet, StatefulSet, or ReplicationController " -"by name and creates an autoscaler that uses the given resource as a " -"reference.\n" +"\t\tLooks up a deployment, replica set, stateful set, or replication " +"controller by name and creates an autoscaler that uses the given resource as " +"a reference.\n" "\t\tAn autoscaler can automatically increase or decrease number of pods " "deployed within the system as needed." msgstr "" "\n" "\t\tCreates an autoscaler that automatically chooses and sets the number of " -"pods that run in a kubernetes cluster.\n" +"pods that run in a Kubernetes cluster.\n" "\n" -"\t\tLooks up a Deployment, ReplicaSet, StatefulSet, or ReplicationController " -"by name and creates an autoscaler that uses the given resource as a " -"reference.\n" +"\t\tLooks up a deployment, replica set, stateful set, or replication " +"controller by name and creates an autoscaler that uses the given resource as " +"a reference.\n" "\t\tAn autoscaler can automatically increase or decrease number of pods " "deployed within the system as needed." @@ -2274,14 +2292,14 @@ msgstr "" "access\n" "\t\t the node's filesystem.\n" -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:44 +#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:45 msgid "" "\n" -"\t\tDelete resources by filenames, stdin, resources and names, or by " +"\t\tDelete resources by file names, stdin, resources and names, or by " "resources and label selector.\n" "\n" -"\t\tJSON and YAML formats are accepted. Only one type of the arguments may " -"be specified: filenames,\n" +"\t\tJSON and YAML formats are accepted. Only one type of argument may be " +"specified: file names,\n" "\t\tresources and names, or resources and label selector.\n" "\n" "\t\tSome resources, such as pods, support graceful deletion. These resources " @@ -2297,7 +2315,8 @@ msgid "" "\t\tthan the grace period. To force delete a resource, you must specify the " "--force flag.\n" "\t\tNote: only a subset of resources support graceful deletion. In absence " -"of the support, --grace-period is ignored.\n" +"of the support,\n" +"\t\tthe --grace-period flag is ignored.\n" "\n" "\t\tIMPORTANT: Force deleting pods does not wait for confirmation that the " "pod's processes have been\n" @@ -2313,8 +2332,8 @@ msgid "" "sure the pod is\n" "\t\tterminated, or if your application can tolerate multiple copies of the " "same pod running at once.\n" -"\t\tAlso, if you force delete pods the scheduler may place new pods on those " -"nodes before the node\n" +"\t\tAlso, if you force delete pods, the scheduler may place new pods on " +"those nodes before the node\n" "\t\thas released those resources and causing those pods to be evicted " "immediately.\n" "\n" @@ -2325,11 +2344,11 @@ msgid "" "\t\trest of the resource." msgstr "" "\n" -"\t\tDelete resources by filenames, stdin, resources and names, or by " +"\t\tDelete resources by file names, stdin, resources and names, or by " "resources and label selector.\n" "\n" -"\t\tJSON and YAML formats are accepted. Only one type of the arguments may " -"be specified: filenames,\n" +"\t\tJSON and YAML formats are accepted. Only one type of argument may be " +"specified: file names,\n" "\t\tresources and names, or resources and label selector.\n" "\n" "\t\tSome resources, such as pods, support graceful deletion. These resources " @@ -2345,7 +2364,8 @@ msgstr "" "\t\tthan the grace period. To force delete a resource, you must specify the " "--force flag.\n" "\t\tNote: only a subset of resources support graceful deletion. In absence " -"of the support, --grace-period is ignored.\n" +"of the support,\n" +"\t\tthe --grace-period flag is ignored.\n" "\n" "\t\tIMPORTANT: Force deleting pods does not wait for confirmation that the " "pod's processes have been\n" @@ -2361,8 +2381,8 @@ msgstr "" "sure the pod is\n" "\t\tterminated, or if your application can tolerate multiple copies of the " "same pod running at once.\n" -"\t\tAlso, if you force delete pods the scheduler may place new pods on those " -"nodes before the node\n" +"\t\tAlso, if you force delete pods, the scheduler may place new pods on " +"those nodes before the node\n" "\t\thas released those resources and causing those pods to be evicted " "immediately.\n" "\n" @@ -2372,7 +2392,7 @@ msgstr "" "be lost along with the\n" "\t\trest of the resource." -#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:171 +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:175 msgid "" "\n" "\t\tDeny a certificate signing request.\n" @@ -2395,11 +2415,11 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:53 msgid "" "\n" -"\t\tDiff configurations specified by filename or stdin between the current " +"\t\tDiff configurations specified by file name or stdin between the current " "online\n" "\t\tconfiguration, and the configuration as it would be if applied.\n" "\n" -"\t\tOutput is always YAML.\n" +"\t\tThe output is always YAML.\n" "\n" "\t\tKUBECTL_EXTERNAL_DIFF environment variable can be used to select your " "own\n" @@ -2407,8 +2427,8 @@ msgid "" "\t\tKUBECTL_EXTERNAL_DIFF=\"colordiff -N -u\"\n" "\n" "\t\tBy default, the \"diff\" command available in your path will be\n" -"\t\trun with \"-u\" (unified diff) and \"-N\" (treat absent files as empty) " -"options.\n" +"\t\trun with the \"-u\" (unified diff) and \"-N\" (treat absent files as " +"empty) options.\n" "\n" "\t\tExit status:\n" "\t\t 0\n" @@ -2422,11 +2442,11 @@ msgid "" "convention." msgstr "" "\n" -"\t\tDiff configurations specified by filename or stdin between the current " +"\t\tDiff configurations specified by file name or stdin between the current " "online\n" "\t\tconfiguration, and the configuration as it would be if applied.\n" "\n" -"\t\tOutput is always YAML.\n" +"\t\tThe output is always YAML.\n" "\n" "\t\tKUBECTL_EXTERNAL_DIFF environment variable can be used to select your " "own\n" @@ -2434,8 +2454,8 @@ msgstr "" "\t\tKUBECTL_EXTERNAL_DIFF=\"colordiff -N -u\"\n" "\n" "\t\tBy default, the \"diff\" command available in your path will be\n" -"\t\trun with \"-u\" (unified diff) and \"-N\" (treat absent files as empty) " -"options.\n" +"\t\trun with the \"-u\" (unified diff) and \"-N\" (treat absent files as " +"empty) options.\n" "\n" "\t\tExit status:\n" "\t\t 0\n" @@ -2448,40 +2468,6 @@ msgstr "" "\t\tNote: KUBECTL_EXTERNAL_DIFF, if used, is expected to follow that " "convention." -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:57 -msgid "" -"\n" -"\t\tDisplay Resource (CPU/Memory) usage of nodes.\n" -"\n" -"\t\tThe top-node command allows you to see the resource consumption of nodes." -msgstr "" -"\n" -"\t\tDisplay Resource (CPU/Memory) usage of nodes.\n" -"\n" -"\t\tThe top-node command allows you to see the resource consumption of nodes." - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:64 -msgid "" -"\n" -"\t\tDisplay Resource (CPU/Memory) usage of pods.\n" -"\n" -"\t\tThe 'top pod' command allows you to see the resource consumption of " -"pods.\n" -"\n" -"\t\tDue to the metrics pipeline delay, they may be unavailable for a few " -"minutes\n" -"\t\tsince pod creation." -msgstr "" -"\n" -"\t\tDisplay Resource (CPU/Memory) usage of pods.\n" -"\n" -"\t\tThe 'top pod' command allows you to see the resource consumption of " -"pods.\n" -"\n" -"\t\tDue to the metrics pipeline delay, they may be unavailable for a few " -"minutes\n" -"\t\tsince pod creation." - #: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:39 msgid "" "\n" @@ -2516,10 +2502,10 @@ msgstr "" "\t\tYou can use --output jsonpath={...} to extract specific values using a " "jsonpath expression." -#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:88 +#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:92 msgid "" "\n" -"\t\tDisplay one or many resources\n" +"\t\tDisplay one or many resources.\n" "\n" "\t\tPrints a table of the most important information about the specified " "resources.\n" @@ -2538,7 +2524,7 @@ msgid "" "resources." msgstr "" "\n" -"\t\tDisplay one or many resources\n" +"\t\tDisplay one or many resources.\n" "\n" "\t\tPrints a table of the most important information about the specified " "resources.\n" @@ -2556,37 +2542,72 @@ msgstr "" "\t\tof the --template flag, you can filter the attributes of the fetched " "resources." +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:57 +msgid "" +"\n" +"\t\tDisplay resource (CPU/memory) usage of nodes.\n" +"\n" +"\t\tThe top-node command allows you to see the resource consumption of nodes." +msgstr "" +"\n" +"\t\tDisplay resource (CPU/memory) usage of nodes.\n" +"\n" +"\t\tThe top-node command allows you to see the resource consumption of nodes." + +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:67 +msgid "" +"\n" +"\t\tDisplay resource (CPU/memory) usage of pods.\n" +"\n" +"\t\tThe 'top pod' command allows you to see the resource consumption of " +"pods.\n" +"\n" +"\t\tDue to the metrics pipeline delay, they may be unavailable for a few " +"minutes\n" +"\t\tsince pod creation." +msgstr "" +"\n" +"\t\tDisplay resource (CPU/memory) usage of pods.\n" +"\n" +"\t\tThe 'top pod' command allows you to see the resource consumption of " +"pods.\n" +"\n" +"\t\tDue to the metrics pipeline delay, they may be unavailable for a few " +"minutes\n" +"\t\tsince pod creation." + #: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:37 msgid "" "\n" -"\t\tDisplays the current-context" +"\t\tDisplay the current-context." msgstr "" "\n" -"\t\tDisplays the current-context" +"\t\tDisplay the current-context." -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:110 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:113 msgid "" "\n" "\t\tDrain node in preparation for maintenance.\n" "\n" "\t\tThe given node will be marked unschedulable to prevent new pods from " "arriving.\n" -"\t\t'drain' evicts the pods if the APIServer supports\n" -"\t\t[eviction](http://kubernetes.io/docs/admin/disruptions/). Otherwise, it " -"will use normal\n" +"\t\t'drain' evicts the pods if the API server supports\n" +"\t\t[eviction](https://kubernetes.io/docs/concepts/workloads/pods/" +"disruptions/). Otherwise, it will use normal\n" "\t\tDELETE to delete the pods.\n" "\t\tThe 'drain' evicts or deletes all pods except mirror pods (which cannot " "be deleted through\n" -"\t\tthe API server). If there are DaemonSet-managed pods, drain will not " +"\t\tthe API server). If there are daemon set-managed pods, drain will not " "proceed\n" "\t\twithout --ignore-daemonsets, and regardless it will not delete any\n" -"\t\tDaemonSet-managed pods, because those pods would be immediately replaced " -"by the\n" -"\t\tDaemonSet controller, which ignores unschedulable markings. If there " +"\t\tdaemon set-managed pods, because those pods would be immediately " +"replaced by the\n" +"\t\tdaemon set controller, which ignores unschedulable markings. If there " "are any\n" -"\t\tpods that are neither mirror pods nor managed by ReplicationController,\n" -"\t\tReplicaSet, DaemonSet, StatefulSet or Job, then drain will not delete " -"any pods unless you\n" +"\t\tpods that are neither mirror pods nor managed by a replication " +"controller,\n" +"\t\treplica set, daemon set, stateful set, or job, then drain will not " +"delete any pods unless you\n" "\t\tuse --force. --force will also allow deletion to proceed if the " "managing resource of one\n" "\t\tor more pods is missing.\n" @@ -2599,29 +2620,30 @@ msgid "" "uncordon, which\n" "\t\twill make the node schedulable again.\n" "\n" -"\t\t![Workflow](http://kubernetes.io/images/docs/kubectl_drain.svg)" +"\t\t![Workflow](https://kubernetes.io/images/docs/kubectl_drain.svg)" msgstr "" "\n" "\t\tDrain node in preparation for maintenance.\n" "\n" "\t\tThe given node will be marked unschedulable to prevent new pods from " "arriving.\n" -"\t\t'drain' evicts the pods if the APIServer supports\n" -"\t\t[eviction](http://kubernetes.io/docs/admin/disruptions/). Otherwise, it " -"will use normal\n" +"\t\t'drain' evicts the pods if the API server supports\n" +"\t\t[eviction](https://kubernetes.io/docs/concepts/workloads/pods/" +"disruptions/). Otherwise, it will use normal\n" "\t\tDELETE to delete the pods.\n" "\t\tThe 'drain' evicts or deletes all pods except mirror pods (which cannot " "be deleted through\n" -"\t\tthe API server). If there are DaemonSet-managed pods, drain will not " +"\t\tthe API server). If there are daemon set-managed pods, drain will not " "proceed\n" "\t\twithout --ignore-daemonsets, and regardless it will not delete any\n" -"\t\tDaemonSet-managed pods, because those pods would be immediately replaced " -"by the\n" -"\t\tDaemonSet controller, which ignores unschedulable markings. If there " +"\t\tdaemon set-managed pods, because those pods would be immediately " +"replaced by the\n" +"\t\tdaemon set controller, which ignores unschedulable markings. If there " "are any\n" -"\t\tpods that are neither mirror pods nor managed by ReplicationController,\n" -"\t\tReplicaSet, DaemonSet, StatefulSet or Job, then drain will not delete " -"any pods unless you\n" +"\t\tpods that are neither mirror pods nor managed by a replication " +"controller,\n" +"\t\treplica set, daemon set, stateful set, or job, then drain will not " +"delete any pods unless you\n" "\t\tuse --force. --force will also allow deletion to proceed if the " "managing resource of one\n" "\t\tor more pods is missing.\n" @@ -2634,22 +2656,22 @@ msgstr "" "uncordon, which\n" "\t\twill make the node schedulable again.\n" "\n" -"\t\t![Workflow](http://kubernetes.io/images/docs/kubectl_drain.svg)" +"\t\t![Workflow](https://kubernetes.io/images/docs/kubectl_drain.svg)" -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:30 +#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:31 msgid "" "\n" "\t\tEdit a resource from the default editor.\n" "\n" "\t\tThe edit command allows you to directly edit any API resource you can " "retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " +"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, " "or EDITOR\n" "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " "Windows.\n" "\t\tYou can edit multiple objects, although changes are applied one at a " "time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " +"\t\taccepts file names as well as command-line arguments, although the files " "you point to must\n" "\t\tbe previously saved versions of resources.\n" "\n" @@ -2678,13 +2700,13 @@ msgstr "" "\n" "\t\tThe edit command allows you to directly edit any API resource you can " "retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " +"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, " "or EDITOR\n" "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " "Windows.\n" "\t\tYou can edit multiple objects, although changes are applied one at a " "time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " +"\t\taccepts file names as well as command-line arguments, although the files " "you point to must\n" "\t\tbe previously saved versions of resources.\n" "\n" @@ -2708,7 +2730,7 @@ msgstr "" "your temporary\n" "\t\tsaved copy to include the latest resource version." -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_edit_last_applied.go:30 +#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_edit_last_applied.go:31 msgid "" "\n" "\t\tEdit the latest last-applied-configuration annotations of resources from " @@ -2716,13 +2738,13 @@ msgid "" "\n" "\t\tThe edit-last-applied command allows you to directly edit any API " "resource you can retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " +"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, " "or EDITOR\n" "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " "Windows.\n" "\t\tYou can edit multiple objects, although changes are applied one at a " "time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " +"\t\taccepts file names as well as command-line arguments, although the files " "you point to must\n" "\t\tbe previously saved versions of resources.\n" "\n" @@ -2748,13 +2770,13 @@ msgstr "" "\n" "\t\tThe edit-last-applied command allows you to directly edit any API " "resource you can retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " +"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, " "or EDITOR\n" "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " "Windows.\n" "\t\tYou can edit multiple objects, although changes are applied one at a " "time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " +"\t\taccepts file names as well as command-line arguments, although the files " "you point to must\n" "\t\tbe previously saved versions of resources.\n" "\n" @@ -2789,7 +2811,7 @@ msgid "" "\n" "\t\tA successful message will be printed to stdout indicating when the " "specified\n" -" condition has been met. One can use -o option to change to output " +" condition has been met. You can use -o option to change to output " "destination." msgstr "" "\n" @@ -2805,7 +2827,7 @@ msgstr "" "\n" "\t\tA successful message will be printed to stdout indicating when the " "specified\n" -" condition has been met. One can use -o option to change to output " +" condition has been met. You can use -o option to change to output " "destination." #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:47 @@ -2871,7 +2893,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:35 msgid "" "\n" -"\t\tList the fields for supported resources\n" +"\t\tList the fields for supported resources.\n" "\n" "\t\tThis command describes the fields associated with each supported API " "resource.\n" @@ -2885,7 +2907,7 @@ msgid "" "format." msgstr "" "\n" -"\t\tList the fields for supported resources\n" +"\t\tList the fields for supported resources.\n" "\n" "\t\tThis command describes the fields associated with each supported API " "resource.\n" @@ -2907,7 +2929,7 @@ msgstr "" "\t\tManage the rollout of a resource." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L127 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:84 msgid "" "\n" "\t\tMark node as schedulable." @@ -2916,7 +2938,7 @@ msgstr "" "\t\tMark node as schedulable." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:54 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:55 msgid "" "\n" "\t\tMark node as unschedulable." @@ -2924,23 +2946,23 @@ msgstr "" "\n" "\t\tMark node as unschedulable." -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:56 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:57 msgid "" "\n" -"\t\tMark the provided resource as paused\n" +"\t\tMark the provided resource as paused.\n" "\n" "\t\tPaused resources will not be reconciled by a controller.\n" "\t\tUse \"kubectl rollout resume\" to resume a paused resource.\n" "\t\tCurrently only deployments support being paused." msgstr "" "\n" -"\t\tMark the provided resource as paused\n" +"\t\tMark the provided resource as paused.\n" "\n" "\t\tPaused resources will not be reconciled by a controller.\n" "\t\tUse \"kubectl rollout resume\" to resume a paused resource.\n" "\t\tCurrently only deployments support being paused." -#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:47 +#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:46 msgid "" "\n" "\t\tOutput shell completion code for the specified shell (bash or zsh).\n" @@ -2963,7 +2985,7 @@ msgid "" "#enable-shell-autocompletion\n" "\n" "\t\tNote for zsh users: [1] zsh completions are only supported in versions " -"of zsh >= 5.2" +"of zsh >= 5.2." msgstr "" "\n" "\t\tOutput shell completion code for the specified shell (bash or zsh).\n" @@ -2986,7 +3008,7 @@ msgstr "" "#enable-shell-autocompletion\n" "\n" "\t\tNote for zsh users: [1] zsh completions are only supported in versions " -"of zsh >= 5.2" +"of zsh >= 5.2." #: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:49 msgid "" @@ -3026,32 +3048,32 @@ msgstr "" "\t\tTo install krew, visit [krew.sigs.k8s.io](https://krew.sigs.k8s.io/docs/" "user-guide/setup/install/)" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/rename_context.go:46 +#: staging/src/k8s.io/kubectl/pkg/cmd/config/rename_context.go:47 msgid "" "\n" "\t\tRenames a context from the kubeconfig file.\n" "\n" -"\t\tCONTEXT_NAME is the context name that you wish to change.\n" +"\t\tCONTEXT_NAME is the context name that you want to change.\n" "\n" -"\t\tNEW_NAME is the new name you wish to set.\n" +"\t\tNEW_NAME is the new name you want to set.\n" "\n" -"\t\tNote: In case the context being renamed is the 'current-context', this " -"field will also be updated." +"\t\tNote: If the context being renamed is the 'current-context', this field " +"will also be updated." msgstr "" "\n" "\t\tRenames a context from the kubeconfig file.\n" "\n" -"\t\tCONTEXT_NAME is the context name that you wish to change.\n" +"\t\tCONTEXT_NAME is the context name that you want to change.\n" "\n" -"\t\tNEW_NAME is the new name you wish to set.\n" +"\t\tNEW_NAME is the new name you want to set.\n" "\n" -"\t\tNote: In case the context being renamed is the 'current-context', this " -"field will also be updated." +"\t\tNote: If the context being renamed is the 'current-context', this field " +"will also be updated." #: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:48 msgid "" "\n" -"\t\tReplace a resource by filename or stdin.\n" +"\t\tReplace a resource by file name or stdin.\n" "\n" "\t\tJSON and YAML formats are accepted. If replacing an existing resource, " "the\n" @@ -3060,7 +3082,7 @@ msgid "" "\t\t $ kubectl get TYPE NAME -o yaml" msgstr "" "\n" -"\t\tReplace a resource by filename or stdin.\n" +"\t\tReplace a resource by file name or stdin.\n" "\n" "\t\tJSON and YAML formats are accepted. If replacing an existing resource, " "the\n" @@ -3068,47 +3090,75 @@ msgstr "" "\n" "\t\t $ kubectl get TYPE NAME -o yaml" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_restart.go:56 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_restart.go:57 msgid "" "\n" "\t\tRestart a resource.\n" "\n" -"\t Resource will be rollout restarted." +"\t Resource rollout will be restarted." msgstr "" "\n" "\t\tRestart a resource.\n" "\n" -"\t Resource will be rollout restarted." +"\t Resource rollout will be restarted." -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:57 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:58 msgid "" "\n" -"\t\tResume a paused resource\n" +"\t\tResume a paused resource.\n" "\n" "\t\tPaused resources will not be reconciled by a controller. By resuming a\n" "\t\tresource, we allow it to be reconciled again.\n" "\t\tCurrently only deployments support being resumed." msgstr "" "\n" -"\t\tResume a paused resource\n" +"\t\tResume a paused resource.\n" "\n" "\t\tPaused resources will not be reconciled by a controller. By resuming a\n" "\t\tresource, we allow it to be reconciled again.\n" "\t\tCurrently only deployments support being resumed." -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:54 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:55 msgid "" "\n" -"\t\tRollback to a previous rollout." +"\t\tRoll back to a previous rollout." msgstr "" "\n" -"\t\tRollback to a previous rollout." +"\t\tRoll back to a previous rollout." -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:39 +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:47 msgid "" "\n" -"\t\tSet a new size for a Deployment, ReplicaSet, Replication Controller, or " -"StatefulSet.\n" +"\t\tSet a cluster entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values for those fields." +msgstr "" +"\n" +"\t\tSet a cluster entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values for those fields." + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:44 +msgid "" +"\n" +"\t\tSet a context entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values for those fields." +msgstr "" +"\n" +"\t\tSet a context entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values for those fields." + +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:40 +msgid "" +"\n" +"\t\tSet a new size for a deployment, replica set, replication controller, or " +"stateful set.\n" "\n" "\t\tScale also allows users to specify one or more preconditions for the " "scale action.\n" @@ -3120,8 +3170,8 @@ msgid "" "\t\tscale is sent to the server." msgstr "" "\n" -"\t\tSet a new size for a Deployment, ReplicaSet, Replication Controller, or " -"StatefulSet.\n" +"\t\tSet a new size for a deployment, replica set, replication controller, or " +"stateful set.\n" "\n" "\t\tScale also allows users to specify one or more preconditions for the " "scale action.\n" @@ -3132,6 +3182,43 @@ msgstr "" "true when the\n" "\t\tscale is sent to the server." +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:70 +#, c-format +msgid "" +"\n" +"\t\tSet a user entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values.\n" +"\n" +"\t\t Client-certificate flags:\n" +"\t\t --%v=certfile --%v=keyfile\n" +"\n" +"\t\t Bearer token flags:\n" +"\t\t\t --%v=bearer_token\n" +"\n" +"\t\t Basic auth flags:\n" +"\t\t\t --%v=basic_user --%v=basic_password\n" +"\n" +"\t\tBearer token and basic auth are mutually exclusive." +msgstr "" +"\n" +"\t\tSet a user entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values.\n" +"\n" +"\t\t Client-certificate flags:\n" +"\t\t --%v=certfile --%v=keyfile\n" +"\n" +"\t\t Bearer token flags:\n" +"\t\t\t --%v=bearer_token\n" +"\n" +"\t\t Basic auth flags:\n" +"\t\t\t --%v=basic_user --%v=basic_password\n" +"\n" +"\t\tBearer token and basic auth are mutually exclusive." + #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:70 msgid "" "\n" @@ -3173,75 +3260,10 @@ msgstr "" "version, otherwise the existing resource-version will be used.\n" " Note: currently selectors can only be set on Service objects." -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:47 +#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:39 msgid "" "\n" -"\t\tSets a cluster entry in kubeconfig.\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values for those fields." -msgstr "" -"\n" -"\t\tSets a cluster entry in kubeconfig.\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values for those fields." - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:44 -msgid "" -"\n" -"\t\tSets a context entry in kubeconfig\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values for those fields." -msgstr "" -"\n" -"\t\tSets a context entry in kubeconfig\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values for those fields." - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:70 -#, c-format -msgid "" -"\n" -"\t\tSets a user entry in kubeconfig\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values.\n" -"\n" -"\t\t Client-certificate flags:\n" -"\t\t --%v=certfile --%v=keyfile\n" -"\n" -"\t\t Bearer token flags:\n" -"\t\t\t --%v=bearer_token\n" -"\n" -"\t\t Basic auth flags:\n" -"\t\t\t --%v=basic_user --%v=basic_password\n" -"\n" -"\t\tBearer token and basic auth are mutually exclusive." -msgstr "" -"\n" -"\t\tSets a user entry in kubeconfig\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values.\n" -"\n" -"\t\t Client-certificate flags:\n" -"\t\t --%v=certfile --%v=keyfile\n" -"\n" -"\t\t Bearer token flags:\n" -"\t\t\t --%v=bearer_token\n" -"\n" -"\t\t Basic auth flags:\n" -"\t\t\t --%v=basic_user --%v=basic_password\n" -"\n" -"\t\tBearer token and basic auth are mutually exclusive." - -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:38 -msgid "" -"\n" -"\t\tShow details of a specific resource or group of resources\n" +"\t\tShow details of a specific resource or group of resources.\n" "\n" "\t\tPrint a detailed description of the selected resources, including " "related resources such\n" @@ -3257,7 +3279,7 @@ msgid "" "prefixed with NAME_PREFIX." msgstr "" "\n" -"\t\tShow details of a specific resource or group of resources\n" +"\t\tShow details of a specific resource or group of resources.\n" "\n" "\t\tPrint a detailed description of the selected resources, including " "related resources such\n" @@ -3272,7 +3294,7 @@ msgstr "" "\t\texists, it will output details for every resource that has a name " "prefixed with NAME_PREFIX." -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:46 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:47 msgid "" "\n" "\t\tShow the status of the rollout.\n" @@ -3306,23 +3328,23 @@ msgstr "" #, c-format msgid "" "\n" -"\t\tSpecify compute resource requirements (cpu, memory) for any resource " +"\t\tSpecify compute resource requirements (CPU, memory) for any resource " "that defines a pod template. If a pod is successfully scheduled, it is " "guaranteed the amount of resource requested, but may burst up to its " "specified limits.\n" "\n" -"\t\tfor each compute resource, if a limit is specified and a request is " +"\t\tFor each compute resource, if a limit is specified and a request is " "omitted, the request will default to the limit.\n" "\n" "\t\tPossible resources include (case insensitive): %s." msgstr "" "\n" -"\t\tSpecify compute resource requirements (cpu, memory) for any resource " +"\t\tSpecify compute resource requirements (CPU, memory) for any resource " "that defines a pod template. If a pod is successfully scheduled, it is " "guaranteed the amount of resource requested, but may burst up to its " "specified limits.\n" "\n" -"\t\tfor each compute resource, if a limit is specified and a request is " +"\t\tFor each compute resource, if a limit is specified and a request is " "omitted, the request will default to the limit.\n" "\n" "\t\tPossible resources include (case insensitive): %s." @@ -3383,24 +3405,24 @@ msgstr "" "\t\tPossible resources include (case insensitive):\n" "\t\t" -#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:77 +#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:78 msgid "" "\n" -"\t\tUpdate field(s) of a resource using strategic merge patch, a JSON merge " +"\t\tUpdate fields of a resource using strategic merge patch, a JSON merge " "patch, or a JSON patch.\n" "\n" "\t\tJSON and YAML formats are accepted." msgstr "" "\n" -"\t\tUpdate field(s) of a resource using strategic merge patch, a JSON merge " +"\t\tUpdate fields of a resource using strategic merge patch, a JSON merge " "patch, or a JSON patch.\n" "\n" "\t\tJSON and YAML formats are accepted." -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:83 msgid "" "\n" -"\t\tUpdate the annotations on one or more resources\n" +"\t\tUpdate the annotations on one or more resources.\n" "\n" "\t\tAll Kubernetes objects support the ability to store additional data with " "the object as\n" @@ -3417,7 +3439,7 @@ msgid "" "\t\tthe server the command will fail." msgstr "" "\n" -"\t\tUpdate the annotations on one or more resources\n" +"\t\tUpdate the annotations on one or more resources.\n" "\n" "\t\tAll Kubernetes objects support the ability to store additional data with " "the object as\n" @@ -3433,7 +3455,7 @@ msgstr "" "resource version on\n" "\t\tthe server the command will fail." -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:87 #, c-format msgid "" "\n" @@ -3443,7 +3465,7 @@ msgid "" "contain letters, numbers, hyphens, dots, and underscores, up to %[1]d " "characters each.\n" "\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single " -"'/', like example.com/my-app\n" +"'/', like example.com/my-app.\n" "\t\t* If --overwrite is true, then existing labels can be overwritten, " "otherwise attempting to overwrite a label will result in an error.\n" "\t\t* If --resource-version is specified, then updates will use this " @@ -3456,13 +3478,13 @@ msgstr "" "contain letters, numbers, hyphens, dots, and underscores, up to %[1]d " "characters each.\n" "\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single " -"'/', like example.com/my-app\n" +"'/', like example.com/my-app.\n" "\t\t* If --overwrite is true, then existing labels can be overwritten, " "otherwise attempting to overwrite a label will result in an error.\n" "\t\t* If --resource-version is specified, then updates will use this " "resource version, otherwise the existing resource-version will be used." -#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:69 +#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:70 #, c-format msgid "" "\n" @@ -3473,7 +3495,7 @@ msgid "" "\t\t* The key must begin with a letter or number, and may contain letters, " "numbers, hyphens, dots, and underscores, up to %[1]d characters.\n" "\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single " -"'/', like example.com/my-app\n" +"'/', like example.com/my-app.\n" "\t\t* The value is optional. If given, it must begin with a letter or " "number, and may contain letters, numbers, hyphens, dots, and underscores, up " "to %[2]d characters.\n" @@ -3488,14 +3510,14 @@ msgstr "" "\t\t* The key must begin with a letter or number, and may contain letters, " "numbers, hyphens, dots, and underscores, up to %[1]d characters.\n" "\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single " -"'/', like example.com/my-app\n" +"'/', like example.com/my-app.\n" "\t\t* The value is optional. If given, it must begin with a letter or " "number, and may contain letters, numbers, hyphens, dots, and underscores, up " "to %[2]d characters.\n" "\t\t* The effect must be NoSchedule, PreferNoSchedule or NoExecute.\n" "\t\t* Currently taint can only apply to node." -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:35 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:36 msgid "" "\n" "\t\tView previous rollout revisions and configurations." @@ -3509,27 +3531,27 @@ msgid "" "\t\tView the latest last-applied-configuration annotations by type/name or " "file.\n" "\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." +"\t\tThe default output will be printed to stdout in YAML format. You can use " +"the -o option\n" +"\t\tto change the output format." msgstr "" "\n" "\t\tView the latest last-applied-configuration annotations by type/name or " "file.\n" "\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." +"\t\tThe default output will be printed to stdout in YAML format. You can use " +"the -o option\n" +"\t\tto change the output format." #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:47 msgid "" "\n" -"\t # Create a new TLS secret named tls-secret with the given key pair:\n" +"\t # Create a new TLS secret named tls-secret with the given key pair\n" "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" "to/tls.key" msgstr "" "\n" -"\t # Create a new TLS secret named tls-secret with the given key pair:\n" +"\t # Create a new TLS secret named tls-secret with the given key pair\n" "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" "to/tls.key" @@ -3604,33 +3626,33 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_deployment.go:45 msgid "" "\n" -"\t# Create a deployment named my-dep that runs the busybox image.\n" +"\t# Create a deployment named my-dep that runs the busybox image\n" "\tkubectl create deployment my-dep --image=busybox\n" "\n" -"\t# Create a deployment with command\n" +"\t# Create a deployment with a command\n" "\tkubectl create deployment my-dep --image=busybox -- date\n" "\n" "\t# Create a deployment named my-dep that runs the nginx image with 3 " -"replicas.\n" +"replicas\n" "\tkubectl create deployment my-dep --image=nginx --replicas=3\n" "\n" "\t# Create a deployment named my-dep that runs the busybox image and expose " -"port 5701.\n" +"port 5701\n" "\tkubectl create deployment my-dep --image=busybox --port=5701" msgstr "" "\n" -"\t# Create a deployment named my-dep that runs the busybox image.\n" +"\t# Create a deployment named my-dep that runs the busybox image\n" "\tkubectl create deployment my-dep --image=busybox\n" "\n" -"\t# Create a deployment with command\n" +"\t# Create a deployment with a command\n" "\tkubectl create deployment my-dep --image=busybox -- date\n" "\n" "\t# Create a deployment named my-dep that runs the nginx image with 3 " -"replicas.\n" +"replicas\n" "\tkubectl create deployment my-dep --image=nginx --replicas=3\n" "\n" "\t# Create a deployment named my-dep that runs the busybox image and expose " -"port 5701.\n" +"port 5701\n" "\tkubectl create deployment my-dep --image=busybox --port=5701" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:351 @@ -3646,21 +3668,21 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:50 msgid "" "\n" -"\t# Set Deployment nginx-deployment's ServiceAccount to serviceaccount1\n" +"\t# Set deployment nginx-deployment's service account to serviceaccount1\n" "\tkubectl set serviceaccount deployment nginx-deployment serviceaccount1\n" "\n" -"\t# Print the result (in yaml format) of updated nginx deployment with " -"serviceaccount from local file, without hitting apiserver\n" +"\t# Print the result (in YAML format) of updated nginx deployment with the " +"service account from local file, without hitting the API server\n" "\tkubectl set sa -f nginx-deployment.yaml serviceaccount1 --local --dry-" "run=client -o yaml\n" "\t" msgstr "" "\n" -"\t# Set Deployment nginx-deployment's ServiceAccount to serviceaccount1\n" +"\t# Set deployment nginx-deployment's service account to serviceaccount1\n" "\tkubectl set serviceaccount deployment nginx-deployment serviceaccount1\n" "\n" -"\t# Print the result (in yaml format) of updated nginx deployment with " -"serviceaccount from local file, without hitting apiserver\n" +"\t# Print the result (in YAML format) of updated nginx deployment with the " +"service account from local file, without hitting the API server\n" "\tkubectl set sa -f nginx-deployment.yaml serviceaccount1 --local --dry-" "run=client -o yaml\n" "\t" @@ -3710,41 +3732,41 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:44 msgid "" "\n" -"\tSets an individual value in a kubeconfig file\n" +"\tSet an individual value in a kubeconfig file.\n" "\n" "\tPROPERTY_NAME is a dot delimited name where each token represents either " "an attribute name or a map key. Map keys may not contain dots.\n" "\n" -"\tPROPERTY_VALUE is the new value you wish to set. Binary fields such as " +"\tPROPERTY_VALUE is the new value you want to set. Binary fields such as " "'certificate-authority-data' expect a base64 encoded string unless the --set-" "raw-bytes flag is used.\n" "\n" -"\tSpecifying a attribute name that already exists will merge new fields on " +"\tSpecifying an attribute name that already exists will merge new fields on " "top of existing values." msgstr "" "\n" -"\tSets an individual value in a kubeconfig file\n" +"\tSet an individual value in a kubeconfig file.\n" "\n" "\tPROPERTY_NAME is a dot delimited name where each token represents either " "an attribute name or a map key. Map keys may not contain dots.\n" "\n" -"\tPROPERTY_VALUE is the new value you wish to set. Binary fields such as " +"\tPROPERTY_VALUE is the new value you want to set. Binary fields such as " "'certificate-authority-data' expect a base64 encoded string unless the --set-" "raw-bytes flag is used.\n" "\n" -"\tSpecifying a attribute name that already exists will merge new fields on " +"\tSpecifying an attribute name that already exists will merge new fields on " "top of existing values." #: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:39 msgid "" "\n" -"\tUnsets an individual value in a kubeconfig file\n" +"\tUnset an individual value in a kubeconfig file.\n" "\n" "\tPROPERTY_NAME is a dot delimited name where each token represents either " "an attribute name or a map key. Map keys may not contain dots." msgstr "" "\n" -"\tUnsets an individual value in a kubeconfig file\n" +"\tUnset an individual value in a kubeconfig file.\n" "\n" "\tPROPERTY_NAME is a dot delimited name where each token represents either " "an attribute name or a map key. Map keys may not contain dots." @@ -3752,14 +3774,14 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:43 msgid "" "\n" -"\tUpdate ServiceAccount of pod template resources.\n" +"\tUpdate the service account of pod template resources.\n" "\n" "\tPossible resources (case insensitive) can be:\n" "\n" "\t" msgstr "" "\n" -"\tUpdate ServiceAccount of pod template resources.\n" +"\tUpdate the service account of pod template resources.\n" "\n" "\tPossible resources (case insensitive) can be:\n" "\n" @@ -3768,10 +3790,12 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_subject.go:40 msgid "" "\n" -"\tUpdate User, Group or ServiceAccount in a RoleBinding/ClusterRoleBinding." +"\tUpdate the user, group, or service account in a role binding or cluster " +"role binding." msgstr "" "\n" -"\tUpdate User, Group or ServiceAccount in a RoleBinding/ClusterRoleBinding." +"\tUpdate the user, group, or service account in a role binding or cluster " +"role binding." #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:68 msgid "" @@ -3786,8 +3810,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/portforward/portforward.go:63 msgid "" "\n" -" Forward one or more local ports to a pod. This command " -"requires the node to have 'socat' installed.\n" +" Forward one or more local ports to a pod.\n" "\n" " Use resource type/name such as deployment/mydeployment to " "select a pod. Resource type defaults to 'pod' if omitted.\n" @@ -3795,12 +3818,11 @@ msgid "" " If there are multiple pods matching the criteria, a pod will " "be selected automatically. The\n" " forwarding session ends when the selected pod terminates, " -"and rerun of the command is needed\n" +"and a rerun of the command is needed\n" " to resume forwarding." msgstr "" "\n" -" Forward one or more local ports to a pod. This command " -"requires the node to have 'socat' installed.\n" +" Forward one or more local ports to a pod.\n" "\n" " Use resource type/name such as deployment/mydeployment to " "select a pod. Resource type defaults to 'pod' if omitted.\n" @@ -3808,7 +3830,7 @@ msgstr "" " If there are multiple pods matching the criteria, a pod will " "be selected automatically. The\n" " forwarding session ends when the selected pod terminates, " -"and rerun of the command is needed\n" +"and a rerun of the command is needed\n" " to resume forwarding." #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:233 @@ -3877,11 +3899,11 @@ msgstr "" " kubectl cluster-info dump --namespaces default,kube-system --output-" "directory=/path/to/cluster-state" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:94 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:95 msgid "" "\n" " # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend'.\n" +"frontend'\n" " # If the same annotation is set multiple times, only the last value will " "be applied\n" " kubectl annotate pods foo description='my frontend'\n" @@ -3890,25 +3912,25 @@ msgid "" " kubectl annotate -f pod.json description='my frontend'\n" "\n" " # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend running nginx', overwriting any existing value.\n" +"frontend running nginx', overwriting any existing value\n" " kubectl annotate --overwrite pods foo description='my frontend running " "nginx'\n" "\n" " # Update all pods in the namespace\n" " kubectl annotate pods --all description='my frontend running nginx'\n" "\n" -" # Update pod 'foo' only if the resource is unchanged from version 1.\n" +" # Update pod 'foo' only if the resource is unchanged from version 1\n" " kubectl annotate pods foo description='my frontend running nginx' --" "resource-version=1\n" "\n" " # Update pod 'foo' by removing an annotation named 'description' if it " -"exists.\n" -" # Does not require the --overwrite flag.\n" +"exists\n" +" # Does not require the --overwrite flag\n" " kubectl annotate pods foo description-" msgstr "" "\n" " # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend'.\n" +"frontend'\n" " # If the same annotation is set multiple times, only the last value will " "be applied\n" " kubectl annotate pods foo description='my frontend'\n" @@ -3917,20 +3939,20 @@ msgstr "" " kubectl annotate -f pod.json description='my frontend'\n" "\n" " # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend running nginx', overwriting any existing value.\n" +"frontend running nginx', overwriting any existing value\n" " kubectl annotate --overwrite pods foo description='my frontend running " "nginx'\n" "\n" " # Update all pods in the namespace\n" " kubectl annotate pods --all description='my frontend running nginx'\n" "\n" -" # Update pod 'foo' only if the resource is unchanged from version 1.\n" +" # Update pod 'foo' only if the resource is unchanged from version 1\n" " kubectl annotate pods foo description='my frontend running nginx' --" "resource-version=1\n" "\n" " # Update pod 'foo' by removing an annotation named 'description' if it " -"exists.\n" -" # Does not require the --overwrite flag.\n" +"exists\n" +" # Does not require the --overwrite flag\n" " kubectl annotate pods foo description-" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:230 @@ -3961,30 +3983,30 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:93 msgid "" "\n" -" Dumps cluster info out suitable for debugging and diagnosing cluster " -"problems. By default, dumps everything to\n" +" Dump cluster information out suitable for debugging and diagnosing " +"cluster problems. By default, dumps everything to\n" " stdout. You can optionally specify a directory with --output-directory. " -"If you specify a directory, kubernetes will\n" -" build a set of files in that directory. By default only dumps things in " -"the current namespace and 'kube-system' namespace, but you can\n" +"If you specify a directory, Kubernetes will\n" +" build a set of files in that directory. By default, only dumps things " +"in the current namespace and 'kube-system' namespace, but you can\n" " switch to a different namespace with the --namespaces flag, or specify --" "all-namespaces to dump all namespaces.\n" "\n" -" The command also dumps the logs of all of the pods in the cluster, these " +" The command also dumps the logs of all of the pods in the cluster; these " "logs are dumped into different directories\n" " based on namespace and pod name." msgstr "" "\n" -" Dumps cluster info out suitable for debugging and diagnosing cluster " -"problems. By default, dumps everything to\n" +" Dump cluster information out suitable for debugging and diagnosing " +"cluster problems. By default, dumps everything to\n" " stdout. You can optionally specify a directory with --output-directory. " -"If you specify a directory, kubernetes will\n" -" build a set of files in that directory. By default only dumps things in " -"the current namespace and 'kube-system' namespace, but you can\n" +"If you specify a directory, Kubernetes will\n" +" build a set of files in that directory. By default, only dumps things " +"in the current namespace and 'kube-system' namespace, but you can\n" " switch to a different namespace with the --namespaces flag, or specify --" "all-namespaces to dump all namespaces.\n" "\n" -" The command also dumps the logs of all of the pods in the cluster, these " +" The command also dumps the logs of all of the pods in the cluster; these " "logs are dumped into different directories\n" " based on namespace and pod name." @@ -3992,13 +4014,13 @@ msgstr "" msgid "" "\n" " Display addresses of the control plane and services with label kubernetes." -"io/cluster-service=true\n" +"io/cluster-service=true.\n" " To further debug and diagnose cluster problems, use 'kubectl cluster-info " "dump'." msgstr "" "\n" " Display addresses of the control plane and services with label kubernetes." -"io/cluster-service=true\n" +"io/cluster-service=true.\n" " To further debug and diagnose cluster problems, use 'kubectl cluster-info " "dump'." @@ -4099,10 +4121,9 @@ msgstr "" msgid "Annotations to apply to the pod." msgstr "Annotations to apply to the pod." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/apply.go#L98 #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173 -msgid "Apply a configuration to a resource by filename or stdin" -msgstr "Apply a configuration to a resource by filename or stdin" +msgid "Apply a configuration to a resource by file name or stdin" +msgstr "Apply a configuration to a resource by file name or stdin" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/certificates.go#L71 #: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:125 @@ -4118,22 +4139,22 @@ msgstr "" "Assign your own ClusterIP or set to 'None' for a 'headless' service (no " "loadbalancing)." -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:105 +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:106 msgid "" "Attach to a process that is already running inside an existing container." msgstr "" "Attach to a process that is already running inside an existing container." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/attach.go#L64 -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:104 +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:105 msgid "Attach to a running container" msgstr "Attach to a running container" #: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:107 msgid "" -"Auto-scale a Deployment, ReplicaSet, StatefulSet, or ReplicationController" +"Auto-scale a deployment, replica set, stateful set, or replication controller" msgstr "" -"Auto-scale a Deployment, ReplicaSet, StatefulSet, or ReplicationController" +"Auto-scale a deployment, replica set, stateful set, or replication controller" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L115 #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:161 @@ -4145,7 +4166,7 @@ msgstr "" "set to 'None' to create a headless service." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L55 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:100 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:101 msgid "ClusterRole this ClusterRoleBinding should reference" msgstr "ClusterRole this ClusterRoleBinding should reference" @@ -4171,82 +4192,97 @@ msgstr "Container name to use for debug container." msgid "Convert config files between different API versions" msgstr "Convert config files between different API versions" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/cp.go#L64 -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:104 #: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:105 +msgid "Copy files and directories to and from containers" +msgstr "Copy files and directories to and from containers" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/cp.go#L64 +#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:106 msgid "Copy files and directories to and from containers." msgstr "Copy files and directories to and from containers." #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:248 -msgid "Create a ClusterIP service." -msgstr "Create a ClusterIP service." +msgid "Create a ClusterIP service" +msgstr "Create a ClusterIP service" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:86 -msgid "Create a ClusterRoleBinding for a particular ClusterRole" -msgstr "Create a ClusterRoleBinding for a particular ClusterRole" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L181 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:323 -msgid "Create a LoadBalancer service." -msgstr "Create a LoadBalancer service." +msgid "Create a LoadBalancer service" +msgstr "Create a LoadBalancer service" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L124 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:286 -msgid "Create a NodePort service." -msgstr "Create a NodePort service." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89 -msgid "Create a RoleBinding for a particular Role or ClusterRole" -msgstr "Create a RoleBinding for a particular Role or ClusterRole" +msgid "Create a NodePort service" +msgstr "Create a NodePort service" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L214 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:94 msgid "Create a TLS secret" msgstr "Create a TLS secret" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_configmap.go#L59 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:81 +msgid "Create a cluster role" +msgstr "Create a cluster role" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:87 +msgid "Create a cluster role binding for a particular cluster role" +msgstr "Create a cluster role binding for a particular cluster role" + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:124 -msgid "Create a configmap from a local file, directory or literal value" -msgstr "Create a configmap from a local file, directory or literal value" +msgid "Create a config map from a local file, directory or literal value" +msgstr "Create a config map from a local file, directory or literal value" #: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:167 msgid "Create a copy of the target Pod with this name." msgstr "Create a copy of the target Pod with this name." +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_cronjob.go:90 +msgid "Create a cron job with the specified name" +msgstr "Create a cron job with the specified name" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_deployment.go:100 +msgid "Create a deployment with the specified name" +msgstr "Create a deployment with the specified name" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:91 +msgid "Create a job with the specified name" +msgstr "Create a job with the specified name" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_namespace.go#L44 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:83 msgid "Create a namespace with the specified name" msgstr "Create a namespace with the specified name" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:95 -msgid "Create a pod disruption budget with the specified name." -msgstr "Create a pod disruption budget with the specified name." +msgid "Create a pod disruption budget with the specified name" +msgstr "Create a pod disruption budget with the specified name" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:92 -msgid "Create a priorityclass with the specified name." -msgstr "Create a priorityclass with the specified name." +msgid "Create a priority class with the specified name" +msgstr "Create a priority class with the specified name" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:91 -msgid "Create a quota with the specified name." -msgstr "Create a quota with the specified name." +msgid "Create a quota with the specified name" +msgstr "Create a quota with the specified name" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:106 -msgid "Create a resource from a file or from stdin." -msgstr "Create a resource from a file or from stdin." +msgid "Create a resource from a file or from stdin" +msgstr "Create a resource from a file or from stdin" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89 +msgid "Create a role binding for a particular role or cluster role" +msgstr "Create a role binding for a particular role or cluster role" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:161 +msgid "Create a role with single rule" +msgstr "Create a role with single rule" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L143 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:134 msgid "Create a secret for use with a Docker registry" msgstr "Create a secret for use with a Docker registry" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L73 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:137 -msgid "Create a secret from a local file, directory or literal value" -msgstr "Create a secret from a local file, directory or literal value" +msgid "Create a secret from a local file, directory, or literal value" +msgstr "Create a secret from a local file, directory, or literal value" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L34 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:49 @@ -4262,16 +4298,21 @@ msgstr "Create a secret using specified subcommand." msgid "Create a service account with the specified name" msgstr "Create a service account with the specified name" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L36 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:48 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:49 -msgid "Create a service using specified subcommand." -msgstr "Create a service using specified subcommand." +msgid "Create a service using a specified subcommand" +msgstr "Create a service using a specified subcommand" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:49 +msgid "Create a service using a specified subcommand." +msgstr "Create a service using a specified subcommand." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L240 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:363 -msgid "Create an ExternalName service." -msgstr "Create an ExternalName service." +msgid "Create an ExternalName service" +msgstr "Create an ExternalName service" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_ingress.go:145 +msgid "Create an ingress with the specified name" +msgstr "Create an ingress with the specified name" #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:60 msgid "Create and run a particular image in a pod." @@ -4281,34 +4322,42 @@ msgstr "Create and run a particular image in a pod." msgid "Create debugging sessions for troubleshooting workloads and nodes" msgstr "Create debugging sessions for troubleshooting workloads and nodes" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/delete.go#L130 -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:135 +#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:137 msgid "" -"Delete resources by filenames, stdin, resources and names, or by resources " +"Delete resources by file names, stdin, resources and names, or by resources " "and label selector" msgstr "" -"Delete resources by filenames, stdin, resources and names, or by resources " +"Delete resources by file names, stdin, resources and names, or by resources " "and label selector" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_cluster.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42 msgid "Delete the specified cluster from the kubeconfig" msgstr "Delete the specified cluster from the kubeconfig" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:43 +msgid "Delete the specified cluster from the kubeconfig." +msgstr "Delete the specified cluster from the kubeconfig." + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_context.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42 msgid "Delete the specified context from the kubeconfig" msgstr "Delete the specified context from the kubeconfig" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:43 +msgid "Delete the specified context from the kubeconfig." +msgstr "Delete the specified context from the kubeconfig." + #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_user.go:64 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_user.go:65 msgid "Delete the specified user from the kubeconfig" msgstr "Delete the specified user from the kubeconfig" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_user.go:65 +msgid "Delete the specified user from the kubeconfig." +msgstr "Delete the specified user from the kubeconfig." + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/certificates.go#L121 -#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:170 +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:174 msgid "Deny a certificate signing request" msgstr "Deny a certificate signing request" @@ -4318,28 +4367,12 @@ msgid "Describe one or many contexts" msgstr "Describe one or many contexts" #: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:142 -msgid "Diff live version against would-be applied version" -msgstr "Diff live version against would-be applied version" +msgid "Diff the live version against a would-be applied version" +msgstr "Diff the live version against a would-be applied version" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_node.go#L77 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:80 -msgid "Display Resource (CPU/Memory) usage of nodes" -msgstr "Display Resource (CPU/Memory) usage of nodes" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_pod.go#L79 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:96 -msgid "Display Resource (CPU/Memory) usage of pods" -msgstr "Display Resource (CPU/Memory) usage of pods" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50 -msgid "Display Resource (CPU/Memory) usage." -msgstr "Display Resource (CPU/Memory) usage." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo.go#L49 #: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo.go:65 -msgid "Display cluster info" -msgstr "Display cluster info" +msgid "Display cluster information" +msgstr "Display cluster information" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/get_clusters.go#L40 #: staging/src/k8s.io/kubectl/pkg/cmd/config/get_clusters.go:41 @@ -4355,11 +4388,31 @@ msgstr "Display clusters defined in the kubeconfig." msgid "Display merged kubeconfig settings or a specified kubeconfig file" msgstr "Display merged kubeconfig settings or a specified kubeconfig file" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_contexts.go:50 +msgid "Display one or many contexts from the kubeconfig file." +msgstr "Display one or many contexts from the kubeconfig file." + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/get.go#L107 -#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:161 +#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:165 msgid "Display one or many resources" msgstr "Display one or many resources" +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50 +msgid "Display resource (CPU/memory) usage" +msgstr "Display resource (CPU/memory) usage" + +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:81 +msgid "Display resource (CPU/memory) usage of nodes" +msgstr "Display resource (CPU/memory) usage of nodes" + +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:100 +msgid "Display resource (CPU/memory) usage of pods" +msgstr "Display resource (CPU/memory) usage of pods" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 +msgid "Display the current-context" +msgstr "Display the current-context" + #: staging/src/k8s.io/kubectl/pkg/cmd/config/get_users.go:60 msgid "Display users defined in the kubeconfig" msgstr "Display users defined in the kubeconfig" @@ -4368,36 +4421,21 @@ msgstr "Display users defined in the kubeconfig" msgid "Display users defined in the kubeconfig." msgstr "Display users defined in the kubeconfig." -#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_contexts.go:50 -msgid "Displays one or many contexts from the kubeconfig file." -msgstr "Displays one or many contexts from the kubeconfig file." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/current_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 -msgid "Displays the current-context" -msgstr "Displays the current-context" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/explain.go#L50 -#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79 -msgid "Documentation of resources" -msgstr "Documentation of resources" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L176 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:181 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:184 msgid "Drain node in preparation for maintenance" msgstr "Drain node in preparation for maintenance" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo_dump.go#L37 #: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:74 -msgid "Dump lots of relevant info for debugging and diagnosis" -msgstr "Dump lots of relevant info for debugging and diagnosis" +msgid "Dump relevant information for debugging and diagnosis" +msgstr "Dump relevant information for debugging and diagnosis" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/edit.go#L100 -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:76 +#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:77 msgid "Edit a resource on the server" msgstr "Edit a resource on the server" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_edit_last_applied.go:66 +#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_edit_last_applied.go:67 msgid "Edit latest last-applied-configuration annotations of a resource/object" msgstr "" "Edit latest last-applied-configuration annotations of a resource/object" @@ -4412,17 +4450,17 @@ msgid "Environment variables to set in the container." msgstr "Environment variables to set in the container." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/exec.go#L68 -#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:88 +#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:89 msgid "Execute a command in a container" msgstr "Execute a command in a container" -#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:89 +#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:90 msgid "Execute a command in a container." msgstr "Execute a command in a container." #: staging/src/k8s.io/kubectl/pkg/cmd/wait/wait.go:115 -msgid "Experimental: Wait for a specific condition on one or many resources." -msgstr "Experimental: Wait for a specific condition on one or many resources." +msgid "Experimental: Wait for a specific condition on one or many resources" +msgstr "Experimental: Wait for a specific condition on one or many resources" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:378 msgid "External name of service" @@ -4433,6 +4471,10 @@ msgstr "External name of service" msgid "Forward one or more local ports to a pod" msgstr "Forward one or more local ports to a pod" +#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79 +msgid "Get documentation for a resource" +msgstr "Get documentation for a resource" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/help.go#L36 #: staging/src/k8s.io/kubectl/pkg/cmd/help/help.go:37 msgid "Help about any command" @@ -4456,7 +4498,7 @@ msgstr "" "values: 'None', 'ClientIP'" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/annotate.go#L135 -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:155 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:157 msgid "" "If non-empty, the annotation update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -4467,7 +4509,7 @@ msgstr "" "resource." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/label.go#L132 -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:152 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:154 msgid "" "If non-empty, the labels update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -4509,22 +4551,26 @@ msgid "" msgstr "" "Keep stdin open on the container(s) in the pod, even if nothing is attached." +#: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:90 +msgid "List all visible plugin executables on a user's PATH" +msgstr "List all visible plugin executables on a user's PATH" + #: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout.go:54 msgid "Manage the rollout of a resource" msgstr "Manage the rollout of a resource" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L127 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:96 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:98 msgid "Mark node as schedulable" msgstr "Mark node as schedulable" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:68 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:69 msgid "Mark node as unschedulable" msgstr "Mark node as unschedulable" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_pause.go#L73 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:83 msgid "Mark the provided resource as paused" msgstr "Mark the provided resource as paused" @@ -4553,7 +4599,7 @@ msgid "No alpha commands are available in this version of kubectl" msgstr "No alpha commands are available in this version of kubectl" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/logs.go#L108 -#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:173 +#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:174 msgid "" "Only return logs after a specific date (RFC3339). Defaults to all logs. Only " "one of since-time / since may be used." @@ -4562,7 +4608,7 @@ msgstr "" "one of since-time / since may be used." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/completion.go#L97 -#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:113 +#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:112 msgid "Output shell completion code for the specified shell (bash or zsh)" msgstr "Output shell completion code for the specified shell (bash or zsh)" @@ -4590,7 +4636,7 @@ msgid "Path to private key associated with given certificate." msgstr "Path to private key associated with given certificate." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/scale.go#L82 -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:129 +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:130 msgid "" "Precondition for resource version. Requires that the current resource " "version match this value in order to scale." @@ -4604,9 +4650,10 @@ msgid "Print the client and server version information" msgstr "Print the client and server version information" #: staging/src/k8s.io/kubectl/pkg/cmd/version/version.go:74 -msgid "Print the client and server version information for the current context" +msgid "" +"Print the client and server version information for the current context." msgstr "" -"Print the client and server version information for the current context" +"Print the client and server version information for the current context." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/options.go#L37 #: staging/src/k8s.io/kubectl/pkg/cmd/options/options.go:38 @@ -4619,13 +4666,15 @@ msgstr "Print the list of flags inherited by all commands" msgid "Print the logs for a container in a pod" msgstr "Print the logs for a container in a pod" -#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:94 -#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:95 +#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:97 msgid "Print the supported API resources on the server" msgstr "Print the supported API resources on the server" +#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:98 +msgid "Print the supported API resources on the server." +msgstr "Print the supported API resources on the server." + #: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:58 -#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:59 msgid "" "Print the supported API versions on the server, in the form of \"group/" "version\"" @@ -4633,25 +4682,32 @@ msgstr "" "Print the supported API versions on the server, in the form of \"group/" "version\"" +#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:59 +msgid "" +"Print the supported API versions on the server, in the form of \"group/" +"version\"." +msgstr "" +"Print the supported API versions on the server, in the form of \"group/" +"version\"." + #: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:62 -msgid "Provides utilities for interacting with plugins." -msgstr "Provides utilities for interacting with plugins." +msgid "Provides utilities for interacting with plugins" +msgstr "Provides utilities for interacting with plugins" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/rename_context.go:44 -msgid "Renames a context from the kubeconfig file." -msgstr "Renames a context from the kubeconfig file." +#: staging/src/k8s.io/kubectl/pkg/cmd/config/rename_context.go:45 +msgid "Rename a context from the kubeconfig file" +msgstr "Rename a context from the kubeconfig file" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/replace.go#L70 #: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:115 -msgid "Replace a resource by filename or stdin" -msgstr "Replace a resource by filename or stdin" +msgid "Replace a resource by file name or stdin" +msgstr "Replace a resource by file name or stdin" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_restart.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_restart.go:87 msgid "Restart a resource" msgstr "Restart a resource" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_resume.go#L71 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:87 msgid "Resume a paused resource" msgstr "Resume a paused resource" @@ -4675,60 +4731,56 @@ msgstr "Run a proxy to the Kubernetes API server" msgid "Server location for Docker registry" msgstr "Server location for Docker registry" -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:113 -msgid "Set a new size for a Deployment, ReplicaSet or Replication Controller" -msgstr "Set a new size for a Deployment, ReplicaSet or Replication Controller" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 +msgid "Set a cluster entry in kubeconfig" +msgstr "Set a cluster entry in kubeconfig" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 +msgid "Set a context entry in kubeconfig" +msgstr "Set a context entry in kubeconfig" + +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:114 +msgid "Set a new size for a deployment, replica set, or replication controller" +msgstr "" +"Set a new size for a deployment, replica set, or replication controller" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 +msgid "Set a user entry in kubeconfig" +msgstr "Set a user entry in kubeconfig" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 +msgid "Set an individual value in a kubeconfig file" +msgstr "Set an individual value in a kubeconfig file" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set.go#L37 #: staging/src/k8s.io/kubectl/pkg/cmd/set/set.go:39 msgid "Set specific features on objects" msgstr "Set specific features on objects" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:52 +msgid "Set the current-context in a kubeconfig file" +msgstr "Set the current-context in a kubeconfig file" + #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:101 msgid "" "Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." +"contents of a file" msgstr "" "Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." +"contents of a file" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_selector.go#L81 #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_selector.go:104 msgid "Set the selector on a resource" msgstr "Set the selector on a resource" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_cluster.go#L67 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 -msgid "Sets a cluster entry in kubeconfig" -msgstr "Sets a cluster entry in kubeconfig" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_context.go#L57 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 -msgid "Sets a context entry in kubeconfig" -msgstr "Sets a context entry in kubeconfig" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_authinfo.go#L103 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 -msgid "Sets a user entry in kubeconfig" -msgstr "Sets a user entry in kubeconfig" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/set.go#L59 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 -msgid "Sets an individual value in a kubeconfig file" -msgstr "Sets an individual value in a kubeconfig file" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/use_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:51 -msgid "Sets the current-context in a kubeconfig file" -msgstr "Sets the current-context in a kubeconfig file" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/describe.go#L80 -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:106 +#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:107 msgid "Show details of a specific resource or group of resources" msgstr "Show details of a specific resource or group of resources" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_status.go#L57 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:101 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:102 msgid "Show the status of the rollout" msgstr "Show the status of the rollout" @@ -4737,14 +4789,13 @@ msgstr "Show the status of the rollout" msgid "Synonym for --target-port" msgstr "Synonym for --target-port" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L87 #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:134 msgid "" "Take a replication controller, service, deployment or pod and expose it as a " -"new Kubernetes Service" +"new Kubernetes service" msgstr "" "Take a replication controller, service, deployment or pod and expose it as a " -"new Kubernetes Service" +"new Kubernetes service" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L114 #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:174 @@ -4876,72 +4927,73 @@ msgstr "" "Default is 'ClusterIP'." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_undo.go#L71 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:87 msgid "Undo a previous rollout" msgstr "Undo a previous rollout" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/unset.go#L47 #: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:59 -msgid "Unsets an individual value in a kubeconfig file" -msgstr "Unsets an individual value in a kubeconfig file" - -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:102 -msgid "Update ServiceAccount of a resource" -msgstr "Update ServiceAccount of a resource" - -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_subject.go:99 -msgid "" -"Update User, Group or ServiceAccount in a RoleBinding/ClusterRoleBinding" -msgstr "" -"Update User, Group or ServiceAccount in a RoleBinding/ClusterRoleBinding" +msgid "Unset an individual value in a kubeconfig file" +msgstr "Unset an individual value in a kubeconfig file" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_env.go:154 msgid "Update environment variables on a pod template" msgstr "Update environment variables on a pod template" -#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:114 -msgid "Update field(s) of a resource" -msgstr "Update field(s) of a resource" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_image.go#L94 -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110 -msgid "Update image of a pod template" -msgstr "Update image of a pod template" +#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:115 +msgid "Update fields of a resource" +msgstr "Update fields of a resource" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_resources.go#L101 #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_resources.go:116 msgid "Update resource requests/limits on objects with pod templates" msgstr "Update resource requests/limits on objects with pod templates" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:134 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:135 msgid "Update the annotations on a resource" msgstr "Update the annotations on a resource" +#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110 +msgid "Update the image of a pod template" +msgstr "Update the image of a pod template" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/label.go#L109 -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:132 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:133 msgid "Update the labels on a resource" msgstr "Update the labels on a resource" +#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:102 +msgid "Update the service account of a resource" +msgstr "Update the service account of a resource" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/taint.go#L88 -#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:108 +#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:109 msgid "Update the taints on one or more nodes" msgstr "Update the taints on one or more nodes" +#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_subject.go:99 +msgid "" +"Update the user, group, or service account in a role binding or cluster role " +"binding" +msgstr "" +"Update the user, group, or service account in a role binding or cluster role " +"binding" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L155 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:150 msgid "Username for Docker registry authentication" msgstr "Username for Docker registry authentication" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77 -msgid "View latest last-applied-configuration annotations of a resource/object" -msgstr "" -"View latest last-applied-configuration annotations of a resource/object" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_history.go#L51 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:83 msgid "View rollout history" msgstr "View rollout history" +#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77 +msgid "" +"View the latest last-applied-configuration annotations of a resource/object" +msgstr "" +"View the latest last-applied-configuration annotations of a resource/object" + #: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:171 msgid "" "When used with '--copy-to', a list of name=image pairs for changing " @@ -5002,14 +5054,10 @@ msgstr "" "the default priority." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/cmd.go#L217 -#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:478 +#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:227 msgid "kubectl controls the Kubernetes cluster manager" msgstr "kubectl controls the Kubernetes cluster manager" -#: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:90 -msgid "list all visible plugin executables on a user's PATH" -msgstr "list all visible plugin executables on a user's PATH" - #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:45 msgid "" "pod (po), service (svc), replicationcontroller (rc), deployment (deploy), " diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/en_US/LC_MESSAGES/k8s.mo b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/en_US/LC_MESSAGES/k8s.mo index fa8f2984e66..9c0c708fcd3 100644 Binary files a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/en_US/LC_MESSAGES/k8s.mo and b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/en_US/LC_MESSAGES/k8s.mo differ diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/en_US/LC_MESSAGES/k8s.po b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/en_US/LC_MESSAGES/k8s.po index 3965417ce4b..90ea088d676 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/en_US/LC_MESSAGES/k8s.po +++ b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/en_US/LC_MESSAGES/k8s.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gettext-go-examples-hello\n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2021-05-17 15:40+0200\n" +"POT-Creation-Date: 2021-07-07 20:15+0200\n" "PO-Revision-Date: 2017-03-14 21:33-0800\n" "Last-Translator: Brendan Burns \n" "Language-Team: \n" @@ -19,6 +19,30 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:138 +msgid "" +"\n" +"\t\t\t# Approve CSR 'csr-sqgzp'\n" +"\t\t\tkubectl certificate approve csr-sqgzp\n" +"\t\t" +msgstr "" +"\n" +"\t\t\t# Approve CSR 'csr-sqgzp'\n" +"\t\t\tkubectl certificate approve csr-sqgzp\n" +"\t\t" + +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:182 +msgid "" +"\n" +"\t\t\t# Deny CSR 'csr-sqgzp'\n" +"\t\t\tkubectl certificate deny csr-sqgzp\n" +"\t\t" +msgstr "" +"\n" +"\t\t\t# Deny CSR 'csr-sqgzp'\n" +"\t\t\tkubectl certificate deny csr-sqgzp\n" +"\t\t" + #: staging/src/k8s.io/kubectl/pkg/cmd/config/config.go:43 msgid "" "\n" @@ -37,78 +61,78 @@ msgstr "" "\n" "\t\t\t1. If the --" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:43 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:44 msgid "" "\n" -"\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using the " -"cluster-admin ClusterRole\n" +"\t\t # Create a cluster role binding for user1, user2, and group1 using the " +"cluster-admin cluster role\n" "\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" "admin --user=user1 --user=user2 --group=group1" msgstr "" "\n" -"\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using the " -"cluster-admin ClusterRole\n" +"\t\t # Create a cluster role binding for user1, user2, and group1 using the " +"cluster-admin cluster role\n" "\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" "admin --user=user1 --user=user2 --group=group1" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:58 msgid "" "\n" -"\t\t # Create a new configmap named my-config based on folder bar\n" +"\t\t # Create a new config map named my-config based on folder bar\n" "\t\t kubectl create configmap my-config --from-file=path/to/bar\n" "\n" -"\t\t # Create a new configmap named my-config with specified keys instead " +"\t\t # Create a new config map named my-config with specified keys instead " "of file basenames on disk\n" "\t\t kubectl create configmap my-config --from-file=key1=/path/to/bar/file1." "txt --from-file=key2=/path/to/bar/file2.txt\n" "\n" -"\t\t # Create a new configmap named my-config with key1=config1 and " +"\t\t # Create a new config map named my-config with key1=config1 and " "key2=config2\n" "\t\t kubectl create configmap my-config --from-literal=key1=config1 --from-" "literal=key2=config2\n" "\n" -"\t\t # Create a new configmap named my-config from the key=value pairs in " +"\t\t # Create a new config map named my-config from the key=value pairs in " "the file\n" "\t\t kubectl create configmap my-config --from-file=path/to/bar\n" "\n" -"\t\t # Create a new configmap named my-config from an env file\n" +"\t\t # Create a new config map named my-config from an env file\n" "\t\t kubectl create configmap my-config --from-env-file=path/to/bar.env" msgstr "" "\n" -"\t\t # Create a new configmap named my-config based on folder bar\n" +"\t\t # Create a new config map named my-config based on folder bar\n" "\t\t kubectl create configmap my-config --from-file=path/to/bar\n" "\n" -"\t\t # Create a new configmap named my-config with specified keys instead " +"\t\t # Create a new config map named my-config with specified keys instead " "of file basenames on disk\n" "\t\t kubectl create configmap my-config --from-file=key1=/path/to/bar/file1." "txt --from-file=key2=/path/to/bar/file2.txt\n" "\n" -"\t\t # Create a new configmap named my-config with key1=config1 and " +"\t\t # Create a new config map named my-config with key1=config1 and " "key2=config2\n" "\t\t kubectl create configmap my-config --from-literal=key1=config1 --from-" "literal=key2=config2\n" "\n" -"\t\t # Create a new configmap named my-config from the key=value pairs in " +"\t\t # Create a new config map named my-config from the key=value pairs in " "the file\n" "\t\t kubectl create configmap my-config --from-file=path/to/bar\n" "\n" -"\t\t # Create a new configmap named my-config from an env file\n" +"\t\t # Create a new config map named my-config from an env file\n" "\t\t kubectl create configmap my-config --from-env-file=path/to/bar.env" +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43 +msgid "" +"\n" +"\t\t # Create a role binding for user1, user2, and group1 using the admin " +"cluster role\n" +"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +"user=user2 --group=group1" +msgstr "" +"\n" +"\t\t # Create a role binding for user1, user2, and group1 using the admin " +"cluster role\n" +"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +"user=user2 --group=group1" + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:56 msgid "" "\n" @@ -117,7 +141,7 @@ msgid "" "\t\t kubectl create secret docker-registry my-secret --docker-" "server=DOCKER_REGISTRY_SERVER --docker-username=DOCKER_USER --docker-" "password=DOCKER_PASSWORD --docker-email=DOCKER_EMAIL\n" -"\t\t \n" +"\n" "\t\t # Create a new secret named my-secret from ~/.docker/config.json\n" "\t\t kubectl create secret docker-registry my-secret --from-file=." "dockerconfigjson=path/to/.docker/config.json" @@ -128,7 +152,7 @@ msgstr "" "\t\t kubectl create secret docker-registry my-secret --docker-" "server=DOCKER_REGISTRY_SERVER --docker-username=DOCKER_USER --docker-" "password=DOCKER_PASSWORD --docker-email=DOCKER_EMAIL\n" -"\t\t \n" +"\n" "\t\t # Create a new secret named my-secret from ~/.docker/config.json\n" "\t\t kubectl create secret docker-registry my-secret --from-file=." "dockerconfigjson=path/to/.docker/config.json" @@ -149,7 +173,7 @@ msgstr "" "\t\t # Show metrics for a given node\n" "\t\t kubectl top node NODE_NAME" -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:44 +#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:45 msgid "" "\n" "\t\t# !!!Important Note!!!\n" @@ -157,7 +181,7 @@ msgid "" "\t\t# image. If 'tar' is not present, 'kubectl cp' will fail.\n" "\t\t#\n" "\t\t# For advanced use cases, such as symlinks, wildcard expansion or\n" -"\t\t# file mode preservation consider using 'kubectl exec'.\n" +"\t\t# file mode preservation, consider using 'kubectl exec'.\n" "\n" "\t\t# Copy /tmp/foo local file to /tmp/bar in a remote pod in namespace " "\n" @@ -189,7 +213,7 @@ msgstr "" "\t\t# image. If 'tar' is not present, 'kubectl cp' will fail.\n" "\t\t#\n" "\t\t# For advanced use cases, such as symlinks, wildcard expansion or\n" -"\t\t# file mode preservation consider using 'kubectl exec'.\n" +"\t\t# file mode preservation, consider using 'kubectl exec'.\n" "\n" "\t\t# Copy /tmp/foo local file to /tmp/bar in a remote pod in namespace " "\n" @@ -218,46 +242,46 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:119 msgid "" "\n" -"\t\t# Apply the configuration in pod.json to a pod.\n" +"\t\t# Apply the configuration in pod.json to a pod\n" "\t\tkubectl apply -f ./pod.json\n" "\n" "\t\t# Apply resources from a directory containing kustomization.yaml - e.g. " -"dir/kustomization.yaml.\n" +"dir/kustomization.yaml\n" "\t\tkubectl apply -k dir/\n" "\n" -"\t\t# Apply the JSON passed into stdin to a pod.\n" +"\t\t# Apply the JSON passed into stdin to a pod\n" "\t\tcat pod.json | kubectl apply -f -\n" "\n" "\t\t# Note: --prune is still in Alpha\n" "\t\t# Apply the configuration in manifest.yaml that matches label app=nginx " -"and delete all the other resources that are not in the file and match label " -"app=nginx.\n" +"and delete all other resources that are not in the file and match label " +"app=nginx\n" "\t\tkubectl apply --prune -f manifest.yaml -l app=nginx\n" "\n" "\t\t# Apply the configuration in manifest.yaml and delete all the other " -"configmaps that are not in the file.\n" +"config maps that are not in the file\n" "\t\tkubectl apply --prune -f manifest.yaml --all --prune-whitelist=core/v1/" "ConfigMap" msgstr "" "\n" -"\t\t# Apply the configuration in pod.json to a pod.\n" +"\t\t# Apply the configuration in pod.json to a pod\n" "\t\tkubectl apply -f ./pod.json\n" "\n" "\t\t# Apply resources from a directory containing kustomization.yaml - e.g. " -"dir/kustomization.yaml.\n" +"dir/kustomization.yaml\n" "\t\tkubectl apply -k dir/\n" "\n" -"\t\t# Apply the JSON passed into stdin to a pod.\n" +"\t\t# Apply the JSON passed into stdin to a pod\n" "\t\tcat pod.json | kubectl apply -f -\n" "\n" "\t\t# Note: --prune is still in Alpha\n" "\t\t# Apply the configuration in manifest.yaml that matches label app=nginx " -"and delete all the other resources that are not in the file and match label " -"app=nginx.\n" +"and delete all other resources that are not in the file and match label " +"app=nginx\n" "\t\tkubectl apply --prune -f manifest.yaml -l app=nginx\n" "\n" "\t\t# Apply the configuration in manifest.yaml and delete all the other " -"configmaps that are not in the file.\n" +"config maps that are not in the file\n" "\t\tkubectl apply --prune -f manifest.yaml --all --prune-whitelist=core/v1/" "ConfigMap" @@ -267,21 +291,21 @@ msgid "" "\n" "\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 and " "10, no target CPU utilization specified so a default autoscaling policy will " -"be used:\n" +"be used\n" "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" "\n" "\t\t# Auto scale a replication controller \"foo\", with the number of pods " -"between 1 and 5, target CPU utilization at 80%:\n" +"between 1 and 5, target CPU utilization at 80%\n" "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" msgstr "" "\n" "\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 and " "10, no target CPU utilization specified so a default autoscaling policy will " -"be used:\n" +"be used\n" "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" "\n" "\t\t# Auto scale a replication controller \"foo\", with the number of pods " -"between 1 and 5, target CPU utilization at 80%:\n" +"between 1 and 5, target CPU utilization at 80%\n" "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" #: pkg/kubectl/cmd/convert/convert.go:51 @@ -315,133 +339,101 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:41 msgid "" "\n" -"\t\t# Create a ClusterRole named \"pod-reader\" that allows user to perform " +"\t\t# Create a cluster role named \"pod-reader\" that allows user to perform " "\"get\", \"watch\" and \"list\" on pods\n" "\t\tkubectl create clusterrole pod-reader --verb=get,list,watch --" "resource=pods\n" "\n" -"\t\t# Create a ClusterRole named \"pod-reader\" with ResourceName specified\n" +"\t\t# Create a cluster role named \"pod-reader\" with ResourceName " +"specified\n" "\t\tkubectl create clusterrole pod-reader --verb=get --resource=pods --" "resource-name=readablepod --resource-name=anotherpod\n" "\n" -"\t\t# Create a ClusterRole named \"foo\" with API Group specified\n" +"\t\t# Create a cluster role named \"foo\" with API Group specified\n" "\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=rs." "extensions\n" "\n" -"\t\t# Create a ClusterRole named \"foo\" with SubResource specified\n" +"\t\t# Create a cluster role named \"foo\" with SubResource specified\n" "\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=pods," "pods/status\n" "\n" -"\t\t# Create a ClusterRole name \"foo\" with NonResourceURL specified\n" +"\t\t# Create a cluster role name \"foo\" with NonResourceURL specified\n" "\t\tkubectl create clusterrole \"foo\" --verb=get --non-resource-url=/logs/" "*\n" "\n" -"\t\t# Create a ClusterRole name \"monitoring\" with AggregationRule " +"\t\t# Create a cluster role name \"monitoring\" with AggregationRule " "specified\n" "\t\tkubectl create clusterrole monitoring --aggregation-rule=\"rbac.example." "com/aggregate-to-monitoring=true\"" msgstr "" "\n" -"\t\t# Create a ClusterRole named \"pod-reader\" that allows user to perform " +"\t\t# Create a cluster role named \"pod-reader\" that allows user to perform " "\"get\", \"watch\" and \"list\" on pods\n" "\t\tkubectl create clusterrole pod-reader --verb=get,list,watch --" "resource=pods\n" "\n" -"\t\t# Create a ClusterRole named \"pod-reader\" with ResourceName specified\n" +"\t\t# Create a cluster role named \"pod-reader\" with ResourceName " +"specified\n" "\t\tkubectl create clusterrole pod-reader --verb=get --resource=pods --" "resource-name=readablepod --resource-name=anotherpod\n" "\n" -"\t\t# Create a ClusterRole named \"foo\" with API Group specified\n" +"\t\t# Create a cluster role named \"foo\" with API Group specified\n" "\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=rs." "extensions\n" "\n" -"\t\t# Create a ClusterRole named \"foo\" with SubResource specified\n" +"\t\t# Create a cluster role named \"foo\" with SubResource specified\n" "\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=pods," "pods/status\n" "\n" -"\t\t# Create a ClusterRole name \"foo\" with NonResourceURL specified\n" +"\t\t# Create a cluster role name \"foo\" with NonResourceURL specified\n" "\t\tkubectl create clusterrole \"foo\" --verb=get --non-resource-url=/logs/" "*\n" "\n" -"\t\t# Create a ClusterRole name \"monitoring\" with AggregationRule " +"\t\t# Create a cluster role name \"monitoring\" with AggregationRule " "specified\n" "\t\tkubectl create clusterrole monitoring --aggregation-rule=\"rbac.example." "com/aggregate-to-monitoring=true\"" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:46 -msgid "" -"\n" -"\t\t# Create a Role named \"pod-reader\" that allows user to perform \"get" -"\", \"watch\" and \"list\" on pods\n" -"\t\tkubectl create role pod-reader --verb=get --verb=list --verb=watch --" -"resource=pods\n" -"\n" -"\t\t# Create a Role named \"pod-reader\" with ResourceName specified\n" -"\t\tkubectl create role pod-reader --verb=get --resource=pods --resource-" -"name=readablepod --resource-name=anotherpod\n" -"\n" -"\t\t# Create a Role named \"foo\" with API Group specified\n" -"\t\tkubectl create role foo --verb=get,list,watch --resource=rs.extensions\n" -"\n" -"\t\t# Create a Role named \"foo\" with SubResource specified\n" -"\t\tkubectl create role foo --verb=get,list,watch --resource=pods,pods/status" -msgstr "" -"\n" -"\t\t# Create a Role named \"pod-reader\" that allows user to perform \"get" -"\", \"watch\" and \"list\" on pods\n" -"\t\tkubectl create role pod-reader --verb=get --verb=list --verb=watch --" -"resource=pods\n" -"\n" -"\t\t# Create a Role named \"pod-reader\" with ResourceName specified\n" -"\t\tkubectl create role pod-reader --verb=get --resource=pods --resource-" -"name=readablepod --resource-name=anotherpod\n" -"\n" -"\t\t# Create a Role named \"foo\" with API Group specified\n" -"\t\tkubectl create role foo --verb=get,list,watch --resource=rs.extensions\n" -"\n" -"\t\t# Create a Role named \"foo\" with SubResource specified\n" -"\t\tkubectl create role foo --verb=get,list,watch --resource=pods,pods/status" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:44 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:43 msgid "" "\n" "\t\t# Create a job\n" "\t\tkubectl create job my-job --image=busybox\n" "\n" -"\t\t# Create a job with command\n" +"\t\t# Create a job with a command\n" "\t\tkubectl create job my-job --image=busybox -- date\n" "\n" -"\t\t# Create a job from a CronJob named \"a-cronjob\"\n" +"\t\t# Create a job from a cron job named \"a-cronjob\"\n" "\t\tkubectl create job test-job --from=cronjob/a-cronjob" msgstr "" "\n" "\t\t# Create a job\n" "\t\tkubectl create job my-job --image=busybox\n" "\n" -"\t\t# Create a job with command\n" +"\t\t# Create a job with a command\n" "\t\tkubectl create job my-job --image=busybox -- date\n" "\n" -"\t\t# Create a job from a CronJob named \"a-cronjob\"\n" +"\t\t# Create a job from a cron job named \"a-cronjob\"\n" "\t\tkubectl create job test-job --from=cronjob/a-cronjob" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:44 msgid "" "\n" -"\t\t# Create a new resourcequota named my-quota\n" +"\t\t# Create a new resource quota named my-quota\n" "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," "replicationcontrollers=2,resourcequotas=1,secrets=5," "persistentvolumeclaims=10\n" "\n" -"\t\t# Create a new resourcequota named best-effort\n" +"\t\t# Create a new resource quota named best-effort\n" "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" msgstr "" "\n" -"\t\t# Create a new resourcequota named my-quota\n" +"\t\t# Create a new resource quota named my-quota\n" "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," "replicationcontrollers=2,resourcequotas=1,secrets=5," "persistentvolumeclaims=10\n" "\n" -"\t\t# Create a new resourcequota named best-effort\n" +"\t\t# Create a new resource quota named best-effort\n" "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:44 @@ -450,97 +442,129 @@ msgid "" "\n" "\t\t# Create a pod disruption budget named my-pdb that will select all pods " "with the app=rails label\n" -"\t\t# and require at least one of them being available at any point in " -"time.\n" +"\t\t# and require at least one of them being available at any point in time\n" "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" "available=1\n" "\n" "\t\t# Create a pod disruption budget named my-pdb that will select all pods " "with the app=nginx label\n" "\t\t# and require at least half of the pods selected to be available at any " -"point in time.\n" +"point in time\n" "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" msgstr "" "\n" "\t\t# Create a pod disruption budget named my-pdb that will select all pods " "with the app=rails label\n" -"\t\t# and require at least one of them being available at any point in " -"time.\n" +"\t\t# and require at least one of them being available at any point in time\n" "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" "available=1\n" "\n" "\t\t# Create a pod disruption budget named my-pdb that will select all pods " "with the app=nginx label\n" "\t\t# and require at least half of the pods selected to be available at any " -"point in time.\n" +"point in time\n" "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:76 msgid "" "\n" -"\t\t# Create a pod using the data in pod.json.\n" +"\t\t# Create a pod using the data in pod.json\n" "\t\tkubectl create -f ./pod.json\n" "\n" -"\t\t# Create a pod based on the JSON passed into stdin.\n" +"\t\t# Create a pod based on the JSON passed into stdin\n" "\t\tcat pod.json | kubectl create -f -\n" "\n" "\t\t# Edit the data in docker-registry.yaml in JSON then create the resource " -"using the edited data.\n" +"using the edited data\n" "\t\tkubectl create -f docker-registry.yaml --edit -o json" msgstr "" "\n" -"\t\t# Create a pod using the data in pod.json.\n" +"\t\t# Create a pod using the data in pod.json\n" "\t\tkubectl create -f ./pod.json\n" "\n" -"\t\t# Create a pod based on the JSON passed into stdin.\n" +"\t\t# Create a pod based on the JSON passed into stdin\n" "\t\tcat pod.json | kubectl create -f -\n" "\n" "\t\t# Edit the data in docker-registry.yaml in JSON then create the resource " -"using the edited data.\n" +"using the edited data\n" "\t\tkubectl create -f docker-registry.yaml --edit -o json" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:43 msgid "" "\n" -"\t\t# Create a priorityclass named high-priority\n" +"\t\t# Create a priority class named high-priority\n" "\t\tkubectl create priorityclass high-priority --value=1000 --description=" "\"high priority\"\n" "\n" -"\t\t# Create a priorityclass named default-priority that considered as the " -"global default priority\n" +"\t\t# Create a priority class named default-priority that is considered as " +"the global default priority\n" "\t\tkubectl create priorityclass default-priority --value=1000 --global-" "default=true --description=\"default priority\"\n" "\n" -"\t\t# Create a priorityclass named high-priority that can not preempt pods " +"\t\t# Create a priority class named high-priority that cannot preempt pods " "with lower priority\n" "\t\tkubectl create priorityclass high-priority --value=1000 --description=" "\"high priority\" --preemption-policy=\"Never\"" msgstr "" "\n" -"\t\t# Create a priorityclass named high-priority\n" +"\t\t# Create a priority class named high-priority\n" "\t\tkubectl create priorityclass high-priority --value=1000 --description=" "\"high priority\"\n" "\n" -"\t\t# Create a priorityclass named default-priority that considered as the " -"global default priority\n" +"\t\t# Create a priority class named default-priority that is considered as " +"the global default priority\n" "\t\tkubectl create priorityclass default-priority --value=1000 --global-" "default=true --description=\"default priority\"\n" "\n" -"\t\t# Create a priorityclass named high-priority that can not preempt pods " +"\t\t# Create a priority class named high-priority that cannot preempt pods " "with lower priority\n" "\t\tkubectl create priorityclass high-priority --value=1000 --description=" "\"high priority\" --preemption-policy=\"Never\"" +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:46 +msgid "" +"\n" +"\t\t# Create a role named \"pod-reader\" that allows user to perform \"get" +"\", \"watch\" and \"list\" on pods\n" +"\t\tkubectl create role pod-reader --verb=get --verb=list --verb=watch --" +"resource=pods\n" +"\n" +"\t\t# Create a role named \"pod-reader\" with ResourceName specified\n" +"\t\tkubectl create role pod-reader --verb=get --resource=pods --resource-" +"name=readablepod --resource-name=anotherpod\n" +"\n" +"\t\t# Create a role named \"foo\" with API Group specified\n" +"\t\tkubectl create role foo --verb=get,list,watch --resource=rs.extensions\n" +"\n" +"\t\t# Create a role named \"foo\" with SubResource specified\n" +"\t\tkubectl create role foo --verb=get,list,watch --resource=pods,pods/status" +msgstr "" +"\n" +"\t\t# Create a role named \"pod-reader\" that allows user to perform \"get" +"\", \"watch\" and \"list\" on pods\n" +"\t\tkubectl create role pod-reader --verb=get --verb=list --verb=watch --" +"resource=pods\n" +"\n" +"\t\t# Create a role named \"pod-reader\" with ResourceName specified\n" +"\t\tkubectl create role pod-reader --verb=get --resource=pods --resource-" +"name=readablepod --resource-name=anotherpod\n" +"\n" +"\t\t# Create a role named \"foo\" with API Group specified\n" +"\t\tkubectl create role foo --verb=get,list,watch --resource=rs.extensions\n" +"\n" +"\t\t# Create a role named \"foo\" with SubResource specified\n" +"\t\tkubectl create role foo --verb=get,list,watch --resource=pods,pods/status" + #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:61 msgid "" "\n" "\t\t# Create a service for a replicated nginx, which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose rc nginx --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for a replication controller identified by type and " "name specified in \"nginx-controller.yaml\", which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose -f nginx-controller.yaml --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for a pod valid-pod, which serves on port 444 with " @@ -558,21 +582,21 @@ msgid "" "stream\n" "\n" "\t\t# Create a service for a replicated nginx using replica set, which " -"serves on port 80 and connects to the containers on port 8000.\n" +"serves on port 80 and connects to the containers on port 8000\n" "\t\tkubectl expose rs nginx --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for an nginx deployment, which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose deployment nginx --port=80 --target-port=8000" msgstr "" "\n" "\t\t# Create a service for a replicated nginx, which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose rc nginx --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for a replication controller identified by type and " "name specified in \"nginx-controller.yaml\", which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose -f nginx-controller.yaml --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for a pod valid-pod, which serves on port 444 with " @@ -590,11 +614,11 @@ msgstr "" "stream\n" "\n" "\t\t# Create a service for a replicated nginx using replica set, which " -"serves on port 80 and connects to the containers on port 8000.\n" +"serves on port 80 and connects to the containers on port 8000\n" "\t\tkubectl expose rs nginx --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for an nginx deployment, which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose deployment nginx --port=80 --target-port=8000" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_ingress.go:64 @@ -753,24 +777,23 @@ msgstr "" "filesystem will be mounted at /host\n" "\t\tkubectl debug node/mynode -it --image=busybox\n" -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:72 +#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:74 msgid "" "\n" -"\t\t# Delete a pod using the type and name specified in pod.json.\n" +"\t\t# Delete a pod using the type and name specified in pod.json\n" "\t\tkubectl delete -f ./pod.json\n" "\n" "\t\t# Delete resources from a directory containing kustomization.yaml - e.g. " -"dir/kustomization.yaml.\n" +"dir/kustomization.yaml\n" "\t\tkubectl delete -k dir\n" "\n" -"\t\t# Delete a pod based on the type and name in the JSON passed into " -"stdin.\n" +"\t\t# Delete a pod based on the type and name in the JSON passed into stdin\n" "\t\tcat pod.json | kubectl delete -f -\n" "\n" "\t\t# Delete pods and services with same names \"baz\" and \"foo\"\n" "\t\tkubectl delete pod,service baz foo\n" "\n" -"\t\t# Delete pods and services with label name=myLabel.\n" +"\t\t# Delete pods and services with label name=myLabel\n" "\t\tkubectl delete pods,services -l name=myLabel\n" "\n" "\t\t# Delete a pod with minimal delay\n" @@ -783,21 +806,20 @@ msgid "" "\t\tkubectl delete pods --all" msgstr "" "\n" -"\t\t# Delete a pod using the type and name specified in pod.json.\n" +"\t\t# Delete a pod using the type and name specified in pod.json\n" "\t\tkubectl delete -f ./pod.json\n" "\n" "\t\t# Delete resources from a directory containing kustomization.yaml - e.g. " -"dir/kustomization.yaml.\n" +"dir/kustomization.yaml\n" "\t\tkubectl delete -k dir\n" "\n" -"\t\t# Delete a pod based on the type and name in the JSON passed into " -"stdin.\n" +"\t\t# Delete a pod based on the type and name in the JSON passed into stdin\n" "\t\tcat pod.json | kubectl delete -f -\n" "\n" "\t\t# Delete pods and services with same names \"baz\" and \"foo\"\n" "\t\tkubectl delete pod,service baz foo\n" "\n" -"\t\t# Delete pods and services with label name=myLabel.\n" +"\t\t# Delete pods and services with label name=myLabel\n" "\t\tkubectl delete pods,services -l name=myLabel\n" "\n" "\t\t# Delete a pod with minimal delay\n" @@ -809,7 +831,7 @@ msgstr "" "\t\t# Delete all pods\n" "\t\tkubectl delete pods --all" -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:50 +#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:51 msgid "" "\n" "\t\t# Describe a node\n" @@ -829,7 +851,7 @@ msgid "" "\n" "\t\t# Describe all pods managed by the 'frontend' replication controller (rc-" "created pods\n" -"\t\t# get the name of the rc as a prefix in the pod the name).\n" +"\t\t# get the name of the rc as a prefix in the pod the name)\n" "\t\tkubectl describe pods frontend" msgstr "" "\n" @@ -850,103 +872,143 @@ msgstr "" "\n" "\t\t# Describe all pods managed by the 'frontend' replication controller (rc-" "created pods\n" -"\t\t# get the name of the rc as a prefix in the pod the name).\n" +"\t\t# get the name of the rc as a prefix in the pod the name)\n" "\t\tkubectl describe pods frontend" #: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:76 msgid "" "\n" -"\t\t# Diff resources included in pod.json.\n" +"\t\t# Diff resources included in pod.json\n" "\t\tkubectl diff -f pod.json\n" "\n" "\t\t# Diff file read from stdin\n" "\t\tcat service.yaml | kubectl diff -f -" msgstr "" "\n" -"\t\t# Diff resources included in pod.json.\n" +"\t\t# Diff resources included in pod.json\n" "\t\tkubectl diff -f pod.json\n" "\n" "\t\t# Diff file read from stdin\n" "\t\tcat service.yaml | kubectl diff -f -" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:135 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:138 msgid "" "\n" "\t\t# Drain node \"foo\", even if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" -"\t\t$ kubectl drain foo --force\n" +"replication controller, replica set, job, daemon set or stateful set on it\n" +"\t\tkubectl drain foo --force\n" "\n" -"\t\t# As above, but abort if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a " -"grace period of 15 minutes.\n" -"\t\t$ kubectl drain foo --grace-period=900" +"\t\t# As above, but abort if there are pods not managed by a replication " +"controller, replica set, job, daemon set or stateful set, and use a grace " +"period of 15 minutes\n" +"\t\tkubectl drain foo --grace-period=900" msgstr "" "\n" "\t\t# Drain node \"foo\", even if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" -"\t\t$ kubectl drain foo --force\n" +"replication controller, replica set, job, daemon set or stateful set on it\n" +"\t\tkubectl drain foo --force\n" "\n" -"\t\t# As above, but abort if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a " -"grace period of 15 minutes.\n" -"\t\t$ kubectl drain foo --grace-period=900" +"\t\t# As above, but abort if there are pods not managed by a replication " +"controller, replica set, job, daemon set or stateful set, and use a grace " +"period of 15 minutes\n" +"\t\tkubectl drain foo --grace-period=900" -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:54 +#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:55 msgid "" "\n" -"\t\t# Edit the service named 'docker-registry':\n" +"\t\t# Edit the service named 'docker-registry'\n" "\t\tkubectl edit svc/docker-registry\n" "\n" "\t\t# Use an alternative editor\n" "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" "\n" -"\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" +"\t\t# Edit the job 'myjob' in JSON using the v1 API format\n" "\t\tkubectl edit job.v1.batch/myjob -o json\n" "\n" "\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " -"config in its annotation:\n" +"config in its annotation\n" "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" msgstr "" "\n" -"\t\t# Edit the service named 'docker-registry':\n" +"\t\t# Edit the service named 'docker-registry'\n" "\t\tkubectl edit svc/docker-registry\n" "\n" "\t\t# Use an alternative editor\n" "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" "\n" -"\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" +"\t\t# Edit the job 'myjob' in JSON using the v1 API format\n" "\t\tkubectl edit job.v1.batch/myjob -o json\n" "\n" "\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " -"config in its annotation:\n" +"config in its annotation\n" "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" -#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:47 +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:44 msgid "" "\n" -"\t\t# Get output from running 'date' command from pod mypod, using the first " -"container by default\n" +"\t\t# Get output from running pod mypod; use the 'kubectl.kubernetes.io/" +"default-container' annotation\n" +"\t\t# for selecting the container to be attached or the first container in " +"the pod will be chosen\n" +"\t\tkubectl attach mypod\n" +"\n" +"\t\t# Get output from ruby-container from pod mypod\n" +"\t\tkubectl attach mypod -c ruby-container\n" +"\n" +"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container " +"from pod mypod\n" +"\t\t# and sends stdout/stderr from 'bash' back to the client\n" +"\t\tkubectl attach mypod -c ruby-container -i -t\n" +"\n" +"\t\t# Get output from the first pod of a replica set named nginx\n" +"\t\tkubectl attach rs/nginx\n" +"\t\t" +msgstr "" +"\n" +"\t\t# Get output from running pod mypod; use the 'kubectl.kubernetes.io/" +"default-container' annotation\n" +"\t\t# for selecting the container to be attached or the first container in " +"the pod will be chosen\n" +"\t\tkubectl attach mypod\n" +"\n" +"\t\t# Get output from ruby-container from pod mypod\n" +"\t\tkubectl attach mypod -c ruby-container\n" +"\n" +"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container " +"from pod mypod\n" +"\t\t# and sends stdout/stderr from 'bash' back to the client\n" +"\t\tkubectl attach mypod -c ruby-container -i -t\n" +"\n" +"\t\t# Get output from the first pod of a replica set named nginx\n" +"\t\tkubectl attach rs/nginx\n" +"\t\t" + +#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:48 +msgid "" +"\n" +"\t\t# Get output from running the 'date' command from pod mypod, using the " +"first container by default\n" "\t\tkubectl exec mypod -- date\n" "\n" -"\t\t# Get output from running 'date' command in ruby-container from pod " +"\t\t# Get output from running the 'date' command in ruby-container from pod " "mypod\n" "\t\tkubectl exec mypod -c ruby-container -- date\n" "\n" -"\t\t# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container " +"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container " "from pod mypod\n" "\t\t# and sends stdout/stderr from 'bash' back to the client\n" "\t\tkubectl exec mypod -c ruby-container -i -t -- bash -il\n" "\n" "\t\t# List contents of /usr from the first container of pod mypod and sort " -"by modification time.\n" +"by modification time\n" "\t\t# If the command you want to execute in the pod has any flags in common " "(e.g. -i),\n" "\t\t# you must use two dashes (--) to separate your command's flags/" -"arguments.\n" +"arguments\n" "\t\t# Also note, do not surround your command and its flags/arguments with " "quotes\n" "\t\t# unless that is how you would execute it normally (i.e., do ls -t /usr, " -"not \"ls -t /usr\").\n" +"not \"ls -t /usr\")\n" "\t\tkubectl exec mypod -i -t -- ls -t /usr\n" "\n" "\t\t# Get output from running 'date' command from the first pod of the " @@ -959,29 +1021,29 @@ msgid "" "\t\t" msgstr "" "\n" -"\t\t# Get output from running 'date' command from pod mypod, using the first " -"container by default\n" +"\t\t# Get output from running the 'date' command from pod mypod, using the " +"first container by default\n" "\t\tkubectl exec mypod -- date\n" "\n" -"\t\t# Get output from running 'date' command in ruby-container from pod " +"\t\t# Get output from running the 'date' command in ruby-container from pod " "mypod\n" "\t\tkubectl exec mypod -c ruby-container -- date\n" "\n" -"\t\t# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container " +"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container " "from pod mypod\n" "\t\t# and sends stdout/stderr from 'bash' back to the client\n" "\t\tkubectl exec mypod -c ruby-container -i -t -- bash -il\n" "\n" "\t\t# List contents of /usr from the first container of pod mypod and sort " -"by modification time.\n" +"by modification time\n" "\t\t# If the command you want to execute in the pod has any flags in common " "(e.g. -i),\n" "\t\t# you must use two dashes (--) to separate your command's flags/" -"arguments.\n" +"arguments\n" "\t\t# Also note, do not surround your command and its flags/arguments with " "quotes\n" "\t\t# unless that is how you would execute it normally (i.e., do ls -t /usr, " -"not \"ls -t /usr\").\n" +"not \"ls -t /usr\")\n" "\t\tkubectl exec mypod -i -t -- ls -t /usr\n" "\n" "\t\t# Get output from running 'date' command from the first pod of the " @@ -993,46 +1055,6 @@ msgstr "" "\t\tkubectl exec svc/myservice -- date\n" "\t\t" -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:43 -msgid "" -"\n" -"\t\t# Get output from running pod mypod, use the kubectl.kubernetes.io/" -"default-container annotation \n" -"\t\t# for selecting the container to be attached or the first container in " -"the pod will be chosen\n" -"\t\tkubectl attach mypod\n" -"\n" -"\t\t# Get output from ruby-container from pod mypod\n" -"\t\tkubectl attach mypod -c ruby-container\n" -"\n" -"\t\t# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container " -"from pod mypod\n" -"\t\t# and sends stdout/stderr from 'bash' back to the client\n" -"\t\tkubectl attach mypod -c ruby-container -i -t\n" -"\n" -"\t\t# Get output from the first pod of a ReplicaSet named nginx\n" -"\t\tkubectl attach rs/nginx\n" -"\t\t" -msgstr "" -"\n" -"\t\t# Get output from running pod mypod, use the kubectl.kubernetes.io/" -"default-container annotation \n" -"\t\t# for selecting the container to be attached or the first container in " -"the pod will be chosen\n" -"\t\tkubectl attach mypod\n" -"\n" -"\t\t# Get output from ruby-container from pod mypod\n" -"\t\tkubectl attach mypod -c ruby-container\n" -"\n" -"\t\t# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container " -"from pod mypod\n" -"\t\t# and sends stdout/stderr from 'bash' back to the client\n" -"\t\tkubectl attach mypod -c ruby-container -i -t\n" -"\n" -"\t\t# Get output from the first pod of a ReplicaSet named nginx\n" -"\t\tkubectl attach rs/nginx\n" -"\t\t" - #: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:46 msgid "" "\n" @@ -1049,7 +1071,7 @@ msgstr "" "\t\t# Get the documentation of a specific field of a resource\n" "\t\tkubectl explain pods.spec.containers" -#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:66 +#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:65 msgid "" "\n" "\t\t# Installing bash completion on macOS using homebrew\n" @@ -1058,7 +1080,7 @@ msgid "" "\t\t## or, if running Bash 4.1+\n" "\t\t brew install bash-completion@2\n" "\t\t## If kubectl is installed via homebrew, this should start working " -"immediately.\n" +"immediately\n" "\t\t## If you've installed via other means, you may need add the completion " "to your completion directory\n" "\t\t kubectl completion bash > $(brew --prefix)/etc/bash_completion.d/" @@ -1066,8 +1088,8 @@ msgid "" "\n" "\n" "\t\t# Installing bash completion on Linux\n" -"\t\t## If bash-completion is not installed on Linux, please install the " -"'bash-completion' package\n" +"\t\t## If bash-completion is not installed on Linux, install the 'bash-" +"completion' package\n" "\t\t## via your distribution's package manager.\n" "\t\t## Load the kubectl completion code for bash into the current shell\n" "\t\t source <(kubectl completion bash)\n" @@ -1092,7 +1114,7 @@ msgstr "" "\t\t## or, if running Bash 4.1+\n" "\t\t brew install bash-completion@2\n" "\t\t## If kubectl is installed via homebrew, this should start working " -"immediately.\n" +"immediately\n" "\t\t## If you've installed via other means, you may need add the completion " "to your completion directory\n" "\t\t kubectl completion bash > $(brew --prefix)/etc/bash_completion.d/" @@ -1100,8 +1122,8 @@ msgstr "" "\n" "\n" "\t\t# Installing bash completion on Linux\n" -"\t\t## If bash-completion is not installed on Linux, please install the " -"'bash-completion' package\n" +"\t\t## If bash-completion is not installed on Linux, install the 'bash-" +"completion' package\n" "\t\t## via your distribution's package manager.\n" "\t\t## Load the kubectl completion code for bash into the current shell\n" "\t\t source <(kubectl completion bash)\n" @@ -1119,88 +1141,88 @@ msgstr "" "\t\t# Set the kubectl completion code for zsh[1] to autoload on startup\n" "\t\t kubectl completion zsh > \"${fpath[1]}/_kubectl\"" -#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:101 +#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:105 msgid "" "\n" -"\t\t# List all pods in ps output format.\n" +"\t\t# List all pods in ps output format\n" "\t\tkubectl get pods\n" "\n" "\t\t# List all pods in ps output format with more information (such as node " -"name).\n" +"name)\n" "\t\tkubectl get pods -o wide\n" "\n" "\t\t# List a single replication controller with specified NAME in ps output " -"format.\n" +"format\n" "\t\tkubectl get replicationcontroller web\n" "\n" "\t\t# List deployments in JSON output format, in the \"v1\" version of the " -"\"apps\" API group:\n" +"\"apps\" API group\n" "\t\tkubectl get deployments.v1.apps -o json\n" "\n" -"\t\t# List a single pod in JSON output format.\n" +"\t\t# List a single pod in JSON output format\n" "\t\tkubectl get -o json pod web-pod-13je7\n" "\n" "\t\t# List a pod identified by type and name specified in \"pod.yaml\" in " -"JSON output format.\n" +"JSON output format\n" "\t\tkubectl get -f pod.yaml -o json\n" "\n" "\t\t# List resources from a directory with kustomization.yaml - e.g. dir/" -"kustomization.yaml.\n" +"kustomization.yaml\n" "\t\tkubectl get -k dir/\n" "\n" -"\t\t# Return only the phase value of the specified pod.\n" +"\t\t# Return only the phase value of the specified pod\n" "\t\tkubectl get -o template pod/web-pod-13je7 --template={{.status.phase}}\n" "\n" -"\t\t# List resource information in custom columns.\n" +"\t\t# List resource information in custom columns\n" "\t\tkubectl get pod test-pod -o custom-columns=CONTAINER:.spec.containers[0]." "name,IMAGE:.spec.containers[0].image\n" "\n" "\t\t# List all replication controllers and services together in ps output " -"format.\n" +"format\n" "\t\tkubectl get rc,services\n" "\n" -"\t\t# List one or more resources by their type and names.\n" +"\t\t# List one or more resources by their type and names\n" "\t\tkubectl get rc/web service/frontend pods/web-pod-13je7" msgstr "" "\n" -"\t\t# List all pods in ps output format.\n" +"\t\t# List all pods in ps output format\n" "\t\tkubectl get pods\n" "\n" "\t\t# List all pods in ps output format with more information (such as node " -"name).\n" +"name)\n" "\t\tkubectl get pods -o wide\n" "\n" "\t\t# List a single replication controller with specified NAME in ps output " -"format.\n" +"format\n" "\t\tkubectl get replicationcontroller web\n" "\n" "\t\t# List deployments in JSON output format, in the \"v1\" version of the " -"\"apps\" API group:\n" +"\"apps\" API group\n" "\t\tkubectl get deployments.v1.apps -o json\n" "\n" -"\t\t# List a single pod in JSON output format.\n" +"\t\t# List a single pod in JSON output format\n" "\t\tkubectl get -o json pod web-pod-13je7\n" "\n" "\t\t# List a pod identified by type and name specified in \"pod.yaml\" in " -"JSON output format.\n" +"JSON output format\n" "\t\tkubectl get -f pod.yaml -o json\n" "\n" "\t\t# List resources from a directory with kustomization.yaml - e.g. dir/" -"kustomization.yaml.\n" +"kustomization.yaml\n" "\t\tkubectl get -k dir/\n" "\n" -"\t\t# Return only the phase value of the specified pod.\n" +"\t\t# Return only the phase value of the specified pod\n" "\t\tkubectl get -o template pod/web-pod-13je7 --template={{.status.phase}}\n" "\n" -"\t\t# List resource information in custom columns.\n" +"\t\t# List resource information in custom columns\n" "\t\tkubectl get pod test-pod -o custom-columns=CONTAINER:.spec.containers[0]." "name,IMAGE:.spec.containers[0].image\n" "\n" "\t\t# List all replication controllers and services together in ps output " -"format.\n" +"format\n" "\t\tkubectl get rc,services\n" "\n" -"\t\t# List one or more resources by their type and names.\n" +"\t\t# List one or more resources by their type and names\n" "\t\tkubectl get rc/web service/frontend pods/web-pod-13je7" #: staging/src/k8s.io/kubectl/pkg/cmd/portforward/portforward.go:72 @@ -1259,72 +1281,71 @@ msgstr "" "\t\t# Listen on a random port locally, forwarding to 5000 in the pod\n" "\t\tkubectl port-forward pod/mypod :5000" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:85 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:87 msgid "" "\n" -"\t\t# Mark node \"foo\" as schedulable.\n" -"\t\t$ kubectl uncordon foo" +"\t\t# Mark node \"foo\" as schedulable\n" +"\t\tkubectl uncordon foo" msgstr "" "\n" -"\t\t# Mark node \"foo\" as schedulable.\n" -"\t\t$ kubectl uncordon foo" +"\t\t# Mark node \"foo\" as schedulable\n" +"\t\tkubectl uncordon foo" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:57 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:58 msgid "" "\n" -"\t\t# Mark node \"foo\" as unschedulable.\n" +"\t\t# Mark node \"foo\" as unschedulable\n" "\t\tkubectl cordon foo" msgstr "" "\n" -"\t\t# Mark node \"foo\" as unschedulable.\n" +"\t\t# Mark node \"foo\" as unschedulable\n" "\t\tkubectl cordon foo" -#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:83 msgid "" "\n" -"\t\t# Partially update a node using a strategic merge patch. Specify the " -"patch as JSON.\n" +"\t\t# Partially update a node using a strategic merge patch, specifying the " +"patch as JSON\n" "\t\tkubectl patch node k8s-node-1 -p '{\"spec\":{\"unschedulable\":true}}'\n" "\n" -"\t\t# Partially update a node using a strategic merge patch. Specify the " -"patch as YAML.\n" +"\t\t# Partially update a node using a strategic merge patch, specifying the " +"patch as YAML\n" "\t\tkubectl patch node k8s-node-1 -p $'spec:\n" " unschedulable: true'\n" "\n" "\t\t# Partially update a node identified by the type and name specified in " -"\"node.json\" using strategic merge patch.\n" +"\"node.json\" using strategic merge patch\n" "\t\tkubectl patch -f node.json -p '{\"spec\":{\"unschedulable\":true}}'\n" "\n" "\t\t# Update a container's image; spec.containers[*].name is required " -"because it's a merge key.\n" +"because it's a merge key\n" "\t\tkubectl patch pod valid-pod -p '{\"spec\":{\"containers\":[{\"name\":" "\"kubernetes-serve-hostname\",\"image\":\"new image\"}]}}'\n" "\n" -"\t\t# Update a container's image using a json patch with positional arrays.\n" +"\t\t# Update a container's image using a JSON patch with positional arrays\n" "\t\tkubectl patch pod valid-pod --type='json' -p='[{\"op\": \"replace\", " "\"path\": \"/spec/containers/0/image\", \"value\":\"new image\"}]'" msgstr "" "\n" -"\t\t# Partially update a node using a strategic merge patch. Specify the " -"patch as JSON.\n" +"\t\t# Partially update a node using a strategic merge patch, specifying the " +"patch as JSON\n" "\t\tkubectl patch node k8s-node-1 -p '{\"spec\":{\"unschedulable\":true}}'\n" "\n" -"\t\t# Partially update a node using a strategic merge patch. Specify the " -"patch as YAML.\n" +"\t\t# Partially update a node using a strategic merge patch, specifying the " +"patch as YAML\n" "\t\tkubectl patch node k8s-node-1 -p $'spec:\n" " unschedulable: true'\n" "\n" "\t\t# Partially update a node identified by the type and name specified in " -"\"node.json\" using strategic merge patch.\n" +"\"node.json\" using strategic merge patch\n" "\t\tkubectl patch -f node.json -p '{\"spec\":{\"unschedulable\":true}}'\n" "\n" "\t\t# Update a container's image; spec.containers[*].name is required " -"because it's a merge key.\n" +"because it's a merge key\n" "\t\tkubectl patch pod valid-pod -p '{\"spec\":{\"containers\":[{\"name\":" "\"kubernetes-serve-hostname\",\"image\":\"new image\"}]}}'\n" "\n" -"\t\t# Update a container's image using a json patch with positional arrays.\n" +"\t\t# Update a container's image using a JSON patch with positional arrays\n" "\t\tkubectl patch pod valid-pod --type='json' -p='[{\"op\": \"replace\", " "\"path\": \"/spec/containers/0/image\", \"value\":\"new image\"}]'" @@ -1373,10 +1394,10 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:56 msgid "" "\n" -"\t\t# Replace a pod using the data in pod.json.\n" +"\t\t# Replace a pod using the data in pod.json\n" "\t\tkubectl replace -f ./pod.json\n" "\n" -"\t\t# Replace a pod based on the JSON passed into stdin.\n" +"\t\t# Replace a pod based on the JSON passed into stdin\n" "\t\tcat pod.json | kubectl replace -f -\n" "\n" "\t\t# Update a single-container pod's image version (tag) to v4\n" @@ -1387,10 +1408,10 @@ msgid "" "\t\tkubectl replace --force -f ./pod.json" msgstr "" "\n" -"\t\t# Replace a pod using the data in pod.json.\n" +"\t\t# Replace a pod using the data in pod.json\n" "\t\tkubectl replace -f ./pod.json\n" "\n" -"\t\t# Replace a pod based on the JSON passed into stdin.\n" +"\t\t# Replace a pod based on the JSON passed into stdin\n" "\t\tcat pod.json | kubectl replace -f -\n" "\n" "\t\t# Update a single-container pod's image version (tag) to v4\n" @@ -1411,7 +1432,7 @@ msgid "" "\n" "\t\t# Return snapshot logs from all containers in pods defined by label " "app=nginx\n" -"\t\tkubectl logs -lapp=nginx --all-containers=true\n" +"\t\tkubectl logs -l app=nginx --all-containers=true\n" "\n" "\t\t# Return snapshot of previous terminated ruby container logs from pod " "web-1\n" @@ -1422,7 +1443,7 @@ msgid "" "\n" "\t\t# Begin streaming the logs from all containers in pods defined by label " "app=nginx\n" -"\t\tkubectl logs -f -lapp=nginx --all-containers=true\n" +"\t\tkubectl logs -f -l app=nginx --all-containers=true\n" "\n" "\t\t# Display only the most recent 20 lines of output in pod nginx\n" "\t\tkubectl logs --tail=20 nginx\n" @@ -1449,7 +1470,7 @@ msgstr "" "\n" "\t\t# Return snapshot logs from all containers in pods defined by label " "app=nginx\n" -"\t\tkubectl logs -lapp=nginx --all-containers=true\n" +"\t\tkubectl logs -l app=nginx --all-containers=true\n" "\n" "\t\t# Return snapshot of previous terminated ruby container logs from pod " "web-1\n" @@ -1460,7 +1481,7 @@ msgstr "" "\n" "\t\t# Begin streaming the logs from all containers in pods defined by label " "app=nginx\n" -"\t\tkubectl logs -f -lapp=nginx --all-containers=true\n" +"\t\tkubectl logs -f -l app=nginx --all-containers=true\n" "\n" "\t\t# Display only the most recent 20 lines of output in pod nginx\n" "\t\tkubectl logs --tail=20 nginx\n" @@ -1478,73 +1499,73 @@ msgstr "" "nginx\n" "\t\tkubectl logs deployment/nginx -c nginx-1" -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:48 +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:49 msgid "" "\n" -"\t\t# Scale a replicaset named 'foo' to 3.\n" +"\t\t# Scale a replica set named 'foo' to 3\n" "\t\tkubectl scale --replicas=3 rs/foo\n" "\n" "\t\t# Scale a resource identified by type and name specified in \"foo.yaml\" " -"to 3.\n" +"to 3\n" "\t\tkubectl scale --replicas=3 -f foo.yaml\n" "\n" -"\t\t# If the deployment named mysql's current size is 2, scale mysql to 3.\n" +"\t\t# If the deployment named mysql's current size is 2, scale mysql to 3\n" "\t\tkubectl scale --current-replicas=2 --replicas=3 deployment/mysql\n" "\n" -"\t\t# Scale multiple replication controllers.\n" +"\t\t# Scale multiple replication controllers\n" "\t\tkubectl scale --replicas=5 rc/foo rc/bar rc/baz\n" "\n" -"\t\t# Scale statefulset named 'web' to 3.\n" +"\t\t# Scale stateful set named 'web' to 3\n" "\t\tkubectl scale --replicas=3 statefulset/web" msgstr "" "\n" -"\t\t# Scale a replicaset named 'foo' to 3.\n" +"\t\t# Scale a replica set named 'foo' to 3\n" "\t\tkubectl scale --replicas=3 rs/foo\n" "\n" "\t\t# Scale a resource identified by type and name specified in \"foo.yaml\" " -"to 3.\n" +"to 3\n" "\t\tkubectl scale --replicas=3 -f foo.yaml\n" "\n" -"\t\t# If the deployment named mysql's current size is 2, scale mysql to 3.\n" +"\t\t# If the deployment named mysql's current size is 2, scale mysql to 3\n" "\t\tkubectl scale --current-replicas=2 --replicas=3 deployment/mysql\n" "\n" -"\t\t# Scale multiple replication controllers.\n" +"\t\t# Scale multiple replication controllers\n" "\t\tkubectl scale --replicas=5 rc/foo rc/bar rc/baz\n" "\n" -"\t\t# Scale statefulset named 'web' to 3.\n" +"\t\t# Scale stateful set named 'web' to 3\n" "\t\tkubectl scale --replicas=3 statefulset/web" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:75 msgid "" "\n" "\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file.\n" +"of a file\n" "\t\tkubectl apply set-last-applied -f deploy.yaml\n" "\n" "\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" +"directory\n" "\t\tkubectl apply set-last-applied -f path/\n" "\n" "\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file, will create the annotation if it does not already exist.\n" +"of a file; will create the annotation if it does not already exist\n" "\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" "\t\t" msgstr "" "\n" "\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file.\n" +"of a file\n" "\t\tkubectl apply set-last-applied -f deploy.yaml\n" "\n" "\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" +"directory\n" "\t\tkubectl apply set-last-applied -f path/\n" "\n" "\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file, will create the annotation if it does not already exist.\n" +"of a file; will create the annotation if it does not already exist\n" "\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" "\t\t" -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:72 +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:75 msgid "" "\n" "\t\t# Show metrics for all pods in the default namespace\n" @@ -1575,142 +1596,142 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:62 msgid "" "\n" -"\t\t# Start a nginx pod.\n" +"\t\t# Start a nginx pod\n" "\t\tkubectl run nginx --image=nginx\n" "\n" -"\t\t# Start a hazelcast pod and let the container expose port 5701.\n" +"\t\t# Start a hazelcast pod and let the container expose port 5701\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --port=5701\n" "\n" "\t\t# Start a hazelcast pod and set environment variables " -"\"DNS_DOMAIN=cluster\" and \"POD_NAMESPACE=default\" in the container.\n" +"\"DNS_DOMAIN=cluster\" and \"POD_NAMESPACE=default\" in the container\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --env=" "\"DNS_DOMAIN=cluster\" --env=\"POD_NAMESPACE=default\"\n" "\n" "\t\t# Start a hazelcast pod and set labels \"app=hazelcast\" and \"env=prod" -"\" in the container.\n" +"\" in the container\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --labels=" "\"app=hazelcast,env=prod\"\n" "\n" -"\t\t# Dry run. Print the corresponding API objects without creating them.\n" +"\t\t# Dry run; print the corresponding API objects without creating them\n" "\t\tkubectl run nginx --image=nginx --dry-run=client\n" "\n" "\t\t# Start a nginx pod, but overload the spec with a partial set of values " -"parsed from JSON.\n" +"parsed from JSON\n" "\t\tkubectl run nginx --image=nginx --overrides='{ \"apiVersion\": \"v1\", " "\"spec\": { ... } }'\n" "\n" "\t\t# Start a busybox pod and keep it in the foreground, don't restart it if " -"it exits.\n" +"it exits\n" "\t\tkubectl run -i -t busybox --image=busybox --restart=Never\n" "\n" "\t\t# Start the nginx pod using the default command, but use custom " -"arguments (arg1 .. argN) for that command.\n" +"arguments (arg1 .. argN) for that command\n" "\t\tkubectl run nginx --image=nginx -- ... \n" "\n" -"\t\t# Start the nginx pod using a different command and custom arguments.\n" +"\t\t# Start the nginx pod using a different command and custom arguments\n" "\t\tkubectl run nginx --image=nginx --command -- ... " msgstr "" "\n" -"\t\t# Start a nginx pod.\n" +"\t\t# Start a nginx pod\n" "\t\tkubectl run nginx --image=nginx\n" "\n" -"\t\t# Start a hazelcast pod and let the container expose port 5701.\n" +"\t\t# Start a hazelcast pod and let the container expose port 5701\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --port=5701\n" "\n" "\t\t# Start a hazelcast pod and set environment variables " -"\"DNS_DOMAIN=cluster\" and \"POD_NAMESPACE=default\" in the container.\n" +"\"DNS_DOMAIN=cluster\" and \"POD_NAMESPACE=default\" in the container\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --env=" "\"DNS_DOMAIN=cluster\" --env=\"POD_NAMESPACE=default\"\n" "\n" "\t\t# Start a hazelcast pod and set labels \"app=hazelcast\" and \"env=prod" -"\" in the container.\n" +"\" in the container\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --labels=" "\"app=hazelcast,env=prod\"\n" "\n" -"\t\t# Dry run. Print the corresponding API objects without creating them.\n" +"\t\t# Dry run; print the corresponding API objects without creating them\n" "\t\tkubectl run nginx --image=nginx --dry-run=client\n" "\n" "\t\t# Start a nginx pod, but overload the spec with a partial set of values " -"parsed from JSON.\n" +"parsed from JSON\n" "\t\tkubectl run nginx --image=nginx --overrides='{ \"apiVersion\": \"v1\", " "\"spec\": { ... } }'\n" "\n" "\t\t# Start a busybox pod and keep it in the foreground, don't restart it if " -"it exits.\n" +"it exits\n" "\t\tkubectl run -i -t busybox --image=busybox --restart=Never\n" "\n" "\t\t# Start the nginx pod using the default command, but use custom " -"arguments (arg1 .. argN) for that command.\n" +"arguments (arg1 .. argN) for that command\n" "\t\tkubectl run nginx --image=nginx -- ... \n" "\n" -"\t\t# Start the nginx pod using a different command and custom arguments.\n" +"\t\t# Start the nginx pod using a different command and custom arguments\n" "\t\tkubectl run nginx --image=nginx --command -- ... " #: staging/src/k8s.io/kubectl/pkg/cmd/proxy/proxy.go:73 msgid "" "\n" -"\t\t# To proxy all of the kubernetes api and nothing else.\n" +"\t\t# To proxy all of the Kubernetes API and nothing else\n" "\t\tkubectl proxy --api-prefix=/\n" "\n" -"\t\t# To proxy only part of the kubernetes api and also some static files.\n" +"\t\t# To proxy only part of the Kubernetes API and also some static files\n" "\t\t# You can get pods info with 'curl localhost:8001/api/v1/pods'\n" "\t\tkubectl proxy --www=/my/files --www-prefix=/static/ --api-prefix=/api/\n" "\n" -"\t\t# To proxy the entire kubernetes api at a different root.\n" +"\t\t# To proxy the entire Kubernetes API at a different root\n" "\t\t# You can get pods info with 'curl localhost:8001/custom/api/v1/pods'\n" "\t\tkubectl proxy --api-prefix=/custom/\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver on port 8011, serving static " +"\t\t# Run a proxy to the Kubernetes API server on port 8011, serving static " "content from ./local/www/\n" "\t\tkubectl proxy --port=8011 --www=./local/www/\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver on an arbitrary local port.\n" -"\t\t# The chosen port for the server will be output to stdout.\n" +"\t\t# Run a proxy to the Kubernetes API server on an arbitrary local port\n" +"\t\t# The chosen port for the server will be output to stdout\n" "\t\tkubectl proxy --port=0\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver, changing the api prefix to k8s-" -"api\n" -"\t\t# This makes e.g. the pods api available at localhost:8001/k8s-api/v1/" +"\t\t# Run a proxy to the Kubernetes API server, changing the API prefix to " +"k8s-api\n" +"\t\t# This makes e.g. the pods API available at localhost:8001/k8s-api/v1/" "pods/\n" "\t\tkubectl proxy --api-prefix=/k8s-api" msgstr "" "\n" -"\t\t# To proxy all of the kubernetes api and nothing else.\n" +"\t\t# To proxy all of the Kubernetes API and nothing else\n" "\t\tkubectl proxy --api-prefix=/\n" "\n" -"\t\t# To proxy only part of the kubernetes api and also some static files.\n" +"\t\t# To proxy only part of the Kubernetes API and also some static files\n" "\t\t# You can get pods info with 'curl localhost:8001/api/v1/pods'\n" "\t\tkubectl proxy --www=/my/files --www-prefix=/static/ --api-prefix=/api/\n" "\n" -"\t\t# To proxy the entire kubernetes api at a different root.\n" +"\t\t# To proxy the entire Kubernetes API at a different root\n" "\t\t# You can get pods info with 'curl localhost:8001/custom/api/v1/pods'\n" "\t\tkubectl proxy --api-prefix=/custom/\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver on port 8011, serving static " +"\t\t# Run a proxy to the Kubernetes API server on port 8011, serving static " "content from ./local/www/\n" "\t\tkubectl proxy --port=8011 --www=./local/www/\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver on an arbitrary local port.\n" -"\t\t# The chosen port for the server will be output to stdout.\n" +"\t\t# Run a proxy to the Kubernetes API server on an arbitrary local port\n" +"\t\t# The chosen port for the server will be output to stdout\n" "\t\tkubectl proxy --port=0\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver, changing the api prefix to k8s-" -"api\n" -"\t\t# This makes e.g. the pods api available at localhost:8001/k8s-api/v1/" +"\t\t# Run a proxy to the Kubernetes API server, changing the API prefix to " +"k8s-api\n" +"\t\t# This makes e.g. the pods API available at localhost:8001/k8s-api/v1/" "pods/\n" "\t\tkubectl proxy --api-prefix=/k8s-api" -#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:79 +#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:80 msgid "" "\n" "\t\t# Update node 'foo' with a taint with key 'dedicated' and value 'special-" -"user' and effect 'NoSchedule'.\n" +"user' and effect 'NoSchedule'\n" "\t\t# If a taint with that key and effect already exists, its value is " -"replaced as specified.\n" +"replaced as specified\n" "\t\tkubectl taint nodes foo dedicated=special-user:NoSchedule\n" "\n" "\t\t# Remove from node 'foo' the taint with key 'dedicated' and effect " -"'NoSchedule' if one exists.\n" +"'NoSchedule' if one exists\n" "\t\tkubectl taint nodes foo dedicated:NoSchedule-\n" "\n" "\t\t# Remove from node 'foo' all the taints with key 'dedicated'\n" @@ -1724,13 +1745,13 @@ msgid "" msgstr "" "\n" "\t\t# Update node 'foo' with a taint with key 'dedicated' and value 'special-" -"user' and effect 'NoSchedule'.\n" +"user' and effect 'NoSchedule'\n" "\t\t# If a taint with that key and effect already exists, its value is " -"replaced as specified.\n" +"replaced as specified\n" "\t\tkubectl taint nodes foo dedicated=special-user:NoSchedule\n" "\n" "\t\t# Remove from node 'foo' the taint with key 'dedicated' and effect " -"'NoSchedule' if one exists.\n" +"'NoSchedule' if one exists\n" "\t\tkubectl taint nodes foo dedicated:NoSchedule-\n" "\n" "\t\t# Remove from node 'foo' all the taints with key 'dedicated'\n" @@ -1742,14 +1763,14 @@ msgstr "" "\t\t# Add to node 'foo' a taint with key 'bar' and no value\n" "\t\tkubectl taint nodes foo bar:NoSchedule" -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:94 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:95 msgid "" "\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'\n" "\t\tkubectl label pods foo unhealthy=true\n" "\n" "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" +"overwriting any existing value\n" "\t\tkubectl label --overwrite pods foo status=unhealthy\n" "\n" "\t\t# Update all pods in the namespace\n" @@ -1758,19 +1779,19 @@ msgid "" "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" "\t\tkubectl label -f pod.json status=unhealthy\n" "\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +"\t\t# Update pod 'foo' only if the resource is unchanged from version 1\n" "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" "\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" +"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists\n" +"\t\t# Does not require the --overwrite flag\n" "\t\tkubectl label pods foo bar-" msgstr "" "\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'\n" "\t\tkubectl label pods foo unhealthy=true\n" "\n" "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" +"overwriting any existing value\n" "\t\tkubectl label --overwrite pods foo status=unhealthy\n" "\n" "\t\t# Update all pods in the namespace\n" @@ -1779,24 +1800,24 @@ msgstr "" "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" "\t\tkubectl label -f pod.json status=unhealthy\n" "\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +"\t\t# Update pod 'foo' only if the resource is unchanged from version 1\n" "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" "\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" +"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists\n" +"\t\t# Does not require the --overwrite flag\n" "\t\tkubectl label pods foo bar-" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:53 msgid "" "\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" +"\t\t# View the last-applied-configuration annotations by type/name in YAML\n" "\t\tkubectl apply view-last-applied deployment/nginx\n" "\n" "\t\t# View the last-applied-configuration annotations by file in JSON\n" "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" msgstr "" "\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" +"\t\t# View the last-applied-configuration annotations by type/name in YAML\n" "\t\tkubectl apply view-last-applied deployment/nginx\n" "\n" "\t\t# View the last-applied-configuration annotations by file in JSON\n" @@ -1806,34 +1827,36 @@ msgstr "" msgid "" "\n" "\t\t# Wait for the pod \"busybox1\" to contain the status condition of type " -"\"Ready\".\n" +"\"Ready\"\n" "\t\tkubectl wait --for=condition=Ready pod/busybox1\n" "\n" -"\t\t# The default value of status condition is true, you can set false.\n" +"\t\t# The default value of status condition is true; you can set it to " +"false\n" "\t\tkubectl wait --for=condition=Ready=false pod/busybox1\n" "\n" "\t\t# Wait for the pod \"busybox1\" to be deleted, with a timeout of 60s, " -"after having issued the \"delete\" command.\n" +"after having issued the \"delete\" command\n" "\t\tkubectl delete pod/busybox1\n" "\t\tkubectl wait --for=delete pod/busybox1 --timeout=60s" msgstr "" "\n" "\t\t# Wait for the pod \"busybox1\" to contain the status condition of type " -"\"Ready\".\n" +"\"Ready\"\n" "\t\tkubectl wait --for=condition=Ready pod/busybox1\n" "\n" -"\t\t# The default value of status condition is true, you can set false.\n" +"\t\t# The default value of status condition is true; you can set it to " +"false\n" "\t\tkubectl wait --for=condition=Ready=false pod/busybox1\n" "\n" "\t\t# Wait for the pod \"busybox1\" to be deleted, with a timeout of 60s, " -"after having issued the \"delete\" command.\n" +"after having issued the \"delete\" command\n" "\t\tkubectl delete pod/busybox1\n" "\t\tkubectl wait --for=delete pod/busybox1 --timeout=60s" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:110 msgid "" "\n" -"\t\tApply a configuration to a resource by filename or stdin.\n" +"\t\tApply a configuration to a resource by file name or stdin.\n" "\t\tThe resource name must be specified. This resource will be created if it " "doesn't exist yet.\n" "\t\tTo use 'apply', always create the resource initially with either 'apply' " @@ -1846,7 +1869,7 @@ msgid "" "k8s.io/34274." msgstr "" "\n" -"\t\tApply a configuration to a resource by filename or stdin.\n" +"\t\tApply a configuration to a resource by file name or stdin.\n" "\t\tThe resource name must be specified. This resource will be created if it " "doesn't exist yet.\n" "\t\tTo use 'apply', always create the resource initially with either 'apply' " @@ -1901,12 +1924,12 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set.go:28 msgid "" "\n" -"\t\tConfigure application resources\n" +"\t\tConfigure application resources.\n" "\n" "\t\tThese commands help you make changes to existing application resources." msgstr "" "\n" -"\t\tConfigure application resources\n" +"\t\tConfigure application resources.\n" "\n" "\t\tThese commands help you make changes to existing application resources." @@ -1940,94 +1963,83 @@ msgstr "" "-o option\n" "\t\tto change to output destination." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L68 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38 -msgid "" -"\n" -"\t\tCreate a ClusterRole." -msgstr "" -"\n" -"\t\tCreate a ClusterRole." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a ClusterRoleBinding for a particular ClusterRole." -msgstr "" -"\n" -"\t\tCreate a ClusterRoleBinding for a particular ClusterRole." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a RoleBinding for a particular Role or ClusterRole." -msgstr "" -"\n" -"\t\tCreate a RoleBinding for a particular Role or ClusterRole." - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:41 msgid "" "\n" "\t\tCreate a TLS secret from the given public/private key pair.\n" "\n" -"\t\tThe public/private key pair must exist before hand. The public key " +"\t\tThe public/private key pair must exist beforehand. The public key " "certificate must be .PEM encoded and match\n" "\t\tthe given private key." msgstr "" "\n" "\t\tCreate a TLS secret from the given public/private key pair.\n" "\n" -"\t\tThe public/private key pair must exist before hand. The public key " +"\t\tThe public/private key pair must exist beforehand. The public key " "certificate must be .PEM encoded and match\n" "\t\tthe given private key." +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:41 +msgid "" +"\n" +"\t\tCreate a cluster role binding for a particular cluster role." +msgstr "" +"\n" +"\t\tCreate a cluster role binding for a particular cluster role." + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38 +msgid "" +"\n" +"\t\tCreate a cluster role." +msgstr "" +"\n" +"\t\tCreate a cluster role." + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:46 msgid "" "\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " +"\t\tCreate a config map based on a file, directory, or specified literal " "value.\n" "\n" -"\t\tA single configmap may package one or more key/value pairs.\n" +"\t\tA single config map may package one or more key/value pairs.\n" "\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " +"\t\tWhen creating a config map based on a file, the key will default to the " "basename of the file, and the value will\n" "\t\tdefault to the file content. If the basename is an invalid key, you may " "specify an alternate key.\n" "\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" +"\t\tWhen creating a config map based on a directory, each file whose " +"basename is a valid key in the directory will be\n" +"\t\tpackaged into the config map. Any directory entries except regular " +"files are ignored (e.g. subdirectories,\n" "\t\tsymlinks, devices, pipes, etc)." msgstr "" "\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " +"\t\tCreate a config map based on a file, directory, or specified literal " "value.\n" "\n" -"\t\tA single configmap may package one or more key/value pairs.\n" +"\t\tA single config map may package one or more key/value pairs.\n" "\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " +"\t\tWhen creating a config map based on a file, the key will default to the " "basename of the file, and the value will\n" "\t\tdefault to the file content. If the basename is an invalid key, you may " "specify an alternate key.\n" "\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" +"\t\tWhen creating a config map based on a directory, each file whose " +"basename is a valid key in the directory will be\n" +"\t\tpackaged into the config map. Any directory entries except regular " +"files are ignored (e.g. subdirectories,\n" "\t\tsymlinks, devices, pipes, etc)." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_cronjob.go:42 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_cronjob.go:40 msgid "" "\n" -"\t\tCreate a cronjob with the specified name." +"\t\tCreate a cron job with the specified name." msgstr "" "\n" -"\t\tCreate a cronjob with the specified name." +"\t\tCreate a cron job with the specified name." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:41 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:40 msgid "" "\n" "\t\tCreate a job with the specified name." @@ -2062,7 +2074,7 @@ msgid "" "\n" "\t\tWhen creating applications, you may have a Docker registry that requires " "authentication. In order for the\n" -"\t\tnodes to pull images on your behalf, they have to have the credentials. " +"\t\tnodes to pull images on your behalf, they must have the credentials. " "You can provide this information\n" "\t\tby creating a dockercfg secret and attaching it to your service account." msgstr "" @@ -2082,30 +2094,29 @@ msgstr "" "\n" "\t\tWhen creating applications, you may have a Docker registry that requires " "authentication. In order for the\n" -"\t\tnodes to pull images on your behalf, they have to have the credentials. " +"\t\tnodes to pull images on your behalf, they must have the credentials. " "You can provide this information\n" "\t\tby creating a dockercfg secret and attaching it to your service account." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:41 msgid "" "\n" "\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" +"desired minimum available pods." msgstr "" "\n" "\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" +"desired minimum available pods." #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:40 msgid "" "\n" -"\t\tCreate a priorityclass with the specified name, value, globalDefault and " -"description" +"\t\tCreate a priority class with the specified name, value, globalDefault " +"and description." msgstr "" "\n" -"\t\tCreate a priorityclass with the specified name, value, globalDefault and " -"description" +"\t\tCreate a priority class with the specified name, value, globalDefault " +"and description." #: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:71 msgid "" @@ -2119,16 +2130,23 @@ msgstr "" "\n" "\t\tJSON and YAML formats are accepted." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:41 msgid "" "\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" +"\t\tCreate a resource quota with the specified name, hard limits, and " +"optional scopes." msgstr "" "\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" +"\t\tCreate a resource quota with the specified name, hard limits, and " +"optional scopes." + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40 +msgid "" +"\n" +"\t\tCreate a role binding for a particular role or cluster role." +msgstr "" +"\n" +"\t\tCreate a role binding for a particular role or cluster role." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:43 @@ -2189,42 +2207,42 @@ msgid "" "\n" "\t\tCreates a proxy server or application-level gateway between localhost " "and\n" -"\t\tthe Kubernetes API Server. It also allows serving static content over " +"\t\tthe Kubernetes API server. It also allows serving static content over " "specified\n" "\t\tHTTP path. All incoming data enters through one port and gets forwarded " "to\n" -"\t\tthe remote kubernetes API Server port, except for the path matching the " +"\t\tthe remote Kubernetes API server port, except for the path matching the " "static content path." msgstr "" "\n" "\t\tCreates a proxy server or application-level gateway between localhost " "and\n" -"\t\tthe Kubernetes API Server. It also allows serving static content over " +"\t\tthe Kubernetes API server. It also allows serving static content over " "specified\n" "\t\tHTTP path. All incoming data enters through one port and gets forwarded " "to\n" -"\t\tthe remote kubernetes API Server port, except for the path matching the " +"\t\tthe remote Kubernetes API server port, except for the path matching the " "static content path." #: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:42 msgid "" "\n" "\t\tCreates an autoscaler that automatically chooses and sets the number of " -"pods that run in a kubernetes cluster.\n" +"pods that run in a Kubernetes cluster.\n" "\n" -"\t\tLooks up a Deployment, ReplicaSet, StatefulSet, or ReplicationController " -"by name and creates an autoscaler that uses the given resource as a " -"reference.\n" +"\t\tLooks up a deployment, replica set, stateful set, or replication " +"controller by name and creates an autoscaler that uses the given resource as " +"a reference.\n" "\t\tAn autoscaler can automatically increase or decrease number of pods " "deployed within the system as needed." msgstr "" "\n" "\t\tCreates an autoscaler that automatically chooses and sets the number of " -"pods that run in a kubernetes cluster.\n" +"pods that run in a Kubernetes cluster.\n" "\n" -"\t\tLooks up a Deployment, ReplicaSet, StatefulSet, or ReplicationController " -"by name and creates an autoscaler that uses the given resource as a " -"reference.\n" +"\t\tLooks up a deployment, replica set, stateful set, or replication " +"controller by name and creates an autoscaler that uses the given resource as " +"a reference.\n" "\t\tAn autoscaler can automatically increase or decrease number of pods " "deployed within the system as needed." @@ -2274,14 +2292,14 @@ msgstr "" "access\n" "\t\t the node's filesystem.\n" -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:44 +#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:45 msgid "" "\n" -"\t\tDelete resources by filenames, stdin, resources and names, or by " +"\t\tDelete resources by file names, stdin, resources and names, or by " "resources and label selector.\n" "\n" -"\t\tJSON and YAML formats are accepted. Only one type of the arguments may " -"be specified: filenames,\n" +"\t\tJSON and YAML formats are accepted. Only one type of argument may be " +"specified: file names,\n" "\t\tresources and names, or resources and label selector.\n" "\n" "\t\tSome resources, such as pods, support graceful deletion. These resources " @@ -2297,7 +2315,8 @@ msgid "" "\t\tthan the grace period. To force delete a resource, you must specify the " "--force flag.\n" "\t\tNote: only a subset of resources support graceful deletion. In absence " -"of the support, --grace-period is ignored.\n" +"of the support,\n" +"\t\tthe --grace-period flag is ignored.\n" "\n" "\t\tIMPORTANT: Force deleting pods does not wait for confirmation that the " "pod's processes have been\n" @@ -2313,8 +2332,8 @@ msgid "" "sure the pod is\n" "\t\tterminated, or if your application can tolerate multiple copies of the " "same pod running at once.\n" -"\t\tAlso, if you force delete pods the scheduler may place new pods on those " -"nodes before the node\n" +"\t\tAlso, if you force delete pods, the scheduler may place new pods on " +"those nodes before the node\n" "\t\thas released those resources and causing those pods to be evicted " "immediately.\n" "\n" @@ -2325,11 +2344,11 @@ msgid "" "\t\trest of the resource." msgstr "" "\n" -"\t\tDelete resources by filenames, stdin, resources and names, or by " +"\t\tDelete resources by file names, stdin, resources and names, or by " "resources and label selector.\n" "\n" -"\t\tJSON and YAML formats are accepted. Only one type of the arguments may " -"be specified: filenames,\n" +"\t\tJSON and YAML formats are accepted. Only one type of argument may be " +"specified: file names,\n" "\t\tresources and names, or resources and label selector.\n" "\n" "\t\tSome resources, such as pods, support graceful deletion. These resources " @@ -2345,7 +2364,8 @@ msgstr "" "\t\tthan the grace period. To force delete a resource, you must specify the " "--force flag.\n" "\t\tNote: only a subset of resources support graceful deletion. In absence " -"of the support, --grace-period is ignored.\n" +"of the support,\n" +"\t\tthe --grace-period flag is ignored.\n" "\n" "\t\tIMPORTANT: Force deleting pods does not wait for confirmation that the " "pod's processes have been\n" @@ -2361,8 +2381,8 @@ msgstr "" "sure the pod is\n" "\t\tterminated, or if your application can tolerate multiple copies of the " "same pod running at once.\n" -"\t\tAlso, if you force delete pods the scheduler may place new pods on those " -"nodes before the node\n" +"\t\tAlso, if you force delete pods, the scheduler may place new pods on " +"those nodes before the node\n" "\t\thas released those resources and causing those pods to be evicted " "immediately.\n" "\n" @@ -2372,7 +2392,7 @@ msgstr "" "be lost along with the\n" "\t\trest of the resource." -#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:171 +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:175 msgid "" "\n" "\t\tDeny a certificate signing request.\n" @@ -2395,11 +2415,11 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:53 msgid "" "\n" -"\t\tDiff configurations specified by filename or stdin between the current " +"\t\tDiff configurations specified by file name or stdin between the current " "online\n" "\t\tconfiguration, and the configuration as it would be if applied.\n" "\n" -"\t\tOutput is always YAML.\n" +"\t\tThe output is always YAML.\n" "\n" "\t\tKUBECTL_EXTERNAL_DIFF environment variable can be used to select your " "own\n" @@ -2407,8 +2427,8 @@ msgid "" "\t\tKUBECTL_EXTERNAL_DIFF=\"colordiff -N -u\"\n" "\n" "\t\tBy default, the \"diff\" command available in your path will be\n" -"\t\trun with \"-u\" (unified diff) and \"-N\" (treat absent files as empty) " -"options.\n" +"\t\trun with the \"-u\" (unified diff) and \"-N\" (treat absent files as " +"empty) options.\n" "\n" "\t\tExit status:\n" "\t\t 0\n" @@ -2422,11 +2442,11 @@ msgid "" "convention." msgstr "" "\n" -"\t\tDiff configurations specified by filename or stdin between the current " +"\t\tDiff configurations specified by file name or stdin between the current " "online\n" "\t\tconfiguration, and the configuration as it would be if applied.\n" "\n" -"\t\tOutput is always YAML.\n" +"\t\tThe output is always YAML.\n" "\n" "\t\tKUBECTL_EXTERNAL_DIFF environment variable can be used to select your " "own\n" @@ -2434,8 +2454,8 @@ msgstr "" "\t\tKUBECTL_EXTERNAL_DIFF=\"colordiff -N -u\"\n" "\n" "\t\tBy default, the \"diff\" command available in your path will be\n" -"\t\trun with \"-u\" (unified diff) and \"-N\" (treat absent files as empty) " -"options.\n" +"\t\trun with the \"-u\" (unified diff) and \"-N\" (treat absent files as " +"empty) options.\n" "\n" "\t\tExit status:\n" "\t\t 0\n" @@ -2448,40 +2468,6 @@ msgstr "" "\t\tNote: KUBECTL_EXTERNAL_DIFF, if used, is expected to follow that " "convention." -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:57 -msgid "" -"\n" -"\t\tDisplay Resource (CPU/Memory) usage of nodes.\n" -"\n" -"\t\tThe top-node command allows you to see the resource consumption of nodes." -msgstr "" -"\n" -"\t\tDisplay Resource (CPU/Memory) usage of nodes.\n" -"\n" -"\t\tThe top-node command allows you to see the resource consumption of nodes." - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:64 -msgid "" -"\n" -"\t\tDisplay Resource (CPU/Memory) usage of pods.\n" -"\n" -"\t\tThe 'top pod' command allows you to see the resource consumption of " -"pods.\n" -"\n" -"\t\tDue to the metrics pipeline delay, they may be unavailable for a few " -"minutes\n" -"\t\tsince pod creation." -msgstr "" -"\n" -"\t\tDisplay Resource (CPU/Memory) usage of pods.\n" -"\n" -"\t\tThe 'top pod' command allows you to see the resource consumption of " -"pods.\n" -"\n" -"\t\tDue to the metrics pipeline delay, they may be unavailable for a few " -"minutes\n" -"\t\tsince pod creation." - #: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:39 msgid "" "\n" @@ -2516,10 +2502,10 @@ msgstr "" "\t\tYou can use --output jsonpath={...} to extract specific values using a " "jsonpath expression." -#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:88 +#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:92 msgid "" "\n" -"\t\tDisplay one or many resources\n" +"\t\tDisplay one or many resources.\n" "\n" "\t\tPrints a table of the most important information about the specified " "resources.\n" @@ -2538,7 +2524,7 @@ msgid "" "resources." msgstr "" "\n" -"\t\tDisplay one or many resources\n" +"\t\tDisplay one or many resources.\n" "\n" "\t\tPrints a table of the most important information about the specified " "resources.\n" @@ -2556,37 +2542,72 @@ msgstr "" "\t\tof the --template flag, you can filter the attributes of the fetched " "resources." +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:57 +msgid "" +"\n" +"\t\tDisplay resource (CPU/memory) usage of nodes.\n" +"\n" +"\t\tThe top-node command allows you to see the resource consumption of nodes." +msgstr "" +"\n" +"\t\tDisplay resource (CPU/memory) usage of nodes.\n" +"\n" +"\t\tThe top-node command allows you to see the resource consumption of nodes." + +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:67 +msgid "" +"\n" +"\t\tDisplay resource (CPU/memory) usage of pods.\n" +"\n" +"\t\tThe 'top pod' command allows you to see the resource consumption of " +"pods.\n" +"\n" +"\t\tDue to the metrics pipeline delay, they may be unavailable for a few " +"minutes\n" +"\t\tsince pod creation." +msgstr "" +"\n" +"\t\tDisplay resource (CPU/memory) usage of pods.\n" +"\n" +"\t\tThe 'top pod' command allows you to see the resource consumption of " +"pods.\n" +"\n" +"\t\tDue to the metrics pipeline delay, they may be unavailable for a few " +"minutes\n" +"\t\tsince pod creation." + #: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:37 msgid "" "\n" -"\t\tDisplays the current-context" +"\t\tDisplay the current-context." msgstr "" "\n" -"\t\tDisplays the current-context" +"\t\tDisplay the current-context." -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:110 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:113 msgid "" "\n" "\t\tDrain node in preparation for maintenance.\n" "\n" "\t\tThe given node will be marked unschedulable to prevent new pods from " "arriving.\n" -"\t\t'drain' evicts the pods if the APIServer supports\n" -"\t\t[eviction](http://kubernetes.io/docs/admin/disruptions/). Otherwise, it " -"will use normal\n" +"\t\t'drain' evicts the pods if the API server supports\n" +"\t\t[eviction](https://kubernetes.io/docs/concepts/workloads/pods/" +"disruptions/). Otherwise, it will use normal\n" "\t\tDELETE to delete the pods.\n" "\t\tThe 'drain' evicts or deletes all pods except mirror pods (which cannot " "be deleted through\n" -"\t\tthe API server). If there are DaemonSet-managed pods, drain will not " +"\t\tthe API server). If there are daemon set-managed pods, drain will not " "proceed\n" "\t\twithout --ignore-daemonsets, and regardless it will not delete any\n" -"\t\tDaemonSet-managed pods, because those pods would be immediately replaced " -"by the\n" -"\t\tDaemonSet controller, which ignores unschedulable markings. If there " +"\t\tdaemon set-managed pods, because those pods would be immediately " +"replaced by the\n" +"\t\tdaemon set controller, which ignores unschedulable markings. If there " "are any\n" -"\t\tpods that are neither mirror pods nor managed by ReplicationController,\n" -"\t\tReplicaSet, DaemonSet, StatefulSet or Job, then drain will not delete " -"any pods unless you\n" +"\t\tpods that are neither mirror pods nor managed by a replication " +"controller,\n" +"\t\treplica set, daemon set, stateful set, or job, then drain will not " +"delete any pods unless you\n" "\t\tuse --force. --force will also allow deletion to proceed if the " "managing resource of one\n" "\t\tor more pods is missing.\n" @@ -2599,29 +2620,30 @@ msgid "" "uncordon, which\n" "\t\twill make the node schedulable again.\n" "\n" -"\t\t![Workflow](http://kubernetes.io/images/docs/kubectl_drain.svg)" +"\t\t![Workflow](https://kubernetes.io/images/docs/kubectl_drain.svg)" msgstr "" "\n" "\t\tDrain node in preparation for maintenance.\n" "\n" "\t\tThe given node will be marked unschedulable to prevent new pods from " "arriving.\n" -"\t\t'drain' evicts the pods if the APIServer supports\n" -"\t\t[eviction](http://kubernetes.io/docs/admin/disruptions/). Otherwise, it " -"will use normal\n" +"\t\t'drain' evicts the pods if the API server supports\n" +"\t\t[eviction](https://kubernetes.io/docs/concepts/workloads/pods/" +"disruptions/). Otherwise, it will use normal\n" "\t\tDELETE to delete the pods.\n" "\t\tThe 'drain' evicts or deletes all pods except mirror pods (which cannot " "be deleted through\n" -"\t\tthe API server). If there are DaemonSet-managed pods, drain will not " +"\t\tthe API server). If there are daemon set-managed pods, drain will not " "proceed\n" "\t\twithout --ignore-daemonsets, and regardless it will not delete any\n" -"\t\tDaemonSet-managed pods, because those pods would be immediately replaced " -"by the\n" -"\t\tDaemonSet controller, which ignores unschedulable markings. If there " +"\t\tdaemon set-managed pods, because those pods would be immediately " +"replaced by the\n" +"\t\tdaemon set controller, which ignores unschedulable markings. If there " "are any\n" -"\t\tpods that are neither mirror pods nor managed by ReplicationController,\n" -"\t\tReplicaSet, DaemonSet, StatefulSet or Job, then drain will not delete " -"any pods unless you\n" +"\t\tpods that are neither mirror pods nor managed by a replication " +"controller,\n" +"\t\treplica set, daemon set, stateful set, or job, then drain will not " +"delete any pods unless you\n" "\t\tuse --force. --force will also allow deletion to proceed if the " "managing resource of one\n" "\t\tor more pods is missing.\n" @@ -2634,22 +2656,22 @@ msgstr "" "uncordon, which\n" "\t\twill make the node schedulable again.\n" "\n" -"\t\t![Workflow](http://kubernetes.io/images/docs/kubectl_drain.svg)" +"\t\t![Workflow](https://kubernetes.io/images/docs/kubectl_drain.svg)" -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:30 +#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:31 msgid "" "\n" "\t\tEdit a resource from the default editor.\n" "\n" "\t\tThe edit command allows you to directly edit any API resource you can " "retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " +"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, " "or EDITOR\n" "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " "Windows.\n" "\t\tYou can edit multiple objects, although changes are applied one at a " "time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " +"\t\taccepts file names as well as command-line arguments, although the files " "you point to must\n" "\t\tbe previously saved versions of resources.\n" "\n" @@ -2678,13 +2700,13 @@ msgstr "" "\n" "\t\tThe edit command allows you to directly edit any API resource you can " "retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " +"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, " "or EDITOR\n" "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " "Windows.\n" "\t\tYou can edit multiple objects, although changes are applied one at a " "time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " +"\t\taccepts file names as well as command-line arguments, although the files " "you point to must\n" "\t\tbe previously saved versions of resources.\n" "\n" @@ -2708,7 +2730,7 @@ msgstr "" "your temporary\n" "\t\tsaved copy to include the latest resource version." -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_edit_last_applied.go:30 +#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_edit_last_applied.go:31 msgid "" "\n" "\t\tEdit the latest last-applied-configuration annotations of resources from " @@ -2716,13 +2738,13 @@ msgid "" "\n" "\t\tThe edit-last-applied command allows you to directly edit any API " "resource you can retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " +"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, " "or EDITOR\n" "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " "Windows.\n" "\t\tYou can edit multiple objects, although changes are applied one at a " "time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " +"\t\taccepts file names as well as command-line arguments, although the files " "you point to must\n" "\t\tbe previously saved versions of resources.\n" "\n" @@ -2748,13 +2770,13 @@ msgstr "" "\n" "\t\tThe edit-last-applied command allows you to directly edit any API " "resource you can retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " +"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, " "or EDITOR\n" "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " "Windows.\n" "\t\tYou can edit multiple objects, although changes are applied one at a " "time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " +"\t\taccepts file names as well as command-line arguments, although the files " "you point to must\n" "\t\tbe previously saved versions of resources.\n" "\n" @@ -2789,7 +2811,7 @@ msgid "" "\n" "\t\tA successful message will be printed to stdout indicating when the " "specified\n" -" condition has been met. One can use -o option to change to output " +" condition has been met. You can use -o option to change to output " "destination." msgstr "" "\n" @@ -2805,7 +2827,7 @@ msgstr "" "\n" "\t\tA successful message will be printed to stdout indicating when the " "specified\n" -" condition has been met. One can use -o option to change to output " +" condition has been met. You can use -o option to change to output " "destination." #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:47 @@ -2871,7 +2893,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:35 msgid "" "\n" -"\t\tList the fields for supported resources\n" +"\t\tList the fields for supported resources.\n" "\n" "\t\tThis command describes the fields associated with each supported API " "resource.\n" @@ -2885,7 +2907,7 @@ msgid "" "format." msgstr "" "\n" -"\t\tList the fields for supported resources\n" +"\t\tList the fields for supported resources.\n" "\n" "\t\tThis command describes the fields associated with each supported API " "resource.\n" @@ -2907,7 +2929,7 @@ msgstr "" "\t\tManage the rollout of a resource." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L127 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:84 msgid "" "\n" "\t\tMark node as schedulable." @@ -2916,7 +2938,7 @@ msgstr "" "\t\tMark node as schedulable." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:54 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:55 msgid "" "\n" "\t\tMark node as unschedulable." @@ -2924,23 +2946,23 @@ msgstr "" "\n" "\t\tMark node as unschedulable." -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:56 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:57 msgid "" "\n" -"\t\tMark the provided resource as paused\n" +"\t\tMark the provided resource as paused.\n" "\n" "\t\tPaused resources will not be reconciled by a controller.\n" "\t\tUse \"kubectl rollout resume\" to resume a paused resource.\n" "\t\tCurrently only deployments support being paused." msgstr "" "\n" -"\t\tMark the provided resource as paused\n" +"\t\tMark the provided resource as paused.\n" "\n" "\t\tPaused resources will not be reconciled by a controller.\n" "\t\tUse \"kubectl rollout resume\" to resume a paused resource.\n" "\t\tCurrently only deployments support being paused." -#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:47 +#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:46 msgid "" "\n" "\t\tOutput shell completion code for the specified shell (bash or zsh).\n" @@ -2963,7 +2985,7 @@ msgid "" "#enable-shell-autocompletion\n" "\n" "\t\tNote for zsh users: [1] zsh completions are only supported in versions " -"of zsh >= 5.2" +"of zsh >= 5.2." msgstr "" "\n" "\t\tOutput shell completion code for the specified shell (bash or zsh).\n" @@ -2986,7 +3008,7 @@ msgstr "" "#enable-shell-autocompletion\n" "\n" "\t\tNote for zsh users: [1] zsh completions are only supported in versions " -"of zsh >= 5.2" +"of zsh >= 5.2." #: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:49 msgid "" @@ -3026,32 +3048,32 @@ msgstr "" "\t\tTo install krew, visit [krew.sigs.k8s.io](https://krew.sigs.k8s.io/docs/" "user-guide/setup/install/)" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/rename_context.go:46 +#: staging/src/k8s.io/kubectl/pkg/cmd/config/rename_context.go:47 msgid "" "\n" "\t\tRenames a context from the kubeconfig file.\n" "\n" -"\t\tCONTEXT_NAME is the context name that you wish to change.\n" +"\t\tCONTEXT_NAME is the context name that you want to change.\n" "\n" -"\t\tNEW_NAME is the new name you wish to set.\n" +"\t\tNEW_NAME is the new name you want to set.\n" "\n" -"\t\tNote: In case the context being renamed is the 'current-context', this " -"field will also be updated." +"\t\tNote: If the context being renamed is the 'current-context', this field " +"will also be updated." msgstr "" "\n" "\t\tRenames a context from the kubeconfig file.\n" "\n" -"\t\tCONTEXT_NAME is the context name that you wish to change.\n" +"\t\tCONTEXT_NAME is the context name that you want to change.\n" "\n" -"\t\tNEW_NAME is the new name you wish to set.\n" +"\t\tNEW_NAME is the new name you want to set.\n" "\n" -"\t\tNote: In case the context being renamed is the 'current-context', this " -"field will also be updated." +"\t\tNote: If the context being renamed is the 'current-context', this field " +"will also be updated." #: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:48 msgid "" "\n" -"\t\tReplace a resource by filename or stdin.\n" +"\t\tReplace a resource by file name or stdin.\n" "\n" "\t\tJSON and YAML formats are accepted. If replacing an existing resource, " "the\n" @@ -3060,7 +3082,7 @@ msgid "" "\t\t $ kubectl get TYPE NAME -o yaml" msgstr "" "\n" -"\t\tReplace a resource by filename or stdin.\n" +"\t\tReplace a resource by file name or stdin.\n" "\n" "\t\tJSON and YAML formats are accepted. If replacing an existing resource, " "the\n" @@ -3068,47 +3090,75 @@ msgstr "" "\n" "\t\t $ kubectl get TYPE NAME -o yaml" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_restart.go:56 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_restart.go:57 msgid "" "\n" "\t\tRestart a resource.\n" "\n" -"\t Resource will be rollout restarted." +"\t Resource rollout will be restarted." msgstr "" "\n" "\t\tRestart a resource.\n" "\n" -"\t Resource will be rollout restarted." +"\t Resource rollout will be restarted." -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:57 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:58 msgid "" "\n" -"\t\tResume a paused resource\n" +"\t\tResume a paused resource.\n" "\n" "\t\tPaused resources will not be reconciled by a controller. By resuming a\n" "\t\tresource, we allow it to be reconciled again.\n" "\t\tCurrently only deployments support being resumed." msgstr "" "\n" -"\t\tResume a paused resource\n" +"\t\tResume a paused resource.\n" "\n" "\t\tPaused resources will not be reconciled by a controller. By resuming a\n" "\t\tresource, we allow it to be reconciled again.\n" "\t\tCurrently only deployments support being resumed." -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:54 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:55 msgid "" "\n" -"\t\tRollback to a previous rollout." +"\t\tRoll back to a previous rollout." msgstr "" "\n" -"\t\tRollback to a previous rollout." +"\t\tRoll back to a previous rollout." -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:39 +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:47 msgid "" "\n" -"\t\tSet a new size for a Deployment, ReplicaSet, Replication Controller, or " -"StatefulSet.\n" +"\t\tSet a cluster entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values for those fields." +msgstr "" +"\n" +"\t\tSet a cluster entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values for those fields." + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:44 +msgid "" +"\n" +"\t\tSet a context entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values for those fields." +msgstr "" +"\n" +"\t\tSet a context entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values for those fields." + +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:40 +msgid "" +"\n" +"\t\tSet a new size for a deployment, replica set, replication controller, or " +"stateful set.\n" "\n" "\t\tScale also allows users to specify one or more preconditions for the " "scale action.\n" @@ -3120,8 +3170,8 @@ msgid "" "\t\tscale is sent to the server." msgstr "" "\n" -"\t\tSet a new size for a Deployment, ReplicaSet, Replication Controller, or " -"StatefulSet.\n" +"\t\tSet a new size for a deployment, replica set, replication controller, or " +"stateful set.\n" "\n" "\t\tScale also allows users to specify one or more preconditions for the " "scale action.\n" @@ -3132,6 +3182,43 @@ msgstr "" "true when the\n" "\t\tscale is sent to the server." +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:70 +#, c-format +msgid "" +"\n" +"\t\tSet a user entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values.\n" +"\n" +"\t\t Client-certificate flags:\n" +"\t\t --%v=certfile --%v=keyfile\n" +"\n" +"\t\t Bearer token flags:\n" +"\t\t\t --%v=bearer_token\n" +"\n" +"\t\t Basic auth flags:\n" +"\t\t\t --%v=basic_user --%v=basic_password\n" +"\n" +"\t\tBearer token and basic auth are mutually exclusive." +msgstr "" +"\n" +"\t\tSet a user entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values.\n" +"\n" +"\t\t Client-certificate flags:\n" +"\t\t --%v=certfile --%v=keyfile\n" +"\n" +"\t\t Bearer token flags:\n" +"\t\t\t --%v=bearer_token\n" +"\n" +"\t\t Basic auth flags:\n" +"\t\t\t --%v=basic_user --%v=basic_password\n" +"\n" +"\t\tBearer token and basic auth are mutually exclusive." + #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:70 msgid "" "\n" @@ -3173,75 +3260,10 @@ msgstr "" "version, otherwise the existing resource-version will be used.\n" " Note: currently selectors can only be set on Service objects." -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:47 +#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:39 msgid "" "\n" -"\t\tSets a cluster entry in kubeconfig.\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values for those fields." -msgstr "" -"\n" -"\t\tSets a cluster entry in kubeconfig.\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values for those fields." - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:44 -msgid "" -"\n" -"\t\tSets a context entry in kubeconfig\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values for those fields." -msgstr "" -"\n" -"\t\tSets a context entry in kubeconfig\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values for those fields." - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:70 -#, c-format -msgid "" -"\n" -"\t\tSets a user entry in kubeconfig\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values.\n" -"\n" -"\t\t Client-certificate flags:\n" -"\t\t --%v=certfile --%v=keyfile\n" -"\n" -"\t\t Bearer token flags:\n" -"\t\t\t --%v=bearer_token\n" -"\n" -"\t\t Basic auth flags:\n" -"\t\t\t --%v=basic_user --%v=basic_password\n" -"\n" -"\t\tBearer token and basic auth are mutually exclusive." -msgstr "" -"\n" -"\t\tSets a user entry in kubeconfig\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values.\n" -"\n" -"\t\t Client-certificate flags:\n" -"\t\t --%v=certfile --%v=keyfile\n" -"\n" -"\t\t Bearer token flags:\n" -"\t\t\t --%v=bearer_token\n" -"\n" -"\t\t Basic auth flags:\n" -"\t\t\t --%v=basic_user --%v=basic_password\n" -"\n" -"\t\tBearer token and basic auth are mutually exclusive." - -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:38 -msgid "" -"\n" -"\t\tShow details of a specific resource or group of resources\n" +"\t\tShow details of a specific resource or group of resources.\n" "\n" "\t\tPrint a detailed description of the selected resources, including " "related resources such\n" @@ -3257,7 +3279,7 @@ msgid "" "prefixed with NAME_PREFIX." msgstr "" "\n" -"\t\tShow details of a specific resource or group of resources\n" +"\t\tShow details of a specific resource or group of resources.\n" "\n" "\t\tPrint a detailed description of the selected resources, including " "related resources such\n" @@ -3272,7 +3294,7 @@ msgstr "" "\t\texists, it will output details for every resource that has a name " "prefixed with NAME_PREFIX." -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:46 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:47 msgid "" "\n" "\t\tShow the status of the rollout.\n" @@ -3306,23 +3328,23 @@ msgstr "" #, c-format msgid "" "\n" -"\t\tSpecify compute resource requirements (cpu, memory) for any resource " +"\t\tSpecify compute resource requirements (CPU, memory) for any resource " "that defines a pod template. If a pod is successfully scheduled, it is " "guaranteed the amount of resource requested, but may burst up to its " "specified limits.\n" "\n" -"\t\tfor each compute resource, if a limit is specified and a request is " +"\t\tFor each compute resource, if a limit is specified and a request is " "omitted, the request will default to the limit.\n" "\n" "\t\tPossible resources include (case insensitive): %s." msgstr "" "\n" -"\t\tSpecify compute resource requirements (cpu, memory) for any resource " +"\t\tSpecify compute resource requirements (CPU, memory) for any resource " "that defines a pod template. If a pod is successfully scheduled, it is " "guaranteed the amount of resource requested, but may burst up to its " "specified limits.\n" "\n" -"\t\tfor each compute resource, if a limit is specified and a request is " +"\t\tFor each compute resource, if a limit is specified and a request is " "omitted, the request will default to the limit.\n" "\n" "\t\tPossible resources include (case insensitive): %s." @@ -3383,24 +3405,24 @@ msgstr "" "\t\tPossible resources include (case insensitive):\n" "\t\t" -#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:77 +#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:78 msgid "" "\n" -"\t\tUpdate field(s) of a resource using strategic merge patch, a JSON merge " +"\t\tUpdate fields of a resource using strategic merge patch, a JSON merge " "patch, or a JSON patch.\n" "\n" "\t\tJSON and YAML formats are accepted." msgstr "" "\n" -"\t\tUpdate field(s) of a resource using strategic merge patch, a JSON merge " +"\t\tUpdate fields of a resource using strategic merge patch, a JSON merge " "patch, or a JSON patch.\n" "\n" "\t\tJSON and YAML formats are accepted." -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:83 msgid "" "\n" -"\t\tUpdate the annotations on one or more resources\n" +"\t\tUpdate the annotations on one or more resources.\n" "\n" "\t\tAll Kubernetes objects support the ability to store additional data with " "the object as\n" @@ -3417,7 +3439,7 @@ msgid "" "\t\tthe server the command will fail." msgstr "" "\n" -"\t\tUpdate the annotations on one or more resources\n" +"\t\tUpdate the annotations on one or more resources.\n" "\n" "\t\tAll Kubernetes objects support the ability to store additional data with " "the object as\n" @@ -3433,7 +3455,7 @@ msgstr "" "resource version on\n" "\t\tthe server the command will fail." -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:87 #, c-format msgid "" "\n" @@ -3443,7 +3465,7 @@ msgid "" "contain letters, numbers, hyphens, dots, and underscores, up to %[1]d " "characters each.\n" "\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single " -"'/', like example.com/my-app\n" +"'/', like example.com/my-app.\n" "\t\t* If --overwrite is true, then existing labels can be overwritten, " "otherwise attempting to overwrite a label will result in an error.\n" "\t\t* If --resource-version is specified, then updates will use this " @@ -3456,13 +3478,13 @@ msgstr "" "contain letters, numbers, hyphens, dots, and underscores, up to %[1]d " "characters each.\n" "\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single " -"'/', like example.com/my-app\n" +"'/', like example.com/my-app.\n" "\t\t* If --overwrite is true, then existing labels can be overwritten, " "otherwise attempting to overwrite a label will result in an error.\n" "\t\t* If --resource-version is specified, then updates will use this " "resource version, otherwise the existing resource-version will be used." -#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:69 +#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:70 #, c-format msgid "" "\n" @@ -3473,7 +3495,7 @@ msgid "" "\t\t* The key must begin with a letter or number, and may contain letters, " "numbers, hyphens, dots, and underscores, up to %[1]d characters.\n" "\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single " -"'/', like example.com/my-app\n" +"'/', like example.com/my-app.\n" "\t\t* The value is optional. If given, it must begin with a letter or " "number, and may contain letters, numbers, hyphens, dots, and underscores, up " "to %[2]d characters.\n" @@ -3488,14 +3510,14 @@ msgstr "" "\t\t* The key must begin with a letter or number, and may contain letters, " "numbers, hyphens, dots, and underscores, up to %[1]d characters.\n" "\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single " -"'/', like example.com/my-app\n" +"'/', like example.com/my-app.\n" "\t\t* The value is optional. If given, it must begin with a letter or " "number, and may contain letters, numbers, hyphens, dots, and underscores, up " "to %[2]d characters.\n" "\t\t* The effect must be NoSchedule, PreferNoSchedule or NoExecute.\n" "\t\t* Currently taint can only apply to node." -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:35 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:36 msgid "" "\n" "\t\tView previous rollout revisions and configurations." @@ -3509,27 +3531,27 @@ msgid "" "\t\tView the latest last-applied-configuration annotations by type/name or " "file.\n" "\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." +"\t\tThe default output will be printed to stdout in YAML format. You can use " +"the -o option\n" +"\t\tto change the output format." msgstr "" "\n" "\t\tView the latest last-applied-configuration annotations by type/name or " "file.\n" "\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." +"\t\tThe default output will be printed to stdout in YAML format. You can use " +"the -o option\n" +"\t\tto change the output format." #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:47 msgid "" "\n" -"\t # Create a new TLS secret named tls-secret with the given key pair:\n" +"\t # Create a new TLS secret named tls-secret with the given key pair\n" "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" "to/tls.key" msgstr "" "\n" -"\t # Create a new TLS secret named tls-secret with the given key pair:\n" +"\t # Create a new TLS secret named tls-secret with the given key pair\n" "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" "to/tls.key" @@ -3604,33 +3626,33 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_deployment.go:45 msgid "" "\n" -"\t# Create a deployment named my-dep that runs the busybox image.\n" +"\t# Create a deployment named my-dep that runs the busybox image\n" "\tkubectl create deployment my-dep --image=busybox\n" "\n" -"\t# Create a deployment with command\n" +"\t# Create a deployment with a command\n" "\tkubectl create deployment my-dep --image=busybox -- date\n" "\n" "\t# Create a deployment named my-dep that runs the nginx image with 3 " -"replicas.\n" +"replicas\n" "\tkubectl create deployment my-dep --image=nginx --replicas=3\n" "\n" "\t# Create a deployment named my-dep that runs the busybox image and expose " -"port 5701.\n" +"port 5701\n" "\tkubectl create deployment my-dep --image=busybox --port=5701" msgstr "" "\n" -"\t# Create a deployment named my-dep that runs the busybox image.\n" +"\t# Create a deployment named my-dep that runs the busybox image\n" "\tkubectl create deployment my-dep --image=busybox\n" "\n" -"\t# Create a deployment with command\n" +"\t# Create a deployment with a command\n" "\tkubectl create deployment my-dep --image=busybox -- date\n" "\n" "\t# Create a deployment named my-dep that runs the nginx image with 3 " -"replicas.\n" +"replicas\n" "\tkubectl create deployment my-dep --image=nginx --replicas=3\n" "\n" "\t# Create a deployment named my-dep that runs the busybox image and expose " -"port 5701.\n" +"port 5701\n" "\tkubectl create deployment my-dep --image=busybox --port=5701" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:351 @@ -3646,21 +3668,21 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:50 msgid "" "\n" -"\t# Set Deployment nginx-deployment's ServiceAccount to serviceaccount1\n" +"\t# Set deployment nginx-deployment's service account to serviceaccount1\n" "\tkubectl set serviceaccount deployment nginx-deployment serviceaccount1\n" "\n" -"\t# Print the result (in yaml format) of updated nginx deployment with " -"serviceaccount from local file, without hitting apiserver\n" +"\t# Print the result (in YAML format) of updated nginx deployment with the " +"service account from local file, without hitting the API server\n" "\tkubectl set sa -f nginx-deployment.yaml serviceaccount1 --local --dry-" "run=client -o yaml\n" "\t" msgstr "" "\n" -"\t# Set Deployment nginx-deployment's ServiceAccount to serviceaccount1\n" +"\t# Set deployment nginx-deployment's service account to serviceaccount1\n" "\tkubectl set serviceaccount deployment nginx-deployment serviceaccount1\n" "\n" -"\t# Print the result (in yaml format) of updated nginx deployment with " -"serviceaccount from local file, without hitting apiserver\n" +"\t# Print the result (in YAML format) of updated nginx deployment with the " +"service account from local file, without hitting the API server\n" "\tkubectl set sa -f nginx-deployment.yaml serviceaccount1 --local --dry-" "run=client -o yaml\n" "\t" @@ -3710,41 +3732,41 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:44 msgid "" "\n" -"\tSets an individual value in a kubeconfig file\n" +"\tSet an individual value in a kubeconfig file.\n" "\n" "\tPROPERTY_NAME is a dot delimited name where each token represents either " "an attribute name or a map key. Map keys may not contain dots.\n" "\n" -"\tPROPERTY_VALUE is the new value you wish to set. Binary fields such as " +"\tPROPERTY_VALUE is the new value you want to set. Binary fields such as " "'certificate-authority-data' expect a base64 encoded string unless the --set-" "raw-bytes flag is used.\n" "\n" -"\tSpecifying a attribute name that already exists will merge new fields on " +"\tSpecifying an attribute name that already exists will merge new fields on " "top of existing values." msgstr "" "\n" -"\tSets an individual value in a kubeconfig file\n" +"\tSet an individual value in a kubeconfig file.\n" "\n" "\tPROPERTY_NAME is a dot delimited name where each token represents either " "an attribute name or a map key. Map keys may not contain dots.\n" "\n" -"\tPROPERTY_VALUE is the new value you wish to set. Binary fields such as " +"\tPROPERTY_VALUE is the new value you want to set. Binary fields such as " "'certificate-authority-data' expect a base64 encoded string unless the --set-" "raw-bytes flag is used.\n" "\n" -"\tSpecifying a attribute name that already exists will merge new fields on " +"\tSpecifying an attribute name that already exists will merge new fields on " "top of existing values." #: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:39 msgid "" "\n" -"\tUnsets an individual value in a kubeconfig file\n" +"\tUnset an individual value in a kubeconfig file.\n" "\n" "\tPROPERTY_NAME is a dot delimited name where each token represents either " "an attribute name or a map key. Map keys may not contain dots." msgstr "" "\n" -"\tUnsets an individual value in a kubeconfig file\n" +"\tUnset an individual value in a kubeconfig file.\n" "\n" "\tPROPERTY_NAME is a dot delimited name where each token represents either " "an attribute name or a map key. Map keys may not contain dots." @@ -3752,14 +3774,14 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:43 msgid "" "\n" -"\tUpdate ServiceAccount of pod template resources.\n" +"\tUpdate the service account of pod template resources.\n" "\n" "\tPossible resources (case insensitive) can be:\n" "\n" "\t" msgstr "" "\n" -"\tUpdate ServiceAccount of pod template resources.\n" +"\tUpdate the service account of pod template resources.\n" "\n" "\tPossible resources (case insensitive) can be:\n" "\n" @@ -3768,10 +3790,12 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_subject.go:40 msgid "" "\n" -"\tUpdate User, Group or ServiceAccount in a RoleBinding/ClusterRoleBinding." +"\tUpdate the user, group, or service account in a role binding or cluster " +"role binding." msgstr "" "\n" -"\tUpdate User, Group or ServiceAccount in a RoleBinding/ClusterRoleBinding." +"\tUpdate the user, group, or service account in a role binding or cluster " +"role binding." #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:68 msgid "" @@ -3786,8 +3810,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/portforward/portforward.go:63 msgid "" "\n" -" Forward one or more local ports to a pod. This command " -"requires the node to have 'socat' installed.\n" +" Forward one or more local ports to a pod.\n" "\n" " Use resource type/name such as deployment/mydeployment to " "select a pod. Resource type defaults to 'pod' if omitted.\n" @@ -3795,12 +3818,11 @@ msgid "" " If there are multiple pods matching the criteria, a pod will " "be selected automatically. The\n" " forwarding session ends when the selected pod terminates, " -"and rerun of the command is needed\n" +"and a rerun of the command is needed\n" " to resume forwarding." msgstr "" "\n" -" Forward one or more local ports to a pod. This command " -"requires the node to have 'socat' installed.\n" +" Forward one or more local ports to a pod.\n" "\n" " Use resource type/name such as deployment/mydeployment to " "select a pod. Resource type defaults to 'pod' if omitted.\n" @@ -3808,7 +3830,7 @@ msgstr "" " If there are multiple pods matching the criteria, a pod will " "be selected automatically. The\n" " forwarding session ends when the selected pod terminates, " -"and rerun of the command is needed\n" +"and a rerun of the command is needed\n" " to resume forwarding." #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:233 @@ -3877,11 +3899,11 @@ msgstr "" " kubectl cluster-info dump --namespaces default,kube-system --output-" "directory=/path/to/cluster-state" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:94 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:95 msgid "" "\n" " # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend'.\n" +"frontend'\n" " # If the same annotation is set multiple times, only the last value will " "be applied\n" " kubectl annotate pods foo description='my frontend'\n" @@ -3890,25 +3912,25 @@ msgid "" " kubectl annotate -f pod.json description='my frontend'\n" "\n" " # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend running nginx', overwriting any existing value.\n" +"frontend running nginx', overwriting any existing value\n" " kubectl annotate --overwrite pods foo description='my frontend running " "nginx'\n" "\n" " # Update all pods in the namespace\n" " kubectl annotate pods --all description='my frontend running nginx'\n" "\n" -" # Update pod 'foo' only if the resource is unchanged from version 1.\n" +" # Update pod 'foo' only if the resource is unchanged from version 1\n" " kubectl annotate pods foo description='my frontend running nginx' --" "resource-version=1\n" "\n" " # Update pod 'foo' by removing an annotation named 'description' if it " -"exists.\n" -" # Does not require the --overwrite flag.\n" +"exists\n" +" # Does not require the --overwrite flag\n" " kubectl annotate pods foo description-" msgstr "" "\n" " # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend'.\n" +"frontend'\n" " # If the same annotation is set multiple times, only the last value will " "be applied\n" " kubectl annotate pods foo description='my frontend'\n" @@ -3917,20 +3939,20 @@ msgstr "" " kubectl annotate -f pod.json description='my frontend'\n" "\n" " # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend running nginx', overwriting any existing value.\n" +"frontend running nginx', overwriting any existing value\n" " kubectl annotate --overwrite pods foo description='my frontend running " "nginx'\n" "\n" " # Update all pods in the namespace\n" " kubectl annotate pods --all description='my frontend running nginx'\n" "\n" -" # Update pod 'foo' only if the resource is unchanged from version 1.\n" +" # Update pod 'foo' only if the resource is unchanged from version 1\n" " kubectl annotate pods foo description='my frontend running nginx' --" "resource-version=1\n" "\n" " # Update pod 'foo' by removing an annotation named 'description' if it " -"exists.\n" -" # Does not require the --overwrite flag.\n" +"exists\n" +" # Does not require the --overwrite flag\n" " kubectl annotate pods foo description-" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:230 @@ -3961,30 +3983,30 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:93 msgid "" "\n" -" Dumps cluster info out suitable for debugging and diagnosing cluster " -"problems. By default, dumps everything to\n" +" Dump cluster information out suitable for debugging and diagnosing " +"cluster problems. By default, dumps everything to\n" " stdout. You can optionally specify a directory with --output-directory. " -"If you specify a directory, kubernetes will\n" -" build a set of files in that directory. By default only dumps things in " -"the current namespace and 'kube-system' namespace, but you can\n" +"If you specify a directory, Kubernetes will\n" +" build a set of files in that directory. By default, only dumps things " +"in the current namespace and 'kube-system' namespace, but you can\n" " switch to a different namespace with the --namespaces flag, or specify --" "all-namespaces to dump all namespaces.\n" "\n" -" The command also dumps the logs of all of the pods in the cluster, these " +" The command also dumps the logs of all of the pods in the cluster; these " "logs are dumped into different directories\n" " based on namespace and pod name." msgstr "" "\n" -" Dumps cluster info out suitable for debugging and diagnosing cluster " -"problems. By default, dumps everything to\n" +" Dump cluster information out suitable for debugging and diagnosing " +"cluster problems. By default, dumps everything to\n" " stdout. You can optionally specify a directory with --output-directory. " -"If you specify a directory, kubernetes will\n" -" build a set of files in that directory. By default only dumps things in " -"the current namespace and 'kube-system' namespace, but you can\n" +"If you specify a directory, Kubernetes will\n" +" build a set of files in that directory. By default, only dumps things " +"in the current namespace and 'kube-system' namespace, but you can\n" " switch to a different namespace with the --namespaces flag, or specify --" "all-namespaces to dump all namespaces.\n" "\n" -" The command also dumps the logs of all of the pods in the cluster, these " +" The command also dumps the logs of all of the pods in the cluster; these " "logs are dumped into different directories\n" " based on namespace and pod name." @@ -3992,13 +4014,13 @@ msgstr "" msgid "" "\n" " Display addresses of the control plane and services with label kubernetes." -"io/cluster-service=true\n" +"io/cluster-service=true.\n" " To further debug and diagnose cluster problems, use 'kubectl cluster-info " "dump'." msgstr "" "\n" " Display addresses of the control plane and services with label kubernetes." -"io/cluster-service=true\n" +"io/cluster-service=true.\n" " To further debug and diagnose cluster problems, use 'kubectl cluster-info " "dump'." @@ -4100,8 +4122,8 @@ msgid "Annotations to apply to the pod." msgstr "Annotations to apply to the pod." #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173 -msgid "Apply a configuration to a resource by filename or stdin" -msgstr "Apply a configuration to a resource by filename or stdin" +msgid "Apply a configuration to a resource by file name or stdin" +msgstr "Apply a configuration to a resource by file name or stdin" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/certificates.go#L71 #: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:125 @@ -4117,22 +4139,22 @@ msgstr "" "Assign your own ClusterIP or set to 'None' for a 'headless' service (no " "loadbalancing)." -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:105 +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:106 msgid "" "Attach to a process that is already running inside an existing container." msgstr "" "Attach to a process that is already running inside an existing container." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/attach.go#L64 -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:104 +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:105 msgid "Attach to a running container" msgstr "Attach to a running container" #: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:107 msgid "" -"Auto-scale a Deployment, ReplicaSet, StatefulSet, or ReplicationController" +"Auto-scale a deployment, replica set, stateful set, or replication controller" msgstr "" -"Auto-scale a Deployment, ReplicaSet, StatefulSet, or ReplicationController" +"Auto-scale a deployment, replica set, stateful set, or replication controller" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L115 #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:161 @@ -4144,7 +4166,7 @@ msgstr "" "set to 'None' to create a headless service." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L55 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:100 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:101 msgid "ClusterRole this ClusterRoleBinding should reference" msgstr "ClusterRole this ClusterRoleBinding should reference" @@ -4170,82 +4192,97 @@ msgstr "Container name to use for debug container." msgid "Convert config files between different API versions" msgstr "Convert config files between different API versions" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/cp.go#L64 -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:104 #: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:105 +msgid "Copy files and directories to and from containers" +msgstr "Copy files and directories to and from containers" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/cp.go#L64 +#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:106 msgid "Copy files and directories to and from containers." msgstr "Copy files and directories to and from containers." #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:248 -msgid "Create a ClusterIP service." -msgstr "Create a ClusterIP service." +msgid "Create a ClusterIP service" +msgstr "Create a ClusterIP service" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:86 -msgid "Create a ClusterRoleBinding for a particular ClusterRole" -msgstr "Create a ClusterRoleBinding for a particular ClusterRole" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L181 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:323 -msgid "Create a LoadBalancer service." -msgstr "Create a LoadBalancer service." +msgid "Create a LoadBalancer service" +msgstr "Create a LoadBalancer service" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L124 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:286 -msgid "Create a NodePort service." -msgstr "Create a NodePort service." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89 -msgid "Create a RoleBinding for a particular Role or ClusterRole" -msgstr "Create a RoleBinding for a particular Role or ClusterRole" +msgid "Create a NodePort service" +msgstr "Create a NodePort service" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L214 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:94 msgid "Create a TLS secret" msgstr "Create a TLS secret" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_configmap.go#L59 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:81 +msgid "Create a cluster role" +msgstr "Create a cluster role" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:87 +msgid "Create a cluster role binding for a particular cluster role" +msgstr "Create a cluster role binding for a particular cluster role" + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:124 -msgid "Create a configmap from a local file, directory or literal value" -msgstr "Create a configmap from a local file, directory or literal value" +msgid "Create a config map from a local file, directory or literal value" +msgstr "Create a config map from a local file, directory or literal value" #: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:167 msgid "Create a copy of the target Pod with this name." msgstr "Create a copy of the target Pod with this name." +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_cronjob.go:90 +msgid "Create a cron job with the specified name" +msgstr "Create a cron job with the specified name" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_deployment.go:100 +msgid "Create a deployment with the specified name" +msgstr "Create a deployment with the specified name" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:91 +msgid "Create a job with the specified name" +msgstr "Create a job with the specified name" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_namespace.go#L44 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:83 msgid "Create a namespace with the specified name" msgstr "Create a namespace with the specified name" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:95 -msgid "Create a pod disruption budget with the specified name." -msgstr "Create a pod disruption budget with the specified name." +msgid "Create a pod disruption budget with the specified name" +msgstr "Create a pod disruption budget with the specified name" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:92 -msgid "Create a priorityclass with the specified name." -msgstr "Create a priorityclass with the specified name." +msgid "Create a priority class with the specified name" +msgstr "Create a priority class with the specified name" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:91 -msgid "Create a quota with the specified name." -msgstr "Create a quota with the specified name." +msgid "Create a quota with the specified name" +msgstr "Create a quota with the specified name" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:106 -msgid "Create a resource from a file or from stdin." -msgstr "Create a resource from a file or from stdin." +msgid "Create a resource from a file or from stdin" +msgstr "Create a resource from a file or from stdin" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89 +msgid "Create a role binding for a particular role or cluster role" +msgstr "Create a role binding for a particular role or cluster role" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:161 +msgid "Create a role with single rule" +msgstr "Create a role with single rule" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L143 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:134 msgid "Create a secret for use with a Docker registry" msgstr "Create a secret for use with a Docker registry" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L73 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:137 -msgid "Create a secret from a local file, directory or literal value" -msgstr "Create a secret from a local file, directory or literal value" +msgid "Create a secret from a local file, directory, or literal value" +msgstr "Create a secret from a local file, directory, or literal value" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L34 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:49 @@ -4261,16 +4298,21 @@ msgstr "Create a secret using specified subcommand." msgid "Create a service account with the specified name" msgstr "Create a service account with the specified name" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L36 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:48 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:49 -msgid "Create a service using specified subcommand." -msgstr "Create a service using specified subcommand." +msgid "Create a service using a specified subcommand" +msgstr "Create a service using a specified subcommand" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:49 +msgid "Create a service using a specified subcommand." +msgstr "Create a service using a specified subcommand." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L240 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:363 -msgid "Create an ExternalName service." -msgstr "Create an ExternalName service." +msgid "Create an ExternalName service" +msgstr "Create an ExternalName service" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_ingress.go:145 +msgid "Create an ingress with the specified name" +msgstr "Create an ingress with the specified name" #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:60 msgid "Create and run a particular image in a pod." @@ -4280,34 +4322,42 @@ msgstr "Create and run a particular image in a pod." msgid "Create debugging sessions for troubleshooting workloads and nodes" msgstr "Create debugging sessions for troubleshooting workloads and nodes" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/delete.go#L130 -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:135 +#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:137 msgid "" -"Delete resources by filenames, stdin, resources and names, or by resources " +"Delete resources by file names, stdin, resources and names, or by resources " "and label selector" msgstr "" -"Delete resources by filenames, stdin, resources and names, or by resources " +"Delete resources by file names, stdin, resources and names, or by resources " "and label selector" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_cluster.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42 msgid "Delete the specified cluster from the kubeconfig" msgstr "Delete the specified cluster from the kubeconfig" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:43 +msgid "Delete the specified cluster from the kubeconfig." +msgstr "Delete the specified cluster from the kubeconfig." + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_context.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42 msgid "Delete the specified context from the kubeconfig" msgstr "Delete the specified context from the kubeconfig" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:43 +msgid "Delete the specified context from the kubeconfig." +msgstr "Delete the specified context from the kubeconfig." + #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_user.go:64 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_user.go:65 msgid "Delete the specified user from the kubeconfig" msgstr "Delete the specified user from the kubeconfig" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_user.go:65 +msgid "Delete the specified user from the kubeconfig." +msgstr "Delete the specified user from the kubeconfig." + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/certificates.go#L121 -#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:170 +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:174 msgid "Deny a certificate signing request" msgstr "Deny a certificate signing request" @@ -4317,28 +4367,12 @@ msgid "Describe one or many contexts" msgstr "Describe one or many contexts" #: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:142 -msgid "Diff live version against would-be applied version" -msgstr "Diff live version against would-be applied version" +msgid "Diff the live version against a would-be applied version" +msgstr "Diff the live version against a would-be applied version" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_node.go#L77 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:80 -msgid "Display Resource (CPU/Memory) usage of nodes" -msgstr "Display Resource (CPU/Memory) usage of nodes" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_pod.go#L79 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:96 -msgid "Display Resource (CPU/Memory) usage of pods" -msgstr "Display Resource (CPU/Memory) usage of pods" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50 -msgid "Display Resource (CPU/Memory) usage." -msgstr "Display Resource (CPU/Memory) usage." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo.go#L49 #: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo.go:65 -msgid "Display cluster info" -msgstr "Display cluster info" +msgid "Display cluster information" +msgstr "Display cluster information" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/get_clusters.go#L40 #: staging/src/k8s.io/kubectl/pkg/cmd/config/get_clusters.go:41 @@ -4354,11 +4388,31 @@ msgstr "Display clusters defined in the kubeconfig." msgid "Display merged kubeconfig settings or a specified kubeconfig file" msgstr "Display merged kubeconfig settings or a specified kubeconfig file" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_contexts.go:50 +msgid "Display one or many contexts from the kubeconfig file." +msgstr "Display one or many contexts from the kubeconfig file." + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/get.go#L107 -#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:161 +#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:165 msgid "Display one or many resources" msgstr "Display one or many resources" +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50 +msgid "Display resource (CPU/memory) usage" +msgstr "Display resource (CPU/memory) usage" + +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:81 +msgid "Display resource (CPU/memory) usage of nodes" +msgstr "Display resource (CPU/memory) usage of nodes" + +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:100 +msgid "Display resource (CPU/memory) usage of pods" +msgstr "Display resource (CPU/memory) usage of pods" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 +msgid "Display the current-context" +msgstr "Display the current-context" + #: staging/src/k8s.io/kubectl/pkg/cmd/config/get_users.go:60 msgid "Display users defined in the kubeconfig" msgstr "Display users defined in the kubeconfig" @@ -4367,36 +4421,21 @@ msgstr "Display users defined in the kubeconfig" msgid "Display users defined in the kubeconfig." msgstr "Display users defined in the kubeconfig." -#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_contexts.go:50 -msgid "Displays one or many contexts from the kubeconfig file." -msgstr "Displays one or many contexts from the kubeconfig file." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/current_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 -msgid "Displays the current-context" -msgstr "Displays the current-context" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/explain.go#L50 -#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79 -msgid "Documentation of resources" -msgstr "Documentation of resources" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L176 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:181 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:184 msgid "Drain node in preparation for maintenance" msgstr "Drain node in preparation for maintenance" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo_dump.go#L37 #: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:74 -msgid "Dump lots of relevant info for debugging and diagnosis" -msgstr "Dump lots of relevant info for debugging and diagnosis" +msgid "Dump relevant information for debugging and diagnosis" +msgstr "Dump relevant information for debugging and diagnosis" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/edit.go#L100 -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:76 +#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:77 msgid "Edit a resource on the server" msgstr "Edit a resource on the server" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_edit_last_applied.go:66 +#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_edit_last_applied.go:67 msgid "Edit latest last-applied-configuration annotations of a resource/object" msgstr "" "Edit latest last-applied-configuration annotations of a resource/object" @@ -4411,17 +4450,17 @@ msgid "Environment variables to set in the container." msgstr "Environment variables to set in the container." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/exec.go#L68 -#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:88 +#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:89 msgid "Execute a command in a container" msgstr "Execute a command in a container" -#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:89 +#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:90 msgid "Execute a command in a container." msgstr "Execute a command in a container." #: staging/src/k8s.io/kubectl/pkg/cmd/wait/wait.go:115 -msgid "Experimental: Wait for a specific condition on one or many resources." -msgstr "Experimental: Wait for a specific condition on one or many resources." +msgid "Experimental: Wait for a specific condition on one or many resources" +msgstr "Experimental: Wait for a specific condition on one or many resources" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:378 msgid "External name of service" @@ -4432,6 +4471,10 @@ msgstr "External name of service" msgid "Forward one or more local ports to a pod" msgstr "Forward one or more local ports to a pod" +#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79 +msgid "Get documentation for a resource" +msgstr "Get documentation for a resource" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/help.go#L36 #: staging/src/k8s.io/kubectl/pkg/cmd/help/help.go:37 msgid "Help about any command" @@ -4455,7 +4498,7 @@ msgstr "" "values: 'None', 'ClientIP'" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/annotate.go#L135 -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:155 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:157 msgid "" "If non-empty, the annotation update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -4466,7 +4509,7 @@ msgstr "" "resource." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/label.go#L132 -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:152 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:154 msgid "" "If non-empty, the labels update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -4508,22 +4551,26 @@ msgid "" msgstr "" "Keep stdin open on the container(s) in the pod, even if nothing is attached." +#: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:90 +msgid "List all visible plugin executables on a user's PATH" +msgstr "List all visible plugin executables on a user's PATH" + #: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout.go:54 msgid "Manage the rollout of a resource" msgstr "Manage the rollout of a resource" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L127 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:96 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:98 msgid "Mark node as schedulable" msgstr "Mark node as schedulable" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:68 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:69 msgid "Mark node as unschedulable" msgstr "Mark node as unschedulable" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_pause.go#L73 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:83 msgid "Mark the provided resource as paused" msgstr "Mark the provided resource as paused" @@ -4552,7 +4599,7 @@ msgid "No alpha commands are available in this version of kubectl" msgstr "No alpha commands are available in this version of kubectl" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/logs.go#L108 -#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:173 +#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:174 msgid "" "Only return logs after a specific date (RFC3339). Defaults to all logs. Only " "one of since-time / since may be used." @@ -4561,7 +4608,7 @@ msgstr "" "one of since-time / since may be used." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/completion.go#L97 -#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:113 +#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:112 msgid "Output shell completion code for the specified shell (bash or zsh)" msgstr "Output shell completion code for the specified shell (bash or zsh)" @@ -4589,7 +4636,7 @@ msgid "Path to private key associated with given certificate." msgstr "Path to private key associated with given certificate." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/scale.go#L82 -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:129 +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:130 msgid "" "Precondition for resource version. Requires that the current resource " "version match this value in order to scale." @@ -4603,9 +4650,10 @@ msgid "Print the client and server version information" msgstr "Print the client and server version information" #: staging/src/k8s.io/kubectl/pkg/cmd/version/version.go:74 -msgid "Print the client and server version information for the current context" +msgid "" +"Print the client and server version information for the current context." msgstr "" -"Print the client and server version information for the current context" +"Print the client and server version information for the current context." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/options.go#L37 #: staging/src/k8s.io/kubectl/pkg/cmd/options/options.go:38 @@ -4618,13 +4666,15 @@ msgstr "Print the list of flags inherited by all commands" msgid "Print the logs for a container in a pod" msgstr "Print the logs for a container in a pod" -#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:94 -#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:95 +#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:97 msgid "Print the supported API resources on the server" msgstr "Print the supported API resources on the server" +#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:98 +msgid "Print the supported API resources on the server." +msgstr "Print the supported API resources on the server." + #: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:58 -#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:59 msgid "" "Print the supported API versions on the server, in the form of \"group/" "version\"" @@ -4632,25 +4682,32 @@ msgstr "" "Print the supported API versions on the server, in the form of \"group/" "version\"" +#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:59 +msgid "" +"Print the supported API versions on the server, in the form of \"group/" +"version\"." +msgstr "" +"Print the supported API versions on the server, in the form of \"group/" +"version\"." + #: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:62 -msgid "Provides utilities for interacting with plugins." -msgstr "Provides utilities for interacting with plugins." +msgid "Provides utilities for interacting with plugins" +msgstr "Provides utilities for interacting with plugins" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/rename_context.go:44 -msgid "Renames a context from the kubeconfig file." -msgstr "Renames a context from the kubeconfig file." +#: staging/src/k8s.io/kubectl/pkg/cmd/config/rename_context.go:45 +msgid "Rename a context from the kubeconfig file" +msgstr "Rename a context from the kubeconfig file" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/replace.go#L70 #: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:115 -msgid "Replace a resource by filename or stdin" -msgstr "Replace a resource by filename or stdin" +msgid "Replace a resource by file name or stdin" +msgstr "Replace a resource by file name or stdin" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_restart.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_restart.go:87 msgid "Restart a resource" msgstr "Restart a resource" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_resume.go#L71 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:87 msgid "Resume a paused resource" msgstr "Resume a paused resource" @@ -4674,60 +4731,56 @@ msgstr "Run a proxy to the Kubernetes API server" msgid "Server location for Docker registry" msgstr "Server location for Docker registry" -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:113 -msgid "Set a new size for a Deployment, ReplicaSet or Replication Controller" -msgstr "Set a new size for a Deployment, ReplicaSet or Replication Controller" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 +msgid "Set a cluster entry in kubeconfig" +msgstr "Set a cluster entry in kubeconfig" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 +msgid "Set a context entry in kubeconfig" +msgstr "Set a context entry in kubeconfig" + +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:114 +msgid "Set a new size for a deployment, replica set, or replication controller" +msgstr "" +"Set a new size for a deployment, replica set, or replication controller" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 +msgid "Set a user entry in kubeconfig" +msgstr "Set a user entry in kubeconfig" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 +msgid "Set an individual value in a kubeconfig file" +msgstr "Set an individual value in a kubeconfig file" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set.go#L37 #: staging/src/k8s.io/kubectl/pkg/cmd/set/set.go:39 msgid "Set specific features on objects" msgstr "Set specific features on objects" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:52 +msgid "Set the current-context in a kubeconfig file" +msgstr "Set the current-context in a kubeconfig file" + #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:101 msgid "" "Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." +"contents of a file" msgstr "" "Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." +"contents of a file" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_selector.go#L81 #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_selector.go:104 msgid "Set the selector on a resource" msgstr "Set the selector on a resource" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_cluster.go#L67 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 -msgid "Sets a cluster entry in kubeconfig" -msgstr "Sets a cluster entry in kubeconfig" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_context.go#L57 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 -msgid "Sets a context entry in kubeconfig" -msgstr "Sets a context entry in kubeconfig" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_authinfo.go#L103 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 -msgid "Sets a user entry in kubeconfig" -msgstr "Sets a user entry in kubeconfig" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/set.go#L59 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 -msgid "Sets an individual value in a kubeconfig file" -msgstr "Sets an individual value in a kubeconfig file" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/use_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:51 -msgid "Sets the current-context in a kubeconfig file" -msgstr "Sets the current-context in a kubeconfig file" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/describe.go#L80 -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:106 +#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:107 msgid "Show details of a specific resource or group of resources" msgstr "Show details of a specific resource or group of resources" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_status.go#L57 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:101 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:102 msgid "Show the status of the rollout" msgstr "Show the status of the rollout" @@ -4736,14 +4789,13 @@ msgstr "Show the status of the rollout" msgid "Synonym for --target-port" msgstr "Synonym for --target-port" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L87 #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:134 msgid "" "Take a replication controller, service, deployment or pod and expose it as a " -"new Kubernetes Service" +"new Kubernetes service" msgstr "" "Take a replication controller, service, deployment or pod and expose it as a " -"new Kubernetes Service" +"new Kubernetes service" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L114 #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:174 @@ -4875,72 +4927,73 @@ msgstr "" "Default is 'ClusterIP'." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_undo.go#L71 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:87 msgid "Undo a previous rollout" msgstr "Undo a previous rollout" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/unset.go#L47 #: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:59 -msgid "Unsets an individual value in a kubeconfig file" -msgstr "Unsets an individual value in a kubeconfig file" - -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:102 -msgid "Update ServiceAccount of a resource" -msgstr "Update ServiceAccount of a resource" - -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_subject.go:99 -msgid "" -"Update User, Group or ServiceAccount in a RoleBinding/ClusterRoleBinding" -msgstr "" -"Update User, Group or ServiceAccount in a RoleBinding/ClusterRoleBinding" +msgid "Unset an individual value in a kubeconfig file" +msgstr "Unset an individual value in a kubeconfig file" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_env.go:154 msgid "Update environment variables on a pod template" msgstr "Update environment variables on a pod template" -#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:114 -msgid "Update field(s) of a resource" -msgstr "Update field(s) of a resource" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_image.go#L94 -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110 -msgid "Update image of a pod template" -msgstr "Update image of a pod template" +#: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:115 +msgid "Update fields of a resource" +msgstr "Update fields of a resource" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_resources.go#L101 #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_resources.go:116 msgid "Update resource requests/limits on objects with pod templates" msgstr "Update resource requests/limits on objects with pod templates" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:134 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:135 msgid "Update the annotations on a resource" msgstr "Update the annotations on a resource" +#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110 +msgid "Update the image of a pod template" +msgstr "Update the image of a pod template" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/label.go#L109 -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:132 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:133 msgid "Update the labels on a resource" msgstr "Update the labels on a resource" +#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:102 +msgid "Update the service account of a resource" +msgstr "Update the service account of a resource" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/taint.go#L88 -#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:108 +#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:109 msgid "Update the taints on one or more nodes" msgstr "Update the taints on one or more nodes" +#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_subject.go:99 +msgid "" +"Update the user, group, or service account in a role binding or cluster role " +"binding" +msgstr "" +"Update the user, group, or service account in a role binding or cluster role " +"binding" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L155 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:150 msgid "Username for Docker registry authentication" msgstr "Username for Docker registry authentication" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77 -msgid "View latest last-applied-configuration annotations of a resource/object" -msgstr "" -"View latest last-applied-configuration annotations of a resource/object" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_history.go#L51 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:83 msgid "View rollout history" msgstr "View rollout history" +#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77 +msgid "" +"View the latest last-applied-configuration annotations of a resource/object" +msgstr "" +"View the latest last-applied-configuration annotations of a resource/object" + #: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:171 msgid "" "When used with '--copy-to', a list of name=image pairs for changing " @@ -5001,14 +5054,10 @@ msgstr "" "the default priority." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/cmd.go#L217 -#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:478 +#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:227 msgid "kubectl controls the Kubernetes cluster manager" msgstr "kubectl controls the Kubernetes cluster manager" -#: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:90 -msgid "list all visible plugin executables on a user's PATH" -msgstr "list all visible plugin executables on a user's PATH" - #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:45 msgid "" "pod (po), service (svc), replicationcontroller (rc), deployment (deploy), " diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/fr_FR/LC_MESSAGES/k8s.mo b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/fr_FR/LC_MESSAGES/k8s.mo index b114833f9dd..5a22e428876 100644 Binary files a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/fr_FR/LC_MESSAGES/k8s.mo and b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/fr_FR/LC_MESSAGES/k8s.mo differ diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/fr_FR/LC_MESSAGES/k8s.po b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/fr_FR/LC_MESSAGES/k8s.po index 0035606556c..78b601a3727 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/fr_FR/LC_MESSAGES/k8s.po +++ b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/fr_FR/LC_MESSAGES/k8s.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gettext-go-examples-hello\n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2021-05-17 15:40+0200\n" +"POT-Creation-Date: 2021-07-07 20:15+0200\n" "PO-Revision-Date: 2017-01-29 22:54-0800\n" "Last-Translator: Brendan Burns \n" "Language-Team: \n" @@ -19,21 +19,12 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/apply.go#L98 -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173 -msgid "Apply a configuration to a resource by filename or stdin" -msgstr "" -"Appliquer une configuration à une ressource par nom de fichier ou depuis " -"stdin" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_cluster.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42 msgid "Delete the specified cluster from the kubeconfig" msgstr "Supprimer le cluster spécifié du kubeconfig" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_context.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42 msgid "Delete the specified context from the kubeconfig" msgstr "Supprimer le contexte spécifié du kubeconfig" @@ -55,50 +46,49 @@ msgstr "" "Afficher les paramètres fusionnés de kubeconfig ou d'un fichier kubeconfig " "spécifié" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/current_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 -msgid "Displays the current-context" -msgstr "Affiche le contexte actuel" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/config.go#L39 #: staging/src/k8s.io/kubectl/pkg/cmd/config/config.go:42 msgid "Modify kubeconfig files" msgstr "Modifier des fichiers kubeconfig" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_cluster.go#L67 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 -msgid "Sets a cluster entry in kubeconfig" -msgstr "Définit un cluster dans kubeconfig" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_context.go#L57 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 -msgid "Sets a context entry in kubeconfig" -msgstr "Définit un contexte dans kubeconfig" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_authinfo.go#L103 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 -msgid "Sets a user entry in kubeconfig" -msgstr "Définit un utilisateur dans kubeconfig" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/set.go#L59 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 -msgid "Sets an individual value in a kubeconfig file" -msgstr "Définit une valeur individuelle dans un fichier kubeconfig" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/use_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:51 -msgid "Sets the current-context in a kubeconfig file" -msgstr "Définit le contexte courant dans un fichier kubeconfig" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/unset.go#L47 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:59 -msgid "Unsets an individual value in a kubeconfig file" -msgstr "Supprime une valeur individuelle dans un fichier kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:134 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:135 msgid "Update the annotations on a resource" msgstr "Mettre à jour les annotations d'une ressource" +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/apply.go#L98 +#~ msgid "Apply a configuration to a resource by filename or stdin" +#~ msgstr "" +#~ "Appliquer une configuration à une ressource par nom de fichier ou depuis " +#~ "stdin" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/current_context.go#L48 +#~ msgid "Displays the current-context" +#~ msgstr "Affiche le contexte actuel" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_cluster.go#L67 +#~ msgid "Sets a cluster entry in kubeconfig" +#~ msgstr "Définit un cluster dans kubeconfig" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_context.go#L57 +#~ msgid "Sets a context entry in kubeconfig" +#~ msgstr "Définit un contexte dans kubeconfig" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_authinfo.go#L103 +#~ msgid "Sets a user entry in kubeconfig" +#~ msgstr "Définit un utilisateur dans kubeconfig" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/set.go#L59 +#~ msgid "Sets an individual value in a kubeconfig file" +#~ msgstr "Définit une valeur individuelle dans un fichier kubeconfig" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/use_context.go#L48 +#~ msgid "Sets the current-context in a kubeconfig file" +#~ msgstr "Définit le contexte courant dans un fichier kubeconfig" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/unset.go#L47 +#~ msgid "Unsets an individual value in a kubeconfig file" +#~ msgstr "Supprime une valeur individuelle dans un fichier kubeconfig" + #~ msgid "" #~ "watch is only supported on individual resources and resource collections " #~ "- %d resources were found" diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/it_IT/LC_MESSAGES/k8s.mo b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/it_IT/LC_MESSAGES/k8s.mo index 603a082b6d9..afe881717e1 100644 Binary files a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/it_IT/LC_MESSAGES/k8s.mo and b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/it_IT/LC_MESSAGES/k8s.mo differ diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/it_IT/LC_MESSAGES/k8s.po b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/it_IT/LC_MESSAGES/k8s.po index 6d7f8862e82..13bb37b2466 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/it_IT/LC_MESSAGES/k8s.po +++ b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/it_IT/LC_MESSAGES/k8s.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kubernetes\n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2021-05-17 15:40+0200\n" +"POT-Creation-Date: 2021-07-07 20:15+0200\n" "PO-Revision-Date: 2017-08-28 15:20+0200\n" "Last-Translator: Luca Berton \n" "Language-Team: Luca Berton \n" @@ -19,34 +19,6 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "X-Poedit-SourceCharset: UTF-8\n" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using the " -"cluster-admin ClusterRole\n" -"\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" -"admin --user=user1 --user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # Creare un ClusterRoleBinding per user1, user2 e group1 utilizzando il " -"cluster-admin ClusterRole\n" -"\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" -"admin --user=user1 --user=user2 --group=group1" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # Crea un RoleBinding per user1, user2, and group1 utilizzando l'admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" - #: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:62 msgid "" "\n" @@ -63,176 +35,6 @@ msgstr "" "\t\t # Mostra metriche per un determinato nodo\n" "\t\t kubectl top node NODE_NAME" -#: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:48 -#, c-format -msgid "" -"\n" -"\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 and " -"10, no target CPU utilization specified so a default autoscaling policy will " -"be used:\n" -"\t\tkubectl autoscale deployment foo --min=2 --max=10\n" -"\n" -"\t\t# Auto scale a replication controller \"foo\", with the number of pods " -"between 1 and 5, target CPU utilization at 80%:\n" -"\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" -msgstr "" -"\n" -"\t\t# Auto scale un deployment \"foo\", con il numero di pod compresi tra 2 " -"e 10, utilizzo della CPU target specificato in modo da utilizzare una " -"politica di autoscaling predefinita:\n" -"\t\tkubectl autoscale deployment foo --min=2 --max=10\n" -"\n" -"\t\t# Auto scale un controller di replica \"foo\", con il numero di pod " -"compresi tra 1 e 5, utilizzo dell'utilizzo della CPU a 80%:\n" -"\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:44 -msgid "" -"\n" -"\t\t# Create a new resourcequota named my-quota\n" -"\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," -"replicationcontrollers=2,resourcequotas=1,secrets=5," -"persistentvolumeclaims=10\n" -"\n" -"\t\t# Create a new resourcequota named best-effort\n" -"\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" -msgstr "" -"\n" -"\t\t# Crea una nuova resourcequota chiamata my-quota\n" -"\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," -"replicationcontrollers=2,resourcequotas=1,secrets=5," -"persistentvolumeclaims=10\n" -"\n" -"\t\t# Creare una nuova resourcequota denominata best-effort\n" -"\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:44 -#, c-format -msgid "" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=rails label\n" -"\t\t# and require at least one of them being available at any point in " -"time.\n" -"\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" -"available=1\n" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=nginx label\n" -"\t\t# and require at least half of the pods selected to be available at any " -"point in time.\n" -"\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" -msgstr "" -"\n" -"\t\t# Crea un pod disruption budget chiamato my-pdb che seleziona tutti i " -"pod con label app = rail\n" -"\t\t# e richiede che almeno uno di essi sia disponibile in qualsiasi " -"momento.\n" -"\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" -"available=1\n" -"\n" -"\t\t# Crea un pod disruption budget con nome my-pdb che seleziona tutti i " -"pod con label app = nginx \n" -"\t\t# e richiede che almeno la metà dei pod selezionati sia disponibile in " -"qualsiasi momento.\n" -"\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" - -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:50 -msgid "" -"\n" -"\t\t# Describe a node\n" -"\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" -"\n" -"\t\t# Describe a pod\n" -"\t\tkubectl describe pods/nginx\n" -"\n" -"\t\t# Describe a pod identified by type and name in \"pod.json\"\n" -"\t\tkubectl describe -f pod.json\n" -"\n" -"\t\t# Describe all pods\n" -"\t\tkubectl describe pods\n" -"\n" -"\t\t# Describe pods by label name=myLabel\n" -"\t\tkubectl describe po -l name=myLabel\n" -"\n" -"\t\t# Describe all pods managed by the 'frontend' replication controller (rc-" -"created pods\n" -"\t\t# get the name of the rc as a prefix in the pod the name).\n" -"\t\tkubectl describe pods frontend" -msgstr "" -"\n" -"\t\t# Descrive un nodo\n" -"\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" -"\n" -"\t\t# Descrive un pod\n" -"\t\tkubectl describe pods/nginx\n" -"\n" -"\t\t# Descrive un pod identificato da tipo e nome in \"pod.json\"\n" -"\t\tkubectl describe -f pod.json\n" -"\n" -"\t\t# Descrive tutti i pod\n" -"\t\tkubectl describe pods\n" -"\n" -"\t\t# Descrive i pod con label name=myLabel\n" -"\t\tkubectl describe po -l name=myLabel\n" -"\n" -"\t\t# Descrivere tutti i pod gestiti dal controller di replica \"frontend" -"\" (rc-created pods\n" -"\t\t# ottiene il nome del rc come un prefisso del nome pod).\n" -"\t\tkubectl describe pods frontend" - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:135 -msgid "" -"\n" -"\t\t# Drain node \"foo\", even if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" -"\t\t$ kubectl drain foo --force\n" -"\n" -"\t\t# As above, but abort if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a " -"grace period of 15 minutes.\n" -"\t\t$ kubectl drain foo --grace-period=900" -msgstr "" -"\n" -"\t\t# Drain node \"foo\", anche se ci sono i baccelli non gestiti da " -"ReplicationController, ReplicaSet, Job, DaemonSet o StatefulSet su di esso.\n" -"\t\t$ kubectl drain foo --force\n" -"\n" -"\t\t# Come sopra, ma interrompere se ci sono i baccelli non gestiti da " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, e " -"utilizzare un periodo di grazia di 15 minuti.\n" -"\t\t$ kubectl drain foo --grace-period=900" - -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:54 -msgid "" -"\n" -"\t\t# Edit the service named 'docker-registry':\n" -"\t\tkubectl edit svc/docker-registry\n" -"\n" -"\t\t# Use an alternative editor\n" -"\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" -"\n" -"\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" -"\t\tkubectl edit job.v1.batch/myjob -o json\n" -"\n" -"\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " -"config in its annotation:\n" -"\t\tkubectl edit deployment/mydeployment -o yaml --save-config" -msgstr "" -"\n" -"\t\t# Modifica il servizio denominato 'docker-registry':\n" -"\t\tkubectl edit svc/docker-registry\n" -"\n" -"\t\t# Usa un editor alternativo\n" -"\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" -"\n" -"\t\t# Modifica il lavoro 'myjob' in JSON utilizzando il formato API v1:\n" -"\t\tkubectl edit job.v1.batch/myjob -o json\n" -"\n" -"\t\t# Modifica la distribuzione 'mydeployment' in YAML e salvare la " -"configurazione modificata nella sua annotazione:\n" -"\t\tkubectl edit deployment/mydeployment -o yaml --save-config" - #: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:46 msgid "" "\n" @@ -249,26 +51,6 @@ msgstr "" "\t\t# Ottieni la documentazione di un campo specifico di una risorsa\n" "\t\tkubectl explain pods.spec.containers" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:85 -msgid "" -"\n" -"\t\t# Mark node \"foo\" as schedulable.\n" -"\t\t$ kubectl uncordon foo" -msgstr "" -"\n" -"\t\t# Segna il nodo \"foo\" come programmabile.\n" -"\t\t$ Kubectl uncordon foo" - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:57 -msgid "" -"\n" -"\t\t# Mark node \"foo\" as unschedulable.\n" -"\t\tkubectl cordon foo" -msgstr "" -"\n" -"\t\t# Segna il nodo \"foo\" come non programmabile.\n" -"\t\tkubectl cordon foo" - #: staging/src/k8s.io/kubectl/pkg/cmd/options/options.go:29 msgid "" "\n" @@ -299,69 +81,7 @@ msgstr "" "\t\t# Stampa le versioni API supportate\n" "\t\tkubectl api-versions" -#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:56 -msgid "" -"\n" -"\t\t# Replace a pod using the data in pod.json.\n" -"\t\tkubectl replace -f ./pod.json\n" -"\n" -"\t\t# Replace a pod based on the JSON passed into stdin.\n" -"\t\tcat pod.json | kubectl replace -f -\n" -"\n" -"\t\t# Update a single-container pod's image version (tag) to v4\n" -"\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' | " -"kubectl replace -f -\n" -"\n" -"\t\t# Force replace, delete and then re-create the resource\n" -"\t\tkubectl replace --force -f ./pod.json" -msgstr "" -"\n" -"\t\t# Sostituire un pod utilizzando i dati in pod.json.\n" -"\t\tkubectl replace -f ./pod.json\n" -"\n" -"\t\t# Sostituire un pod usando il JSON passato da stdin.\n" -"\t\tcat pod.json | kubectl replace -f -\n" -"\n" -"\t\t# Aggiorna la versione dell'immagine (tag) di un singolo container di " -"pod a v4\n" -"\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' | " -"kubectl replace -f -\n" -"\n" -"\t\t# Forza la sostituzione, cancellazione e quindi ricreare la risorsa\n" -"\t\tkubectl replace --force -f ./pod.json" - -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:75 -msgid "" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml\n" -"\n" -"\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" -"\t\tkubectl apply set-last-applied -f path/\n" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file, will create the annotation if it does not already exist.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" -"\t\t" -msgstr "" -"\n" -"\t\t# Imposta l'ultima-configurazione-applicata di una risorsa che " -"corrisponda al contenuto di un file.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml\n" -"\n" -"\t\t# Esegue set-last-applied per ogni file di configurazione in una " -"directory.\n" -"\t\tkubectl apply set-last-applied -f path/\n" -"\n" -"\t\t# Imposta la configurazione dell'ultima applicazione di una risorsa che " -"corrisponda al contenuto di un file, creerà l'annotazione se non esiste " -"già.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" -"\t\t" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:72 +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:75 msgid "" "\n" "\t\t# Show metrics for all pods in the default namespace\n" @@ -389,70 +109,6 @@ msgstr "" "\t\t# Mostra metriche per i pod definiti da label name = myLabel\n" "\t\tkubectl top pod -l name=myLabel" -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:94 -msgid "" -"\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" -"\t\tkubectl label pods foo unhealthy=true\n" -"\n" -"\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" -"\t\tkubectl label --overwrite pods foo status=unhealthy\n" -"\n" -"\t\t# Update all pods in the namespace\n" -"\t\tkubectl label pods --all status=unhealthy\n" -"\n" -"\t\t# Update a pod identified by the type and name in \"pod.json\"\n" -"\t\tkubectl label -f pod.json status=unhealthy\n" -"\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" -"\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" -"\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" -"\t\tkubectl label pods foo bar-" -msgstr "" -"\n" -"\t\t# Aggiorna il pod 'foo' con l'etichetta 'unhealthy' e il valore 'true'.\n" -"\t\tkubectl label pods foo unhealthy=true\n" -"\n" -"\t\t# Aggiorna il pod 'foo' con l'etichetta 'status' e il valore " -"'unhealthy', sovrascrivendo qualsiasi valore esistente.\n" -"\t\tkubectl label --overwrite pods foo status=unhealthy\n" -"\n" -"\t\t# Aggiorna tutti i pod nello spazio dei nomi\n" -"\t\tkubectl label pods --all status=unhealthy\n" -"\n" -"\t\t# Aggiorna un pod identificato dal tipo e dal nome in \"pod.json\"\n" -"\t\tkubectl label -f pod.json status=unhealthy\n" -"\n" -"\t\t# Aggiorna il pod 'foo' solo se la risorsa è invariata dalla versione " -"1.\n" -"\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" -"\n" -"\t\t# Aggiorna il pod 'foo' rimuovendo un'etichetta denominata 'bar' se " -"esiste.\n" -"\t\t# Non richiede la flag -overwrite.\n" -"\t\tkubectl label pods foo bar-" - -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:53 -msgid "" -"\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" -"\t\tkubectl apply view-last-applied deployment/nginx\n" -"\n" -"\t\t# View the last-applied-configuration annotations by file in JSON\n" -"\t\tkubectl apply view-last-applied -f deploy.yaml -o json" -msgstr "" -"\n" -"\t\t# Visualizza le annotazioni dell'ultima-configurazione-applicata per " -"tipo/nome in YAML.\n" -"\t\tkubectl apply view-last-applied deployment/nginx\n" -"\n" -"\t\t# # Visualizza le annotazioni dell'ultima-configurazione-applicata per " -"file in JSON.\n" -"\t\tkubectl apply view-last-applied -f deploy.yaml -o json" - #: pkg/kubectl/cmd/convert/convert.go:40 msgid "" "\n" @@ -483,67 +139,6 @@ msgstr "" "usare l'opzione -o\n" "\t\tper cambiare la destinazione di output." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38 -msgid "" -"\n" -"\t\tCreate a ClusterRole." -msgstr "" -"\n" -"\t\n" -"Crea un ClusterRole." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a ClusterRoleBinding for a particular ClusterRole." -msgstr "" -"\n" -"\t\tCrea un ClusterRoleBinding per un ClusterRole particolare." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a RoleBinding for a particular Role or ClusterRole." -msgstr "" -"\n" -"\t\tCrea un RoleBinding per un particolare Ruolo o ClusterRole." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:46 -msgid "" -"\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " -"value.\n" -"\n" -"\t\tA single configmap may package one or more key/value pairs.\n" -"\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " -"basename of the file, and the value will\n" -"\t\tdefault to the file content. If the basename is an invalid key, you may " -"specify an alternate key.\n" -"\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" -"\t\tsymlinks, devices, pipes, etc)." -msgstr "" -"\n" -"\t\tCreare un configmap basato su un file, una directory o un valore literal " -"specificato.\n" -"\n" -"\t\tUn singolo configmap può includere una o più coppie chiave/valore.\n" -"\n" -"\t\tQuando si crea una configmap basata su un file, il valore predefinito " -"sarà il nome di base del file e il valore sarà\n" -"\t\tpredefinito per il contenuto del file. Se il nome di base è una chiave " -"non valida, è possibile specificare un tasto alternativo.\n" -"\n" -"\t\tQuando si crea un configmap basato su una directory, ogni file il cui " -"nome di base è una chiave valida nella directory verrà\n" -"\t\tpacchettizzata nel configmap. Le voci di directory tranne i file " -"regolari vengono ignorati (ad esempio sottodirectory,\n" -"\t\tsymlinks, devices, pipes, ecc)." - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:39 msgid "" "\n" @@ -552,26 +147,6 @@ msgstr "" "\n" "\t\tCreare un namespace con il nome specificato." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:41 -msgid "" -"\n" -"\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" -msgstr "" -"\n" -"\t\tCrea un pod disruption budget con il nome specificato, selector e il " -"numero minimo di pod disponibili" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:41 -msgid "" -"\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" -msgstr "" -"\n" -"\t\tCrea una resourcequota con il nome specificato, hard limits e gli scope " -"opzionali" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:43 msgid "" "\n" @@ -588,81 +163,7 @@ msgstr "" "\n" "\t\tCreare un service account con il nome specificato." -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:30 -msgid "" -"\n" -"\t\tEdit a resource from the default editor.\n" -"\n" -"\t\tThe edit command allows you to directly edit any API resource you can " -"retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " -"or EDITOR\n" -"\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " -"Windows.\n" -"\t\tYou can edit multiple objects, although changes are applied one at a " -"time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " -"you point to must\n" -"\t\tbe previously saved versions of resources.\n" -"\n" -"\t\tEditing is done with the API version used to fetch the resource.\n" -"\t\tTo edit using a specific API version, fully-qualify the resource, " -"version, and group.\n" -"\n" -"\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" -"\n" -"\t\tThe flag --windows-line-endings can be used to force Windows line " -"endings,\n" -"\t\totherwise the default for your operating system will be used.\n" -"\n" -"\t\tIn the event an error occurs while updating, a temporary file will be " -"created on disk\n" -"\t\tthat contains your unapplied changes. The most common error when " -"updating a resource\n" -"\t\tis another editor changing the resource on the server. When this occurs, " -"you will have\n" -"\t\tto apply your changes to the newer version of the resource, or update " -"your temporary\n" -"\t\tsaved copy to include the latest resource version." -msgstr "" -"\n" -"\t\tModificare una risorsa dall'editor predefinito.\n" -"\n" -"\t\tIl comando di modifica consente di modificare direttamente qualsiasi " -"risorsa API che è possibile recuperare tramite gli\n" -"\t\tstrumenti di riga di comando. Apre l'editor definito dalle variabili " -"d'ambiente\n" -"\t\tKUBE_EDITOR o EDITOR, o ritornare a 'vi' per Linux o 'notepad' per " -"Windows.\n" -"\t\tÈ possibile modificare più oggetti, anche se le modifiche vengono " -"applicate una alla volta. Il comando\n" -"\t\taccetta sia nomi di file che argomenti da riga di comando, anche se i " -"file a cui fa riferimento devono\n" -"\t\tessere state salvate precedentemente le versioni delle risorse.\n" -"\n" -"\t\tLa modifica viene eseguita con la versione API utilizzata per recuperare " -"la risorsa.\n" -"\t\tPer modificare utilizzando una specifica versione API, fully-qualify la " -"risorsa, versione e il gruppo.\n" -"\n" -"\t\tIl formato predefinito è YAML. Per modificare in JSON, specificare \"-o " -"json\".\n" -"\n" -"\t\tIl flag --windows-line-endings può essere utilizzato per forzare i fine " -"linea Windows,\n" -"\t\taltrimenti verrà utilizzato il default per il sistema operativo.\n" -"\n" -"\t\tNel caso in cui si verifica un errore durante l'aggiornamento, verrà " -"creato un file temporaneo sul disco\n" -"\t\tche contiene le modifiche non apportate. L'errore più comune durante " -"l'aggiornamento di una risorsa\n" -"\t\tè una modifica da pare di un altro editor della risorsa sul server. " -"Quando questo si verifica, dovrai\n" -"\t\tapplicare le modifiche alla versione più recente della risorsa o " -"aggiornare il tua copia\n" -"\t\ttemporanea salvata per includere l'ultima versione delle risorse." - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:84 msgid "" "\n" "\t\tMark node as schedulable." @@ -670,7 +171,7 @@ msgstr "" "\n" "\t\tContrassegna il nodo come programmabile." -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:54 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:55 msgid "" "\n" "\t\tMark node as unschedulable." @@ -694,37 +195,6 @@ msgstr "" "se 'kubectl apply -f ' fosse stato eseguito,\n" "\t\tsenza aggiornare altre parti dell'oggetto." -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:47 -msgid "" -"\n" -"\t\tView the latest last-applied-configuration annotations by type/name or " -"file.\n" -"\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." -msgstr "" -"\n" -"\t\tVisualizza le annotazioni dell'ultima-configurazione-applicata per tipo/" -"nome o file.\n" -"\n" -"\t\tL'output predefinito verrà stampato su stdout nel formato YAML. Si può " -"usare l'opzione -o\n" -"\t\tPer cambiare il formato di output." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:47 -msgid "" -"\n" -"\t # Create a new TLS secret named tls-secret with the given key pair:\n" -"\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" -"to/tls.key" -msgstr "" -"\n" -"\t # Crea un nuovo secret TLS denominato tls-secret con la coppia di dati " -"fornita:\n" -"\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" -"to/tls.key" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:42 msgid "" "\n" @@ -812,63 +282,6 @@ msgstr "" " kubectl cluster-info dump --namespaces default,kube-system --output-" "directory=/path/to/cluster-state" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:94 -msgid "" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend'.\n" -" # If the same annotation is set multiple times, only the last value will " -"be applied\n" -" kubectl annotate pods foo description='my frontend'\n" -"\n" -" # Update a pod identified by type and name in \"pod.json\"\n" -" kubectl annotate -f pod.json description='my frontend'\n" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend running nginx', overwriting any existing value.\n" -" kubectl annotate --overwrite pods foo description='my frontend running " -"nginx'\n" -"\n" -" # Update all pods in the namespace\n" -" kubectl annotate pods --all description='my frontend running nginx'\n" -"\n" -" # Update pod 'foo' only if the resource is unchanged from version 1.\n" -" kubectl annotate pods foo description='my frontend running nginx' --" -"resource-version=1\n" -"\n" -" # Update pod 'foo' by removing an annotation named 'description' if it " -"exists.\n" -" # Does not require the --overwrite flag.\n" -" kubectl annotate pods foo description-" -msgstr "" -"\n" -" # Aggiorna il pod 'foo' con annotazione 'description'e il valore 'my " -"frontend'.\n" -" # Se la stessa annotazione è impostata più volte, verrà applicato solo " -"l'ultimo valore\n" -" kubectl annotate pods foo description='my frontend'\n" -"\n" -" # Aggiorna un pod identificato per tipo e nome in \"pod.json\"\n" -" kubectl annotate -f pod.json description='my frontend'\n" -"\n" -" # Aggiorna pod 'foo' con la annotazione 'description' e il valore 'my " -"frontend running nginx', sovrascrivendo qualsiasi valore esistente.\n" -" kubectl annotate --overwrite pods foo description='my frontend running " -"nginx'\n" -"\n" -" # Aggiorna tutti i baccelli nel namespace\n" -" kubectl annotate pods --all description='my frontend running nginx'\n" -"\n" -" # Aggiorna il pod 'foo' solo se la risorsa è invariata dalla versione " -"1.\n" -" kubectl annotate pods foo description='my frontend running nginx' --" -"resource-version=1\n" -"\n" -" # Aggiorna il pod 'foo' rimuovendo un'annotazione denominata " -"'descrizione' se esiste.\n" -" # Non richiede flag -overwrite.\n" -" kubectl annotate pods foo description-" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:308 msgid "" "\n" @@ -931,10 +344,6 @@ msgstr "" "utilizzato per ignorare l'oggetto generato. Richiede che l'oggetto fornisca " "un campo valido apiVersion." -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173 -msgid "Apply a configuration to a resource by filename or stdin" -msgstr "Applica una configurazione risorsa per nomefile o stdin" - #: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:125 msgid "Approve a certificate signing request" msgstr "Approva una richiesta di firma del certificato" @@ -947,7 +356,7 @@ msgstr "" "Assegnare il proprio ClusterIP o impostare su 'None' per un servizio " "'headless' (nessun bilanciamento del carico)." -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:104 +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:105 msgid "Attach to a running container" msgstr "Collega a un container in esecuzione" @@ -959,7 +368,7 @@ msgstr "" "ClusterIP da assegnare al servizio. Lasciare vuoto per allocare " "automaticamente o impostare su 'None' per creare un servizio headless." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:100 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:101 msgid "ClusterRole this ClusterRoleBinding should reference" msgstr "ClusterRole a cui questo ClusterRoleBinding fa riferimento" @@ -971,56 +380,22 @@ msgstr "ClusterRole a cui questo RoleBinding fa riferimento" msgid "Convert config files between different API versions" msgstr "Convertire i file di configurazione tra diverse versioni APIs" -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:104 -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:105 +#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:106 msgid "Copy files and directories to and from containers." msgstr "Copiare file e directory da e verso i container." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:86 -msgid "Create a ClusterRoleBinding for a particular ClusterRole" -msgstr "Crea un ClusterRoleBinding per un ClusterRole particolare" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:323 -msgid "Create a LoadBalancer service." -msgstr "Creare un servizio LoadBalancer." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:286 -msgid "Create a NodePort service." -msgstr "Crea un servizio NodePort." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89 -msgid "Create a RoleBinding for a particular Role or ClusterRole" -msgstr "Crea un RoleBinding per un particolare Role o ClusterRole" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:94 msgid "Create a TLS secret" msgstr "Crea un secret TLS" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:124 -msgid "Create a configmap from a local file, directory or literal value" -msgstr "" -"Crea un configmap da un file locale, una directory o un valore letterale" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:83 msgid "Create a namespace with the specified name" msgstr "Crea un namespace con il nome specificato" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:95 -msgid "Create a pod disruption budget with the specified name." -msgstr "Crea un pod disruption budget con il nome specificato." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:91 -msgid "Create a quota with the specified name." -msgstr "Crea una quota con il nome specificato." - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:134 msgid "Create a secret for use with a Docker registry" msgstr "Crea un secret da utilizzare con un registro Docker" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:137 -msgid "Create a secret from a local file, directory or literal value" -msgstr "Crea un secret da un file locale, una directory o un valore letterale" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:49 msgid "Create a secret using specified subcommand" msgstr "Crea un secret utilizzando un subcommand specificato" @@ -1029,34 +404,15 @@ msgstr "Crea un secret utilizzando un subcommand specificato" msgid "Create a service account with the specified name" msgstr "Creare un account di servizio con il nome specificato" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:48 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:49 -msgid "Create a service using specified subcommand." -msgstr "Crea un servizio utilizzando il subcommand specificato." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:363 -msgid "Create an ExternalName service." -msgstr "Crea un servizio ExternalName." - -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:135 -msgid "" -"Delete resources by filenames, stdin, resources and names, or by resources " -"and label selector" -msgstr "" -"Elimina risorse selezionate per nomi di file, stdin, risorse e nomi, o per " -"risorsa e selettore di label" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42 msgid "Delete the specified cluster from the kubeconfig" msgstr "Elimina il cluster specificato dal kubeconfig" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42 msgid "Delete the specified context from the kubeconfig" msgstr "Elimina il context specificato dal kubeconfig" -#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:170 +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:174 msgid "Deny a certificate signing request" msgstr "Nega una richiesta di firma del certificato" @@ -1064,22 +420,6 @@ msgstr "Nega una richiesta di firma del certificato" msgid "Describe one or many contexts" msgstr "Descrive uno o più context" -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:80 -msgid "Display Resource (CPU/Memory) usage of nodes" -msgstr "Visualizza l'utilizzo di risorse (CPU/Memoria) per nodo" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:96 -msgid "Display Resource (CPU/Memory) usage of pods" -msgstr "Visualizza l'utilizzo di risorse (CPU/Memoria) per pod." - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50 -msgid "Display Resource (CPU/Memory) usage." -msgstr "Visualizza l'utilizzo di risorse (CPU/Memoria)." - -#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo.go:65 -msgid "Display cluster info" -msgstr "Visualizza informazioni sul cluster" - #: staging/src/k8s.io/kubectl/pkg/cmd/config/get_clusters.go:41 msgid "Display clusters defined in the kubeconfig" msgstr "Mostra i cluster definiti nel kubeconfig" @@ -1090,27 +430,15 @@ msgstr "" "Visualizza le impostazioni merged di kubeconfig o un file kubeconfig " "specificato" -#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:161 +#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:165 msgid "Display one or many resources" msgstr "Visualizza una o più risorse" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 -msgid "Displays the current-context" -msgstr "Visualizza il current-context" - -#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79 -msgid "Documentation of resources" -msgstr "Documentazione delle risorse" - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:181 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:184 msgid "Drain node in preparation for maintenance" msgstr "Drain node in preparazione alla manutenzione" -#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:74 -msgid "Dump lots of relevant info for debugging and diagnosis" -msgstr "Dump di un sacco di informazioni pertinenti per il debug e la diagnosi" - -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:76 +#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:77 msgid "Edit a resource on the server" msgstr "Modificare una risorsa sul server" @@ -1118,7 +446,7 @@ msgstr "Modificare una risorsa sul server" msgid "Email for Docker registry" msgstr "Email per il registro Docker" -#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:88 +#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:89 msgid "Execute a command in a container" msgstr "Esegui un comando in un contenitore" @@ -1138,7 +466,7 @@ msgstr "" "Se non è vuoto, impostare l'affinità di sessione per il servizio; Valori " "validi: 'None', 'ClientIP'" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:155 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:157 msgid "" "If non-empty, the annotation update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -1148,7 +476,7 @@ msgstr "" "questa è la resource-version corrente per l'oggetto. Valido solo quando si " "specifica una singola risorsa." -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:152 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:154 msgid "" "If non-empty, the labels update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -1158,15 +486,15 @@ msgstr "" "resource-version corrente per l'oggetto. Valido solo quando si specifica una " "singola risorsa." -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:96 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:98 msgid "Mark node as schedulable" msgstr "Contrassegnare il nodo come programmabile" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:68 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:69 msgid "Mark node as unschedulable" msgstr "Contrassegnare il nodo come non programmabile" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:83 msgid "Mark the provided resource as paused" msgstr "Imposta la risorsa indicata in pausa" @@ -1187,7 +515,7 @@ msgstr "" "Nome o numero di porta nel container verso il quale il servizio deve " "dirigere il traffico. Opzionale." -#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:173 +#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:174 msgid "" "Only return logs after a specific date (RFC3339). Defaults to all logs. Only " "one of since-time / since may be used." @@ -1195,7 +523,7 @@ msgstr "" "Restituisce solo i log dopo una data specificata (RFC3339). Predefinito " "tutti i log. È possibile utilizzare solo uno tra data-inizio/a-partire-da." -#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:113 +#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:112 msgid "Output shell completion code for the specified shell (bash or zsh)" msgstr "" "Codice di completamento shell di output per la shell specificata (bash o zsh)" @@ -1212,7 +540,7 @@ msgstr "Percorso certificato di chiave pubblica codificato PEM." msgid "Path to private key associated with given certificate." msgstr "Percorso alla chiave privata associata a un certificato specificato." -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:129 +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:130 msgid "" "Precondition for resource version. Requires that the current resource " "version match this value in order to scale." @@ -1233,11 +561,7 @@ msgstr "Stampa l'elenco flag ereditati da tutti i comandi" msgid "Print the logs for a container in a pod" msgstr "Stampa i log per container in un pod" -#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:115 -msgid "Replace a resource by filename or stdin" -msgstr "Sostituire una risorsa per nomefile o stdin" - -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:87 msgid "Resume a paused resource" msgstr "Riprendere una risorsa in pausa" @@ -1261,43 +585,15 @@ msgstr "Posizione del server per il Registro Docker" msgid "Set specific features on objects" msgstr "Imposta caratteristiche specifiche sugli oggetti" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:101 -msgid "" -"Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." -msgstr "" -"Imposta l'annotazione dell'ultima-configurazione-applicata ad un oggetto " -"live per abbinare il contenuto di un file." - #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_selector.go:104 msgid "Set the selector on a resource" msgstr "Impostare il selettore di una risorsa" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 -msgid "Sets a cluster entry in kubeconfig" -msgstr "Imposta una voce cluster in kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 -msgid "Sets a context entry in kubeconfig" -msgstr "Imposta una voce context in kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 -msgid "Sets a user entry in kubeconfig" -msgstr "Imposta una voce utente in kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 -msgid "Sets an individual value in a kubeconfig file" -msgstr "Imposta un singolo valore in un file kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:51 -msgid "Sets the current-context in a kubeconfig file" -msgstr "Imposta il current-context in un file kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:106 +#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:107 msgid "Show details of a specific resource or group of resources" msgstr "Mostra i dettagli di una specifica risorsa o un gruppo di risorse" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:101 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:102 msgid "Show the status of the rollout" msgstr "Mostra lo stato del rollout" @@ -1305,14 +601,6 @@ msgstr "Mostra lo stato del rollout" msgid "Synonym for --target-port" msgstr "Sinonimo di --target-port" -#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:134 -msgid "" -"Take a replication controller, service, deployment or pod and expose it as a " -"new Kubernetes Service" -msgstr "" -"Prende un replication controller, service, deployment o un pod e lo espone " -"come nuovo servizio Kubernetes" - #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:174 msgid "The image for the container to run." msgstr "L'immagine per il container da eseguire." @@ -1396,31 +684,23 @@ msgstr "" msgid "The type of secret to create" msgstr "Tipo di segreto da creare" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:87 msgid "Undo a previous rollout" msgstr "Annulla un precedente rollout" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:59 -msgid "Unsets an individual value in a kubeconfig file" -msgstr "Annulla singolo valore in un file kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110 -msgid "Update image of a pod template" -msgstr "Aggiorna immagine di un pod template" - #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_resources.go:116 msgid "Update resource requests/limits on objects with pod templates" msgstr "Aggiorna richieste di risorse/limiti sugli oggetti con pod template" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:134 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:135 msgid "Update the annotations on a resource" msgstr "Aggiorna annotazioni di risorsa" -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:132 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:133 msgid "Update the labels on a resource" msgstr "Aggiorna label di una risorsa" -#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:108 +#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:109 msgid "Update the taints on one or more nodes" msgstr "Aggiorna i taints su uno o più nodi" @@ -1428,13 +708,7 @@ msgstr "Aggiorna i taints su uno o più nodi" msgid "Username for Docker registry authentication" msgstr "Nome utente per l'autenticazione nel registro Docker" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77 -msgid "View latest last-applied-configuration annotations of a resource/object" -msgstr "" -"Visualizza ultime annotazioni dell'ultima configurazione applicata per " -"risorsa/oggetto" - -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:83 msgid "View rollout history" msgstr "Visualizza la storia del rollout" @@ -1450,10 +724,36 @@ msgstr "" msgid "dummy restart flag)" msgstr "flag di riavvio finto)" -#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:478 +#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:227 msgid "kubectl controls the Kubernetes cluster manager" msgstr "Kubectl controlla il gestore cluster di Kubernetes" +#~ msgid "" +#~ "\n" +#~ "\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using " +#~ "the cluster-admin ClusterRole\n" +#~ "\t\t kubectl create clusterrolebinding cluster-admin --" +#~ "clusterrole=cluster-admin --user=user1 --user=user2 --group=group1" +#~ msgstr "" +#~ "\n" +#~ "\t\t # Creare un ClusterRoleBinding per user1, user2 e group1 utilizzando " +#~ "il cluster-admin ClusterRole\n" +#~ "\t\t kubectl create clusterrolebinding cluster-admin --" +#~ "clusterrole=cluster-admin --user=user1 --user=user2 --group=group1" + +#~ msgid "" +#~ "\n" +#~ "\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " +#~ "ClusterRole\n" +#~ "\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +#~ "user=user2 --group=group1" +#~ msgstr "" +#~ "\n" +#~ "\t\t # Crea un RoleBinding per user1, user2, and group1 utilizzando " +#~ "l'admin ClusterRole\n" +#~ "\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +#~ "user=user2 --group=group1" + #~ msgid "" #~ "\n" #~ "\t\t # Create a new configmap named my-config based on folder bar\n" @@ -1536,6 +836,28 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "\t\tkubectl apply --prune -f manifest.yaml --all --prune-whitelist=core/" #~ "v1/ConfigMap" +#, c-format +#~ msgid "" +#~ "\n" +#~ "\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 " +#~ "and 10, no target CPU utilization specified so a default autoscaling " +#~ "policy will be used:\n" +#~ "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" +#~ "\n" +#~ "\t\t# Auto scale a replication controller \"foo\", with the number of " +#~ "pods between 1 and 5, target CPU utilization at 80%:\n" +#~ "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Auto scale un deployment \"foo\", con il numero di pod compresi " +#~ "tra 2 e 10, utilizzo della CPU target specificato in modo da utilizzare " +#~ "una politica di autoscaling predefinita:\n" +#~ "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" +#~ "\n" +#~ "\t\t# Auto scale un controller di replica \"foo\", con il numero di pod " +#~ "compresi tra 1 e 5, utilizzo dell'utilizzo della CPU a 80%:\n" +#~ "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" + #~ msgid "" #~ "\n" #~ "\t\t# Convert 'pod.yaml' to latest version and print to stdout.\n" @@ -1608,6 +930,55 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "\t\tkubectl create role pod-reader --verb=get --verg=list --verb=watch --" #~ "resource=pods --resource-name=readablepod" +#~ msgid "" +#~ "\n" +#~ "\t\t# Create a new resourcequota named my-quota\n" +#~ "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2," +#~ "services=3,replicationcontrollers=2,resourcequotas=1,secrets=5," +#~ "persistentvolumeclaims=10\n" +#~ "\n" +#~ "\t\t# Create a new resourcequota named best-effort\n" +#~ "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Crea una nuova resourcequota chiamata my-quota\n" +#~ "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2," +#~ "services=3,replicationcontrollers=2,resourcequotas=1,secrets=5," +#~ "persistentvolumeclaims=10\n" +#~ "\n" +#~ "\t\t# Creare una nuova resourcequota denominata best-effort\n" +#~ "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" + +#, c-format +#~ msgid "" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=rails label\n" +#~ "\t\t# and require at least one of them being available at any point in " +#~ "time.\n" +#~ "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" +#~ "available=1\n" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=nginx label\n" +#~ "\t\t# and require at least half of the pods selected to be available at " +#~ "any point in time.\n" +#~ "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Crea un pod disruption budget chiamato my-pdb che seleziona tutti i " +#~ "pod con label app = rail\n" +#~ "\t\t# e richiede che almeno uno di essi sia disponibile in qualsiasi " +#~ "momento.\n" +#~ "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" +#~ "available=1\n" +#~ "\n" +#~ "\t\t# Crea un pod disruption budget con nome my-pdb che seleziona tutti i " +#~ "pod con label app = nginx \n" +#~ "\t\t# e richiede che almeno la metà dei pod selezionati sia disponibile " +#~ "in qualsiasi momento.\n" +#~ "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" + #~ msgid "" #~ "\n" #~ "\t\t# Create a pod using the data in pod.json.\n" @@ -1749,6 +1120,100 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "\t\t# Elimina tutti i pod\n" #~ "\t\tkubectl delete pods --all" +#~ msgid "" +#~ "\n" +#~ "\t\t# Describe a node\n" +#~ "\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" +#~ "\n" +#~ "\t\t# Describe a pod\n" +#~ "\t\tkubectl describe pods/nginx\n" +#~ "\n" +#~ "\t\t# Describe a pod identified by type and name in \"pod.json\"\n" +#~ "\t\tkubectl describe -f pod.json\n" +#~ "\n" +#~ "\t\t# Describe all pods\n" +#~ "\t\tkubectl describe pods\n" +#~ "\n" +#~ "\t\t# Describe pods by label name=myLabel\n" +#~ "\t\tkubectl describe po -l name=myLabel\n" +#~ "\n" +#~ "\t\t# Describe all pods managed by the 'frontend' replication controller " +#~ "(rc-created pods\n" +#~ "\t\t# get the name of the rc as a prefix in the pod the name).\n" +#~ "\t\tkubectl describe pods frontend" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Descrive un nodo\n" +#~ "\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" +#~ "\n" +#~ "\t\t# Descrive un pod\n" +#~ "\t\tkubectl describe pods/nginx\n" +#~ "\n" +#~ "\t\t# Descrive un pod identificato da tipo e nome in \"pod.json\"\n" +#~ "\t\tkubectl describe -f pod.json\n" +#~ "\n" +#~ "\t\t# Descrive tutti i pod\n" +#~ "\t\tkubectl describe pods\n" +#~ "\n" +#~ "\t\t# Descrive i pod con label name=myLabel\n" +#~ "\t\tkubectl describe po -l name=myLabel\n" +#~ "\n" +#~ "\t\t# Descrivere tutti i pod gestiti dal controller di replica \"frontend" +#~ "\" (rc-created pods\n" +#~ "\t\t# ottiene il nome del rc come un prefisso del nome pod).\n" +#~ "\t\tkubectl describe pods frontend" + +#~ msgid "" +#~ "\n" +#~ "\t\t# Drain node \"foo\", even if there are pods not managed by a " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" +#~ "\t\t$ kubectl drain foo --force\n" +#~ "\n" +#~ "\t\t# As above, but abort if there are pods not managed by a " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use " +#~ "a grace period of 15 minutes.\n" +#~ "\t\t$ kubectl drain foo --grace-period=900" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Drain node \"foo\", anche se ci sono i baccelli non gestiti da " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet o StatefulSet su di " +#~ "esso.\n" +#~ "\t\t$ kubectl drain foo --force\n" +#~ "\n" +#~ "\t\t# Come sopra, ma interrompere se ci sono i baccelli non gestiti da " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, e " +#~ "utilizzare un periodo di grazia di 15 minuti.\n" +#~ "\t\t$ kubectl drain foo --grace-period=900" + +#~ msgid "" +#~ "\n" +#~ "\t\t# Edit the service named 'docker-registry':\n" +#~ "\t\tkubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Use an alternative editor\n" +#~ "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" +#~ "\t\tkubectl edit job.v1.batch/myjob -o json\n" +#~ "\n" +#~ "\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " +#~ "config in its annotation:\n" +#~ "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Modifica il servizio denominato 'docker-registry':\n" +#~ "\t\tkubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Usa un editor alternativo\n" +#~ "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Modifica il lavoro 'myjob' in JSON utilizzando il formato API v1:\n" +#~ "\t\tkubectl edit job.v1.batch/myjob -o json\n" +#~ "\n" +#~ "\t\t# Modifica la distribuzione 'mydeployment' in YAML e salvare la " +#~ "configurazione modificata nella sua annotazione:\n" +#~ "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" + #~ msgid "" #~ "\n" #~ "\t\t# Get output from running 'date' from pod 123456-7890, using the " @@ -1960,6 +1425,24 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "\t\t# Ascolta localmente una porta casuale, inoltra a 5000 nel pod\n" #~ "\t\tkubectl port-forward mypod 0:5000" +#~ msgid "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as schedulable.\n" +#~ "\t\t$ kubectl uncordon foo" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Segna il nodo \"foo\" come programmabile.\n" +#~ "\t\t$ Kubectl uncordon foo" + +#~ msgid "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as unschedulable.\n" +#~ "\t\tkubectl cordon foo" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Segna il nodo \"foo\" come non programmabile.\n" +#~ "\t\tkubectl cordon foo" + #~ msgid "" #~ "\n" #~ "\t\t# Partially update a node using strategic merge patch\n" @@ -2008,6 +1491,36 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "\t\t# Stampa l'indirizzo dei servizi master e cluster\n" #~ "\t\tkubectl cluster-info" +#~ msgid "" +#~ "\n" +#~ "\t\t# Replace a pod using the data in pod.json.\n" +#~ "\t\tkubectl replace -f ./pod.json\n" +#~ "\n" +#~ "\t\t# Replace a pod based on the JSON passed into stdin.\n" +#~ "\t\tcat pod.json | kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Update a single-container pod's image version (tag) to v4\n" +#~ "\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' " +#~ "| kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Force replace, delete and then re-create the resource\n" +#~ "\t\tkubectl replace --force -f ./pod.json" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Sostituire un pod utilizzando i dati in pod.json.\n" +#~ "\t\tkubectl replace -f ./pod.json\n" +#~ "\n" +#~ "\t\t# Sostituire un pod usando il JSON passato da stdin.\n" +#~ "\t\tcat pod.json | kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Aggiorna la versione dell'immagine (tag) di un singolo container di " +#~ "pod a v4\n" +#~ "\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' " +#~ "| kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Forza la sostituzione, cancellazione e quindi ricreare la risorsa\n" +#~ "\t\tkubectl replace --force -f ./pod.json" + #~ msgid "" #~ "\n" #~ "\t\t# Return snapshot logs from pod nginx with only one container\n" @@ -2132,6 +1645,39 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "\t\t# Scala il lavoro denominato 'cron' a 3.\n" #~ "\t\tkubectl scale --replicas=3 job/cron" +#~ msgid "" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml\n" +#~ "\n" +#~ "\t\t# Execute set-last-applied against each configuration file in a " +#~ "directory.\n" +#~ "\t\tkubectl apply set-last-applied -f path/\n" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file, will create the annotation if it does not already " +#~ "exist.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml --create-" +#~ "annotation=true\n" +#~ "\t\t" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Imposta l'ultima-configurazione-applicata di una risorsa che " +#~ "corrisponda al contenuto di un file.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml\n" +#~ "\n" +#~ "\t\t# Esegue set-last-applied per ogni file di configurazione in una " +#~ "directory.\n" +#~ "\t\tkubectl apply set-last-applied -f path/\n" +#~ "\n" +#~ "\t\t# Imposta la configurazione dell'ultima applicazione di una risorsa " +#~ "che corrisponda al contenuto di un file, creerà l'annotazione se non " +#~ "esiste già.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml --create-" +#~ "annotation=true\n" +#~ "\t\t" + #~ msgid "" #~ "\n" #~ "\t\t# Shut down foo.\n" @@ -2283,6 +1829,52 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "\t\t# Rimuovi dal nodo 'foo' tutti i marcatori con chiave 'dedicated'\n" #~ "\t\tkubectl taint nodes foo dedicated-" +#~ msgid "" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +#~ "\t\tkubectl label pods foo unhealthy=true\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " +#~ "overwriting any existing value.\n" +#~ "\t\tkubectl label --overwrite pods foo status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update all pods in the namespace\n" +#~ "\t\tkubectl label pods --all status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" +#~ "\t\tkubectl label -f pod.json status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" +#~ "\t\t# Does not require the --overwrite flag.\n" +#~ "\t\tkubectl label pods foo bar-" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Aggiorna il pod 'foo' con l'etichetta 'unhealthy' e il valore " +#~ "'true'.\n" +#~ "\t\tkubectl label pods foo unhealthy=true\n" +#~ "\n" +#~ "\t\t# Aggiorna il pod 'foo' con l'etichetta 'status' e il valore " +#~ "'unhealthy', sovrascrivendo qualsiasi valore esistente.\n" +#~ "\t\tkubectl label --overwrite pods foo status=unhealthy\n" +#~ "\n" +#~ "\t\t# Aggiorna tutti i pod nello spazio dei nomi\n" +#~ "\t\tkubectl label pods --all status=unhealthy\n" +#~ "\n" +#~ "\t\t# Aggiorna un pod identificato dal tipo e dal nome in \"pod.json\"\n" +#~ "\t\tkubectl label -f pod.json status=unhealthy\n" +#~ "\n" +#~ "\t\t# Aggiorna il pod 'foo' solo se la risorsa è invariata dalla versione " +#~ "1.\n" +#~ "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" +#~ "\n" +#~ "\t\t# Aggiorna il pod 'foo' rimuovendo un'etichetta denominata 'bar' se " +#~ "esiste.\n" +#~ "\t\t# Non richiede la flag -overwrite.\n" +#~ "\t\tkubectl label pods foo bar-" + #~ msgid "" #~ "\n" #~ "\t\t# Update pods of frontend-v1 using new replication controller data in " @@ -2326,6 +1918,24 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "frontend-v1 a frontend-v2).\n" #~ "\t\tkubectl rolling-update frontend-v1 frontend-v2 --rollback" +#~ msgid "" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by type/name in " +#~ "YAML.\n" +#~ "\t\tkubectl apply view-last-applied deployment/nginx\n" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by file in JSON\n" +#~ "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Visualizza le annotazioni dell'ultima-configurazione-applicata per " +#~ "tipo/nome in YAML.\n" +#~ "\t\tkubectl apply view-last-applied deployment/nginx\n" +#~ "\n" +#~ "\t\t# # Visualizza le annotazioni dell'ultima-configurazione-applicata " +#~ "per file in JSON.\n" +#~ "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" + #~ msgid "" #~ "\n" #~ "\t\tApply a configuration to a resource by filename or stdin.\n" @@ -2351,6 +1961,28 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "utilizzare a meno che non si sia a conoscenza di quale sia lo stato " #~ "attuale. Vedi https://issues.k8s.io/34274." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\n" +#~ "Crea un ClusterRole." + +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a ClusterRoleBinding for a particular ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\tCrea un ClusterRoleBinding per un ClusterRole particolare." + +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a RoleBinding for a particular Role or ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\tCrea un RoleBinding per un particolare Ruolo o ClusterRole." + #~ msgid "" #~ "\n" #~ "\t\tCreate a TLS secret from the given public/private key pair.\n" @@ -2365,6 +1997,41 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "certificato chiave pubblica deve essere .PEM codificato e corrispondere " #~ "alla chiave privata data." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a configmap based on a file, directory, or specified literal " +#~ "value.\n" +#~ "\n" +#~ "\t\tA single configmap may package one or more key/value pairs.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a file, the key will default to " +#~ "the basename of the file, and the value will\n" +#~ "\t\tdefault to the file content. If the basename is an invalid key, you " +#~ "may specify an alternate key.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a directory, each file whose " +#~ "basename is a valid key in the directory will be\n" +#~ "\t\tpackaged into the configmap. Any directory entries except regular " +#~ "files are ignored (e.g. subdirectories,\n" +#~ "\t\tsymlinks, devices, pipes, etc)." +#~ msgstr "" +#~ "\n" +#~ "\t\tCreare un configmap basato su un file, una directory o un valore " +#~ "literal specificato.\n" +#~ "\n" +#~ "\t\tUn singolo configmap può includere una o più coppie chiave/valore.\n" +#~ "\n" +#~ "\t\tQuando si crea una configmap basata su un file, il valore predefinito " +#~ "sarà il nome di base del file e il valore sarà\n" +#~ "\t\tpredefinito per il contenuto del file. Se il nome di base è una " +#~ "chiave non valida, è possibile specificare un tasto alternativo.\n" +#~ "\n" +#~ "\t\tQuando si crea un configmap basato su una directory, ogni file il cui " +#~ "nome di base è una chiave valida nella directory verrà\n" +#~ "\t\tpacchettizzata nel configmap. Le voci di directory tranne i file " +#~ "regolari vengono ignorati (ad esempio sottodirectory,\n" +#~ "\t\tsymlinks, devices, pipes, ecc)." + #~ msgid "" #~ "\n" #~ "\t\tCreate a new secret for use with Docker registries.\n" @@ -2412,6 +2079,15 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "credenziali. È possibile fornire queste informazioni \n" #~ "\t\tcreando un dockercfg secret e collegandolo al tuo account di servizio." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a pod disruption budget with the specified name, selector, and " +#~ "desired minimum available pods" +#~ msgstr "" +#~ "\n" +#~ "\t\tCrea un pod disruption budget con il nome specificato, selector e il " +#~ "numero minimo di pod disponibili" + #~ msgid "" #~ "\n" #~ "\t\tCreate a resource by filename or stdin.\n" @@ -2423,6 +2099,15 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "\n" #~ "\t\tSono accettati i formati JSON e YAML." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a resourcequota with the specified name, hard limits and " +#~ "optional scopes" +#~ msgstr "" +#~ "\n" +#~ "\t\tCrea una resourcequota con il nome specificato, hard limits e gli " +#~ "scope opzionali" + #~ msgid "" #~ "\n" #~ "\t\tCreate a secret based on a file, directory, or specified literal " @@ -2735,6 +2420,79 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "\n" #~ "\t\t![Workflow](http://kubernetes.io/images/docs/kubectl_drain.svg)" +#~ msgid "" +#~ "\n" +#~ "\t\tEdit a resource from the default editor.\n" +#~ "\n" +#~ "\t\tThe edit command allows you to directly edit any API resource you can " +#~ "retrieve via the\n" +#~ "\t\tcommand line tools. It will open the editor defined by your " +#~ "KUBE_EDITOR, or EDITOR\n" +#~ "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' " +#~ "for Windows.\n" +#~ "\t\tYou can edit multiple objects, although changes are applied one at a " +#~ "time. The command\n" +#~ "\t\taccepts filenames as well as command line arguments, although the " +#~ "files you point to must\n" +#~ "\t\tbe previously saved versions of resources.\n" +#~ "\n" +#~ "\t\tEditing is done with the API version used to fetch the resource.\n" +#~ "\t\tTo edit using a specific API version, fully-qualify the resource, " +#~ "version, and group.\n" +#~ "\n" +#~ "\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" +#~ "\n" +#~ "\t\tThe flag --windows-line-endings can be used to force Windows line " +#~ "endings,\n" +#~ "\t\totherwise the default for your operating system will be used.\n" +#~ "\n" +#~ "\t\tIn the event an error occurs while updating, a temporary file will be " +#~ "created on disk\n" +#~ "\t\tthat contains your unapplied changes. The most common error when " +#~ "updating a resource\n" +#~ "\t\tis another editor changing the resource on the server. When this " +#~ "occurs, you will have\n" +#~ "\t\tto apply your changes to the newer version of the resource, or update " +#~ "your temporary\n" +#~ "\t\tsaved copy to include the latest resource version." +#~ msgstr "" +#~ "\n" +#~ "\t\tModificare una risorsa dall'editor predefinito.\n" +#~ "\n" +#~ "\t\tIl comando di modifica consente di modificare direttamente qualsiasi " +#~ "risorsa API che è possibile recuperare tramite gli\n" +#~ "\t\tstrumenti di riga di comando. Apre l'editor definito dalle variabili " +#~ "d'ambiente\n" +#~ "\t\tKUBE_EDITOR o EDITOR, o ritornare a 'vi' per Linux o 'notepad' per " +#~ "Windows.\n" +#~ "\t\tÈ possibile modificare più oggetti, anche se le modifiche vengono " +#~ "applicate una alla volta. Il comando\n" +#~ "\t\taccetta sia nomi di file che argomenti da riga di comando, anche se i " +#~ "file a cui fa riferimento devono\n" +#~ "\t\tessere state salvate precedentemente le versioni delle risorse.\n" +#~ "\n" +#~ "\t\tLa modifica viene eseguita con la versione API utilizzata per " +#~ "recuperare la risorsa.\n" +#~ "\t\tPer modificare utilizzando una specifica versione API, fully-qualify " +#~ "la risorsa, versione e il gruppo.\n" +#~ "\n" +#~ "\t\tIl formato predefinito è YAML. Per modificare in JSON, specificare \"-" +#~ "o json\".\n" +#~ "\n" +#~ "\t\tIl flag --windows-line-endings può essere utilizzato per forzare i " +#~ "fine linea Windows,\n" +#~ "\t\taltrimenti verrà utilizzato il default per il sistema operativo.\n" +#~ "\n" +#~ "\t\tNel caso in cui si verifica un errore durante l'aggiornamento, verrà " +#~ "creato un file temporaneo sul disco\n" +#~ "\t\tche contiene le modifiche non apportate. L'errore più comune durante " +#~ "l'aggiornamento di una risorsa\n" +#~ "\t\tè una modifica da pare di un altro editor della risorsa sul server. " +#~ "Quando questo si verifica, dovrai\n" +#~ "\t\tapplicare le modifiche alla versione più recente della risorsa o " +#~ "aggiornare il tua copia\n" +#~ "\t\ttemporanea salvata per includere l'ultima versione delle risorse." + #~ msgid "" #~ "\n" #~ "\t\tOutput shell completion code for the specified shell (bash or zsh).\n" @@ -2976,6 +2734,23 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "\t\t* L'effetto deve essere NoSchedule, PreferNoSchedule o NoExecute.\n" #~ "\t\t* Attualmente il marcatore può essere applicato solo al nodo." +#~ msgid "" +#~ "\n" +#~ "\t\tView the latest last-applied-configuration annotations by type/name " +#~ "or file.\n" +#~ "\n" +#~ "\t\tThe default output will be printed to stdout in YAML format. One can " +#~ "use -o option\n" +#~ "\t\tto change output format." +#~ msgstr "" +#~ "\n" +#~ "\t\tVisualizza le annotazioni dell'ultima-configurazione-applicata per " +#~ "tipo/nome o file.\n" +#~ "\n" +#~ "\t\tL'output predefinito verrà stampato su stdout nel formato YAML. Si " +#~ "può usare l'opzione -o\n" +#~ "\t\tPer cambiare il formato di output." + #~ msgid "" #~ "\n" #~ "\t # !!!Important Note!!!\n" @@ -3017,6 +2792,18 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "\t\t# Copia /tmp/foo da un pod remoto in /tmp/bar localmente\n" #~ "\t\tkubectl cp /:/tmp/foo /tmp/bar" +#~ msgid "" +#~ "\n" +#~ "\t # Create a new TLS secret named tls-secret with the given key pair:\n" +#~ "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --" +#~ "key=path/to/tls.key" +#~ msgstr "" +#~ "\n" +#~ "\t # Crea un nuovo secret TLS denominato tls-secret con la coppia di " +#~ "dati fornita:\n" +#~ "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --" +#~ "key=path/to/tls.key" + #~ msgid "" #~ "\n" #~ "\t # Create a new secret named my-secret with keys for each file in " @@ -3092,6 +2879,62 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ " # Creare un nuovo servizio nodeport denominato my-ns\n" #~ " kubectl create service nodeport my-ns --tcp=5678:8080" +#~ msgid "" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend'.\n" +#~ " # If the same annotation is set multiple times, only the last value " +#~ "will be applied\n" +#~ " kubectl annotate pods foo description='my frontend'\n" +#~ "\n" +#~ " # Update a pod identified by type and name in \"pod.json\"\n" +#~ " kubectl annotate -f pod.json description='my frontend'\n" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend running nginx', overwriting any existing value.\n" +#~ " kubectl annotate --overwrite pods foo description='my frontend " +#~ "running nginx'\n" +#~ "\n" +#~ " # Update all pods in the namespace\n" +#~ " kubectl annotate pods --all description='my frontend running nginx'\n" +#~ "\n" +#~ " # Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ " kubectl annotate pods foo description='my frontend running nginx' --" +#~ "resource-version=1\n" +#~ "\n" +#~ " # Update pod 'foo' by removing an annotation named 'description' if " +#~ "it exists.\n" +#~ " # Does not require the --overwrite flag.\n" +#~ " kubectl annotate pods foo description-" +#~ msgstr "" +#~ "\n" +#~ " # Aggiorna il pod 'foo' con annotazione 'description'e il valore 'my " +#~ "frontend'.\n" +#~ " # Se la stessa annotazione è impostata più volte, verrà applicato " +#~ "solo l'ultimo valore\n" +#~ " kubectl annotate pods foo description='my frontend'\n" +#~ "\n" +#~ " # Aggiorna un pod identificato per tipo e nome in \"pod.json\"\n" +#~ " kubectl annotate -f pod.json description='my frontend'\n" +#~ "\n" +#~ " # Aggiorna pod 'foo' con la annotazione 'description' e il valore 'my " +#~ "frontend running nginx', sovrascrivendo qualsiasi valore esistente.\n" +#~ " kubectl annotate --overwrite pods foo description='my frontend " +#~ "running nginx'\n" +#~ "\n" +#~ " # Aggiorna tutti i baccelli nel namespace\n" +#~ " kubectl annotate pods --all description='my frontend running nginx'\n" +#~ "\n" +#~ " # Aggiorna il pod 'foo' solo se la risorsa è invariata dalla versione " +#~ "1.\n" +#~ " kubectl annotate pods foo description='my frontend running nginx' --" +#~ "resource-version=1\n" +#~ "\n" +#~ " # Aggiorna il pod 'foo' rimuovendo un'annotazione denominata " +#~ "'descrizione' se esiste.\n" +#~ " # Non richiede flag -overwrite.\n" +#~ " kubectl annotate pods foo description-" + #~ msgid "" #~ "\n" #~ " Create a clusterIP service with the specified name." @@ -3168,6 +3011,9 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "l'oggetto fornisca un campo valido apiVersion. Utilizzato solo se --" #~ "expose è true." +#~ msgid "Apply a configuration to a resource by filename or stdin" +#~ msgstr "Applica una configurazione risorsa per nomefile o stdin" + #~ msgid "Auto-scale a Deployment, ReplicaSet, or ReplicationController" #~ msgstr "Auto-scale a Deployment, ReplicaSet, o ReplicationController" @@ -3180,18 +3026,79 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "quando --image è specificato, altrimenti ignorato. Necessario quando si " #~ "utilizza --image su un contenitore a più contenitori" +#~ msgid "Create a ClusterRoleBinding for a particular ClusterRole" +#~ msgstr "Crea un ClusterRoleBinding per un ClusterRole particolare" + +#~ msgid "Create a LoadBalancer service." +#~ msgstr "Creare un servizio LoadBalancer." + +#~ msgid "Create a NodePort service." +#~ msgstr "Crea un servizio NodePort." + +#~ msgid "Create a RoleBinding for a particular Role or ClusterRole" +#~ msgstr "Crea un RoleBinding per un particolare Role o ClusterRole" + #~ msgid "Create a clusterIP service." #~ msgstr "Crea un servizio clusterIP." +#~ msgid "Create a configmap from a local file, directory or literal value" +#~ msgstr "" +#~ "Crea un configmap da un file locale, una directory o un valore letterale" + #~ msgid "Create a deployment with the specified name." #~ msgstr "Creare un deployment con il nome specificato." +#~ msgid "Create a pod disruption budget with the specified name." +#~ msgstr "Crea un pod disruption budget con il nome specificato." + +#~ msgid "Create a quota with the specified name." +#~ msgstr "Crea una quota con il nome specificato." + #~ msgid "Create a resource by filename or stdin" #~ msgstr "Crea una risorsa per nome file o stdin" +#~ msgid "Create a secret from a local file, directory or literal value" +#~ msgstr "" +#~ "Crea un secret da un file locale, una directory o un valore letterale" + +#~ msgid "Create a service using specified subcommand." +#~ msgstr "Crea un servizio utilizzando il subcommand specificato." + +#~ msgid "Create an ExternalName service." +#~ msgstr "Crea un servizio ExternalName." + +#~ msgid "" +#~ "Delete resources by filenames, stdin, resources and names, or by " +#~ "resources and label selector" +#~ msgstr "" +#~ "Elimina risorse selezionate per nomi di file, stdin, risorse e nomi, o " +#~ "per risorsa e selettore di label" + #~ msgid "Deprecated: Gracefully shut down a resource by name or filename" #~ msgstr "Deprecated: spegne correttamente una risorsa per nome o nome file" +#~ msgid "Display Resource (CPU/Memory) usage of nodes" +#~ msgstr "Visualizza l'utilizzo di risorse (CPU/Memoria) per nodo" + +#~ msgid "Display Resource (CPU/Memory) usage of pods" +#~ msgstr "Visualizza l'utilizzo di risorse (CPU/Memoria) per pod." + +#~ msgid "Display Resource (CPU/Memory) usage." +#~ msgstr "Visualizza l'utilizzo di risorse (CPU/Memoria)." + +#~ msgid "Display cluster info" +#~ msgstr "Visualizza informazioni sul cluster" + +#~ msgid "Displays the current-context" +#~ msgstr "Visualizza il current-context" + +#~ msgid "Documentation of resources" +#~ msgstr "Documentazione delle risorse" + +#~ msgid "Dump lots of relevant info for debugging and diagnosis" +#~ msgstr "" +#~ "Dump di un sacco di informazioni pertinenti per il debug e la diagnosi" + #~ msgid "" #~ "Explicit policy for when to pull container images. Required when --image " #~ "is same as existing image, ignored otherwise." @@ -3228,6 +3135,9 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ msgid "Perform a rolling update of the given ReplicationController" #~ msgstr "Eseguire un rolling update del ReplicationController specificato" +#~ msgid "Replace a resource by filename or stdin" +#~ msgstr "Sostituire una risorsa per nomefile o stdin" + #~ msgid "" #~ "Set a new size for a Deployment, ReplicaSet, Replication Controller, or " #~ "Job" @@ -3235,6 +3145,35 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "Imposta una nuova dimensione per Deployment, ReplicaSet, Replication " #~ "Controller, o Job" +#~ msgid "" +#~ "Set the last-applied-configuration annotation on a live object to match " +#~ "the contents of a file." +#~ msgstr "" +#~ "Imposta l'annotazione dell'ultima-configurazione-applicata ad un oggetto " +#~ "live per abbinare il contenuto di un file." + +#~ msgid "Sets a cluster entry in kubeconfig" +#~ msgstr "Imposta una voce cluster in kubeconfig" + +#~ msgid "Sets a context entry in kubeconfig" +#~ msgstr "Imposta una voce context in kubeconfig" + +#~ msgid "Sets a user entry in kubeconfig" +#~ msgstr "Imposta una voce utente in kubeconfig" + +#~ msgid "Sets an individual value in a kubeconfig file" +#~ msgstr "Imposta un singolo valore in un file kubeconfig" + +#~ msgid "Sets the current-context in a kubeconfig file" +#~ msgstr "Imposta il current-context in un file kubeconfig" + +#~ msgid "" +#~ "Take a replication controller, service, deployment or pod and expose it " +#~ "as a new Kubernetes Service" +#~ msgstr "" +#~ "Prende un replication controller, service, deployment o un pod e lo " +#~ "espone come nuovo servizio Kubernetes" + #~ msgid "" #~ "The key to use to differentiate between two different controllers, " #~ "default 'deployment'. Only relevant when --image is specified, ignored " @@ -3291,8 +3230,20 @@ msgstr "Kubectl controlla il gestore cluster di Kubernetes" #~ "Digitare per questo servizio: ClusterIP, NodePort o LoadBalancer. " #~ "Ppredefinito è 'ClusterIP'." +#~ msgid "Unsets an individual value in a kubeconfig file" +#~ msgstr "Annulla singolo valore in un file kubeconfig" + #~ msgid "Update field(s) of a resource using strategic merge patch" #~ msgstr "Aggiornare campo/i risorsa utilizzando merge patch strategici" +#~ msgid "Update image of a pod template" +#~ msgstr "Aggiorna immagine di un pod template" + +#~ msgid "" +#~ "View latest last-applied-configuration annotations of a resource/object" +#~ msgstr "" +#~ "Visualizza ultime annotazioni dell'ultima configurazione applicata per " +#~ "risorsa/oggetto" + #~ msgid "external name of service" #~ msgstr "nome esterno del servizio" diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ja_JP/LC_MESSAGES/k8s.mo b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ja_JP/LC_MESSAGES/k8s.mo index 4a13830cbe5..f917b6c5bf8 100644 Binary files a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ja_JP/LC_MESSAGES/k8s.mo and b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ja_JP/LC_MESSAGES/k8s.mo differ diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ja_JP/LC_MESSAGES/k8s.po b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ja_JP/LC_MESSAGES/k8s.po index 3f7322928e5..d6f4aa2c4b2 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ja_JP/LC_MESSAGES/k8s.po +++ b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ja_JP/LC_MESSAGES/k8s.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gettext-go-examples-hello\n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2021-05-17 15:40+0200\n" +"POT-Creation-Date: 2021-07-07 20:15+0200\n" "PO-Revision-Date: 2020-01-05 09:55+0900\n" "Last-Translator: Kohei Ota \n" "Language-Team: \n" @@ -19,34 +19,6 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using the " -"cluster-admin ClusterRole\n" -"\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" -"admin --user=user1 --user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using the " -"cluster-admin ClusterRole\n" -"\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" -"admin --user=user1 --user=user2 --group=group1" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" - #: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:62 msgid "" "\n" @@ -63,176 +35,6 @@ msgstr "" "\t\t # Show metrics for a given node\n" "\t\t kubectl top node NODE_NAME" -#: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:48 -#, c-format -msgid "" -"\n" -"\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 and " -"10, no target CPU utilization specified so a default autoscaling policy will " -"be used:\n" -"\t\tkubectl autoscale deployment foo --min=2 --max=10\n" -"\n" -"\t\t# Auto scale a replication controller \"foo\", with the number of pods " -"between 1 and 5, target CPU utilization at 80%:\n" -"\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" -msgstr "" -"\n" -"\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 and " -"10, no target CPU utilization specified so a default autoscaling policy will " -"be used:\n" -"\t\tkubectl autoscale deployment foo --min=2 --max=10\n" -"\n" -"\t\t# Auto scale a replication controller \"foo\", with the number of pods " -"between 1 and 5, target CPU utilization at 80%:\n" -"\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:44 -msgid "" -"\n" -"\t\t# Create a new resourcequota named my-quota\n" -"\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," -"replicationcontrollers=2,resourcequotas=1,secrets=5," -"persistentvolumeclaims=10\n" -"\n" -"\t\t# Create a new resourcequota named best-effort\n" -"\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" -msgstr "" -"\n" -"\t\t# Create a new resourcequota named my-quota\n" -"\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," -"replicationcontrollers=2,resourcequotas=1,secrets=5," -"persistentvolumeclaims=10\n" -"\n" -"\t\t# Create a new resourcequota named best-effort\n" -"\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:44 -#, c-format -msgid "" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=rails label\n" -"\t\t# and require at least one of them being available at any point in " -"time.\n" -"\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" -"available=1\n" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=nginx label\n" -"\t\t# and require at least half of the pods selected to be available at any " -"point in time.\n" -"\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" -msgstr "" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=rails label\n" -"\t\t# and require at least one of them being available at any point in " -"time.\n" -"\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" -"available=1\n" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=nginx label\n" -"\t\t# and require at least half of the pods selected to be available at any " -"point in time.\n" -"\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" - -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:50 -msgid "" -"\n" -"\t\t# Describe a node\n" -"\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" -"\n" -"\t\t# Describe a pod\n" -"\t\tkubectl describe pods/nginx\n" -"\n" -"\t\t# Describe a pod identified by type and name in \"pod.json\"\n" -"\t\tkubectl describe -f pod.json\n" -"\n" -"\t\t# Describe all pods\n" -"\t\tkubectl describe pods\n" -"\n" -"\t\t# Describe pods by label name=myLabel\n" -"\t\tkubectl describe po -l name=myLabel\n" -"\n" -"\t\t# Describe all pods managed by the 'frontend' replication controller (rc-" -"created pods\n" -"\t\t# get the name of the rc as a prefix in the pod the name).\n" -"\t\tkubectl describe pods frontend" -msgstr "" -"\n" -"\t\t# Describe a node\n" -"\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" -"\n" -"\t\t# Describe a pod\n" -"\t\tkubectl describe pods/nginx\n" -"\n" -"\t\t# Describe a pod identified by type and name in \"pod.json\"\n" -"\t\tkubectl describe -f pod.json\n" -"\n" -"\t\t# Describe all pods\n" -"\t\tkubectl describe pods\n" -"\n" -"\t\t# Describe pods by label name=myLabel\n" -"\t\tkubectl describe po -l name=myLabel\n" -"\n" -"\t\t# Describe all pods managed by the 'frontend' replication controller (rc-" -"created pods\n" -"\t\t# get the name of the rc as a prefix in the pod the name).\n" -"\t\tkubectl describe pods frontend" - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:135 -msgid "" -"\n" -"\t\t# Drain node \"foo\", even if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" -"\t\t$ kubectl drain foo --force\n" -"\n" -"\t\t# As above, but abort if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a " -"grace period of 15 minutes.\n" -"\t\t$ kubectl drain foo --grace-period=900" -msgstr "" -"\n" -"\t\t# Drain node \"foo\", even if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" -"\t\t$ kubectl drain foo --force\n" -"\n" -"\t\t# As above, but abort if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a " -"grace period of 15 minutes.\n" -"\t\t$ kubectl drain foo --grace-period=900" - -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:54 -msgid "" -"\n" -"\t\t# Edit the service named 'docker-registry':\n" -"\t\tkubectl edit svc/docker-registry\n" -"\n" -"\t\t# Use an alternative editor\n" -"\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" -"\n" -"\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" -"\t\tkubectl edit job.v1.batch/myjob -o json\n" -"\n" -"\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " -"config in its annotation:\n" -"\t\tkubectl edit deployment/mydeployment -o yaml --save-config" -msgstr "" -"\n" -"\t\t# Edit the service named 'docker-registry':\n" -"\t\tkubectl edit svc/docker-registry\n" -"\n" -"\t\t# Use an alternative editor\n" -"\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" -"\n" -"\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" -"\t\tkubectl edit job.v1.batch/myjob -o json\n" -"\n" -"\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " -"config in its annotation:\n" -"\t\tkubectl edit deployment/mydeployment -o yaml --save-config" - #: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:46 msgid "" "\n" @@ -249,27 +51,6 @@ msgstr "" "\t\t# Get the documentation of a specific field of a resource\n" "\t\tkubectl explain pods.spec.containers" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:85 -msgid "" -"\n" -"\t\t# Mark node \"foo\" as schedulable.\n" -"\t\t$ kubectl uncordon foo" -msgstr "" -"\n" -"\t\t# Mark node \"foo\" as schedulable.\n" -"\t\t$ kubectl uncordon foo" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:57 -msgid "" -"\n" -"\t\t# Mark node \"foo\" as unschedulable.\n" -"\t\tkubectl cordon foo" -msgstr "" -"\n" -"\t\t# Mark node \"foo\" as unschedulable.\n" -"\t\tkubectl cordon foo" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/options.go#L37 #: staging/src/k8s.io/kubectl/pkg/cmd/options/options.go:29 msgid "" @@ -302,67 +83,7 @@ msgstr "" "\t\t# Print the supported API versions\n" "\t\tkubectl api-versions" -#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:56 -msgid "" -"\n" -"\t\t# Replace a pod using the data in pod.json.\n" -"\t\tkubectl replace -f ./pod.json\n" -"\n" -"\t\t# Replace a pod based on the JSON passed into stdin.\n" -"\t\tcat pod.json | kubectl replace -f -\n" -"\n" -"\t\t# Update a single-container pod's image version (tag) to v4\n" -"\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' | " -"kubectl replace -f -\n" -"\n" -"\t\t# Force replace, delete and then re-create the resource\n" -"\t\tkubectl replace --force -f ./pod.json" -msgstr "" -"\n" -"\t\t# Replace a pod using the data in pod.json.\n" -"\t\tkubectl replace -f ./pod.json\n" -"\n" -"\t\t# Replace a pod based on the JSON passed into stdin.\n" -"\t\tcat pod.json | kubectl replace -f -\n" -"\n" -"\t\t# Update a single-container pod's image version (tag) to v4\n" -"\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' | " -"kubectl replace -f -\n" -"\n" -"\t\t# Force replace, delete and then re-create the resource\n" -"\t\tkubectl replace --force -f ./pod.json" - -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:75 -msgid "" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml\n" -"\n" -"\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" -"\t\tkubectl apply set-last-applied -f path/\n" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file, will create the annotation if it does not already exist.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" -"\t\t" -msgstr "" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml\n" -"\n" -"\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" -"\t\tkubectl apply set-last-applied -f path/\n" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file, will create the annotation if it does not already exist.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" -"\t\t" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:72 +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:75 msgid "" "\n" "\t\t# Show metrics for all pods in the default namespace\n" @@ -390,66 +111,6 @@ msgstr "" "\t\t# Show metrics for the pods defined by label name=myLabel\n" "\t\tkubectl top pod -l name=myLabel" -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:94 -msgid "" -"\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" -"\t\tkubectl label pods foo unhealthy=true\n" -"\n" -"\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" -"\t\tkubectl label --overwrite pods foo status=unhealthy\n" -"\n" -"\t\t# Update all pods in the namespace\n" -"\t\tkubectl label pods --all status=unhealthy\n" -"\n" -"\t\t# Update a pod identified by the type and name in \"pod.json\"\n" -"\t\tkubectl label -f pod.json status=unhealthy\n" -"\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" -"\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" -"\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" -"\t\tkubectl label pods foo bar-" -msgstr "" -"\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" -"\t\tkubectl label pods foo unhealthy=true\n" -"\n" -"\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" -"\t\tkubectl label --overwrite pods foo status=unhealthy\n" -"\n" -"\t\t# Update all pods in the namespace\n" -"\t\tkubectl label pods --all status=unhealthy\n" -"\n" -"\t\t# Update a pod identified by the type and name in \"pod.json\"\n" -"\t\tkubectl label -f pod.json status=unhealthy\n" -"\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" -"\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" -"\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" -"\t\tkubectl label pods foo bar-" - -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:53 -msgid "" -"\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" -"\t\tkubectl apply view-last-applied deployment/nginx\n" -"\n" -"\t\t# View the last-applied-configuration annotations by file in JSON\n" -"\t\tkubectl apply view-last-applied -f deploy.yaml -o json" -msgstr "" -"\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" -"\t\tkubectl apply view-last-applied deployment/nginx\n" -"\n" -"\t\t# View the last-applied-configuration annotations by file in JSON\n" -"\t\tkubectl apply view-last-applied -f deploy.yaml -o json" - #: pkg/kubectl/cmd/convert/convert.go:40 msgid "" "\n" @@ -480,69 +141,6 @@ msgstr "" "-o option\n" "\t\tto change to output destination." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L68 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38 -msgid "" -"\n" -"\t\tCreate a ClusterRole." -msgstr "" -"\n" -"\t\tCreate a ClusterRole." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a ClusterRoleBinding for a particular ClusterRole." -msgstr "" -"\n" -"\t\tCreate a ClusterRoleBinding for a particular ClusterRole." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a RoleBinding for a particular Role or ClusterRole." -msgstr "" -"\n" -"\t\tCreate a RoleBinding for a particular Role or ClusterRole." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:46 -msgid "" -"\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " -"value.\n" -"\n" -"\t\tA single configmap may package one or more key/value pairs.\n" -"\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " -"basename of the file, and the value will\n" -"\t\tdefault to the file content. If the basename is an invalid key, you may " -"specify an alternate key.\n" -"\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" -"\t\tsymlinks, devices, pipes, etc)." -msgstr "" -"\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " -"value.\n" -"\n" -"\t\tA single configmap may package one or more key/value pairs.\n" -"\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " -"basename of the file, and the value will\n" -"\t\tdefault to the file content. If the basename is an invalid key, you may " -"specify an alternate key.\n" -"\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" -"\t\tsymlinks, devices, pipes, etc)." - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_namespace.go#L44 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:39 msgid "" @@ -552,28 +150,6 @@ msgstr "" "\n" "\t\tCreate a namespace with the specified name." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:41 -msgid "" -"\n" -"\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" -msgstr "" -"\n" -"\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:41 -msgid "" -"\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" -msgstr "" -"\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:43 msgid "" @@ -592,80 +168,8 @@ msgstr "" "\n" "\t\tCreate a service account with the specified name." -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:30 -msgid "" -"\n" -"\t\tEdit a resource from the default editor.\n" -"\n" -"\t\tThe edit command allows you to directly edit any API resource you can " -"retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " -"or EDITOR\n" -"\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " -"Windows.\n" -"\t\tYou can edit multiple objects, although changes are applied one at a " -"time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " -"you point to must\n" -"\t\tbe previously saved versions of resources.\n" -"\n" -"\t\tEditing is done with the API version used to fetch the resource.\n" -"\t\tTo edit using a specific API version, fully-qualify the resource, " -"version, and group.\n" -"\n" -"\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" -"\n" -"\t\tThe flag --windows-line-endings can be used to force Windows line " -"endings,\n" -"\t\totherwise the default for your operating system will be used.\n" -"\n" -"\t\tIn the event an error occurs while updating, a temporary file will be " -"created on disk\n" -"\t\tthat contains your unapplied changes. The most common error when " -"updating a resource\n" -"\t\tis another editor changing the resource on the server. When this occurs, " -"you will have\n" -"\t\tto apply your changes to the newer version of the resource, or update " -"your temporary\n" -"\t\tsaved copy to include the latest resource version." -msgstr "" -"\n" -"\t\tEdit a resource from the default editor.\n" -"\n" -"\t\tThe edit command allows you to directly edit any API resource you can " -"retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " -"or EDITOR\n" -"\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " -"Windows.\n" -"\t\tYou can edit multiple objects, although changes are applied one at a " -"time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " -"you point to must\n" -"\t\tbe previously saved versions of resources.\n" -"\n" -"\t\tEditing is done with the API version used to fetch the resource.\n" -"\t\tTo edit using a specific API version, fully-qualify the resource, " -"version, and group.\n" -"\n" -"\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" -"\n" -"\t\tThe flag --windows-line-endings can be used to force Windows line " -"endings,\n" -"\t\totherwise the default for your operating system will be used.\n" -"\n" -"\t\tIn the event an error occurs while updating, a temporary file will be " -"created on disk\n" -"\t\tthat contains your unapplied changes. The most common error when " -"updating a resource\n" -"\t\tis another editor changing the resource on the server. When this occurs, " -"you will have\n" -"\t\tto apply your changes to the newer version of the resource, or update " -"your temporary\n" -"\t\tsaved copy to include the latest resource version." - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L127 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:84 msgid "" "\n" "\t\tMark node as schedulable." @@ -674,7 +178,7 @@ msgstr "" "\t\tMark node as schedulable." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:54 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:55 msgid "" "\n" "\t\tMark node as unschedulable." @@ -698,36 +202,6 @@ msgstr "" "'kubectl apply -f ' was run,\n" "\t\twithout updating any other parts of the object." -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:47 -msgid "" -"\n" -"\t\tView the latest last-applied-configuration annotations by type/name or " -"file.\n" -"\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." -msgstr "" -"\n" -"\t\tView the latest last-applied-configuration annotations by type/name or " -"file.\n" -"\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:47 -msgid "" -"\n" -"\t # Create a new TLS secret named tls-secret with the given key pair:\n" -"\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" -"to/tls.key" -msgstr "" -"\n" -"\t # Create a new TLS secret named tls-secret with the given key pair:\n" -"\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" -"to/tls.key" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:42 msgid "" "\n" @@ -814,62 +288,6 @@ msgstr "" " kubectl cluster-info dump --namespaces default,kube-system --output-" "directory=/path/to/cluster-state" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:94 -msgid "" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend'.\n" -" # If the same annotation is set multiple times, only the last value will " -"be applied\n" -" kubectl annotate pods foo description='my frontend'\n" -"\n" -" # Update a pod identified by type and name in \"pod.json\"\n" -" kubectl annotate -f pod.json description='my frontend'\n" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend running nginx', overwriting any existing value.\n" -" kubectl annotate --overwrite pods foo description='my frontend running " -"nginx'\n" -"\n" -" # Update all pods in the namespace\n" -" kubectl annotate pods --all description='my frontend running nginx'\n" -"\n" -" # Update pod 'foo' only if the resource is unchanged from version 1.\n" -" kubectl annotate pods foo description='my frontend running nginx' --" -"resource-version=1\n" -"\n" -" # Update pod 'foo' by removing an annotation named 'description' if it " -"exists.\n" -" # Does not require the --overwrite flag.\n" -" kubectl annotate pods foo description-" -msgstr "" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend'.\n" -" # If the same annotation is set multiple times, only the last value will " -"be applied\n" -" kubectl annotate pods foo description='my frontend'\n" -"\n" -" # Update a pod identified by type and name in \"pod.json\"\n" -" kubectl annotate -f pod.json description='my frontend'\n" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend running nginx', overwriting any existing value.\n" -" kubectl annotate --overwrite pods foo description='my frontend running " -"nginx'\n" -"\n" -" # Update all pods in the namespace\n" -" kubectl annotate pods --all description='my frontend running nginx'\n" -"\n" -" # Update pod 'foo' only if the resource is unchanged from version 1.\n" -" kubectl annotate pods foo description='my frontend running nginx' --" -"resource-version=1\n" -"\n" -" # Update pod 'foo' by removing an annotation named 'description' if it " -"exists.\n" -" # Does not require the --overwrite flag.\n" -" kubectl annotate pods foo description-" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_namespace.go#L44 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:308 msgid "" @@ -938,10 +356,6 @@ msgstr "" "is used to override the generated object. Requires that the object supply a " "valid apiVersion field." -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173 -msgid "Apply a configuration to a resource by filename or stdin" -msgstr "ファイル名または標準入力でリソースにコンフィグを適用する" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/certificates.go#L71 #: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:125 msgid "Approve a certificate signing request" @@ -957,7 +371,7 @@ msgstr "" "loadbalancing)." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/attach.go#L64 -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:104 +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:105 msgid "Attach to a running container" msgstr "Attach to a running container" @@ -971,7 +385,7 @@ msgstr "" "set to 'None' to create a headless service." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L55 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:100 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:101 msgid "ClusterRole this ClusterRoleBinding should reference" msgstr "ClusterRole this ClusterRoleBinding should reference" @@ -986,66 +400,25 @@ msgid "Convert config files between different API versions" msgstr "Convert config files between different API versions" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/cp.go#L64 -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:104 -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:105 +#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:106 msgid "Copy files and directories to and from containers." msgstr "Copy files and directories to and from containers." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:86 -msgid "Create a ClusterRoleBinding for a particular ClusterRole" -msgstr "Create a ClusterRoleBinding for a particular ClusterRole" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L181 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:323 -msgid "Create a LoadBalancer service." -msgstr "Create a LoadBalancer service." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L124 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:286 -msgid "Create a NodePort service." -msgstr "Create a NodePort service." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89 -msgid "Create a RoleBinding for a particular Role or ClusterRole" -msgstr "Create a RoleBinding for a particular Role or ClusterRole" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L214 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:94 msgid "Create a TLS secret" msgstr "Create a TLS secret" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_configmap.go#L59 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:124 -msgid "Create a configmap from a local file, directory or literal value" -msgstr "Create a configmap from a local file, directory or literal value" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_namespace.go#L44 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:83 msgid "Create a namespace with the specified name" msgstr "Create a namespace with the specified name" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:95 -msgid "Create a pod disruption budget with the specified name." -msgstr "Create a pod disruption budget with the specified name." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:91 -msgid "Create a quota with the specified name." -msgstr "Create a quota with the specified name." - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L143 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:134 msgid "Create a secret for use with a Docker registry" msgstr "Create a secret for use with a Docker registry" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L73 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:137 -msgid "Create a secret from a local file, directory or literal value" -msgstr "Create a secret from a local file, directory or literal value" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L34 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:49 msgid "Create a secret using specified subcommand" @@ -1056,40 +429,18 @@ msgstr "Create a secret using specified subcommand" msgid "Create a service account with the specified name" msgstr "Create a service account with the specified name" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L36 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:48 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:49 -msgid "Create a service using specified subcommand." -msgstr "Create a service using specified subcommand." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L240 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:363 -msgid "Create an ExternalName service." -msgstr "Create an ExternalName service." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/delete.go#L130 -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:135 -msgid "" -"Delete resources by filenames, stdin, resources and names, or by resources " -"and label selector" -msgstr "" -"Delete resources by filenames, stdin, resources and names, or by resources " -"and label selector" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_cluster.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42 msgid "Delete the specified cluster from the kubeconfig" msgstr "指定したコンテキストをkubeconfigから削除する" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_context.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42 msgid "Delete the specified context from the kubeconfig" msgstr "指定したコンテキストをkubeconfigから削除する" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/certificates.go#L121 -#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:170 +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:174 msgid "Deny a certificate signing request" msgstr "Deny a certificate signing request" @@ -1098,26 +449,6 @@ msgstr "Deny a certificate signing request" msgid "Describe one or many contexts" msgstr "1つまたは複数のコンテキストを記述する" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_node.go#L77 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:80 -msgid "Display Resource (CPU/Memory) usage of nodes" -msgstr "Display Resource (CPU/Memory) usage of nodes" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_pod.go#L79 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:96 -msgid "Display Resource (CPU/Memory) usage of pods" -msgstr "Display Resource (CPU/Memory) usage of pods" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50 -msgid "Display Resource (CPU/Memory) usage." -msgstr "Display Resource (CPU/Memory) usage." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo.go#L49 -#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo.go:65 -msgid "Display cluster info" -msgstr "クラスターの情報を表示する" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/get_clusters.go#L40 #: staging/src/k8s.io/kubectl/pkg/cmd/config/get_clusters.go:41 msgid "Display clusters defined in the kubeconfig" @@ -1129,32 +460,17 @@ msgid "Display merged kubeconfig settings or a specified kubeconfig file" msgstr "マージされたkubeconfigの設定または指定されたkubeconfigを表示する" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/get.go#L107 -#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:161 +#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:165 msgid "Display one or many resources" msgstr "1つまたは複数のリソースを表示する" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/current_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 -msgid "Displays the current-context" -msgstr "current-contextを表示する" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/explain.go#L50 -#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79 -msgid "Documentation of resources" -msgstr "リソースの説明を表示する" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L176 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:181 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:184 msgid "Drain node in preparation for maintenance" msgstr "Drain node in preparation for maintenance" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo_dump.go#L37 -#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:74 -msgid "Dump lots of relevant info for debugging and diagnosis" -msgstr "Dump lots of relevant info for debugging and diagnosis" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/edit.go#L100 -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:76 +#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:77 msgid "Edit a resource on the server" msgstr "Edit a resource on the server" @@ -1164,7 +480,7 @@ msgid "Email for Docker registry" msgstr "Email for Docker registry" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/exec.go#L68 -#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:88 +#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:89 msgid "Execute a command in a container" msgstr "Execute a command in a container" @@ -1188,7 +504,7 @@ msgstr "" "values: 'None', 'ClientIP'" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/annotate.go#L135 -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:155 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:157 msgid "" "If non-empty, the annotation update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -1199,7 +515,7 @@ msgstr "" "resource." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/label.go#L132 -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:152 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:154 msgid "" "If non-empty, the labels update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -1210,17 +526,17 @@ msgstr "" "resource." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L127 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:96 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:98 msgid "Mark node as schedulable" msgstr "Mark node as schedulable" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:68 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:69 msgid "Mark node as unschedulable" msgstr "Mark node as unschedulable" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_pause.go#L73 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:83 msgid "Mark the provided resource as paused" msgstr "Mark the provided resource as paused" @@ -1245,7 +561,7 @@ msgstr "" "traffic to. Optional." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/logs.go#L108 -#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:173 +#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:174 msgid "" "Only return logs after a specific date (RFC3339). Defaults to all logs. Only " "one of since-time / since may be used." @@ -1254,7 +570,7 @@ msgstr "" "one of since-time / since may be used." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/completion.go#L97 -#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:113 +#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:112 msgid "Output shell completion code for the specified shell (bash or zsh)" msgstr "Output shell completion code for the specified shell (bash or zsh)" @@ -1274,7 +590,7 @@ msgid "Path to private key associated with given certificate." msgstr "Path to private key associated with given certificate." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/scale.go#L82 -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:129 +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:130 msgid "" "Precondition for resource version. Requires that the current resource " "version match this value in order to scale." @@ -1298,13 +614,8 @@ msgstr "Print the list of flags inherited by all commands" msgid "Print the logs for a container in a pod" msgstr "Print the logs for a container in a pod" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/replace.go#L70 -#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:115 -msgid "Replace a resource by filename or stdin" -msgstr "Replace a resource by filename or stdin" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_resume.go#L71 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:87 msgid "Resume a paused resource" msgstr "Resume a paused resource" @@ -1333,51 +644,18 @@ msgstr "Server location for Docker registry" msgid "Set specific features on objects" msgstr "Set specific features on objects" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:101 -msgid "" -"Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." -msgstr "" -"Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_selector.go#L81 #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_selector.go:104 msgid "Set the selector on a resource" msgstr "リソースのセレクターを設定する" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_cluster.go#L67 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 -msgid "Sets a cluster entry in kubeconfig" -msgstr "kubeconfigにクラスターエントリを設定する" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_context.go#L57 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 -msgid "Sets a context entry in kubeconfig" -msgstr "kubeconfigにコンテキストエントリを設定する" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_authinfo.go#L103 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 -msgid "Sets a user entry in kubeconfig" -msgstr "kubeconfigにユーザーエントリを設定する" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/set.go#L59 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 -msgid "Sets an individual value in a kubeconfig file" -msgstr "kubeconfigに個別の変数を設定する" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/use_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:51 -msgid "Sets the current-context in a kubeconfig file" -msgstr "kubeconfigにcurrent-contextを設定する" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/describe.go#L80 -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:106 +#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:107 msgid "Show details of a specific resource or group of resources" msgstr "Show details of a specific resource or group of resources" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_status.go#L57 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:101 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:102 msgid "Show the status of the rollout" msgstr "Show the status of the rollout" @@ -1386,15 +664,6 @@ msgstr "Show the status of the rollout" msgid "Synonym for --target-port" msgstr "Synonym for --target-port" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L87 -#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:134 -msgid "" -"Take a replication controller, service, deployment or pod and expose it as a " -"new Kubernetes Service" -msgstr "" -"Take a replication controller, service, deployment or pod and expose it as a " -"new Kubernetes Service" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L114 #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:174 msgid "The image for the container to run." @@ -1485,36 +754,26 @@ msgid "The type of secret to create" msgstr "The type of secret to create" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_undo.go#L71 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:87 msgid "Undo a previous rollout" msgstr "現在のロールアウトを取り消す" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/unset.go#L47 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:59 -msgid "Unsets an individual value in a kubeconfig file" -msgstr "kubeconfigから変数を個別に削除する" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_image.go#L94 -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110 -msgid "Update image of a pod template" -msgstr "Update image of a pod template" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_resources.go#L101 #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_resources.go:116 msgid "Update resource requests/limits on objects with pod templates" msgstr "Update resource requests/limits on objects with pod templates" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:134 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:135 msgid "Update the annotations on a resource" msgstr "リソースのアノテーションを更新する" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/label.go#L109 -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:132 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:133 msgid "Update the labels on a resource" msgstr "リソースのラベルを更新する" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/taint.go#L88 -#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:108 +#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:109 msgid "Update the taints on one or more nodes" msgstr "Update the taints on one or more nodes" @@ -1523,13 +782,8 @@ msgstr "Update the taints on one or more nodes" msgid "Username for Docker registry authentication" msgstr "Username for Docker registry authentication" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77 -msgid "View latest last-applied-configuration annotations of a resource/object" -msgstr "" -"View latest last-applied-configuration annotations of a resource/object" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_history.go#L51 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:83 msgid "View rollout history" msgstr "ロールアウトの履歴を表示する" @@ -1547,10 +801,36 @@ msgid "dummy restart flag)" msgstr "dummy restart flag)" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/cmd.go#L217 -#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:478 +#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:227 msgid "kubectl controls the Kubernetes cluster manager" msgstr "kubectl controls the Kubernetes cluster manager" +#~ msgid "" +#~ "\n" +#~ "\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using " +#~ "the cluster-admin ClusterRole\n" +#~ "\t\t kubectl create clusterrolebinding cluster-admin --" +#~ "clusterrole=cluster-admin --user=user1 --user=user2 --group=group1" +#~ msgstr "" +#~ "\n" +#~ "\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using " +#~ "the cluster-admin ClusterRole\n" +#~ "\t\t kubectl create clusterrolebinding cluster-admin --" +#~ "clusterrole=cluster-admin --user=user1 --user=user2 --group=group1" + +#~ msgid "" +#~ "\n" +#~ "\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " +#~ "ClusterRole\n" +#~ "\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +#~ "user=user2 --group=group1" +#~ msgstr "" +#~ "\n" +#~ "\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " +#~ "ClusterRole\n" +#~ "\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +#~ "user=user2 --group=group1" + #~ msgid "" #~ "\n" #~ "\t\t # Create a new configmap named my-config based on folder bar\n" @@ -1632,6 +912,28 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\t\tkubectl apply --prune -f manifest.yaml --all --prune-whitelist=core/" #~ "v1/ConfigMap" +#, c-format +#~ msgid "" +#~ "\n" +#~ "\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 " +#~ "and 10, no target CPU utilization specified so a default autoscaling " +#~ "policy will be used:\n" +#~ "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" +#~ "\n" +#~ "\t\t# Auto scale a replication controller \"foo\", with the number of " +#~ "pods between 1 and 5, target CPU utilization at 80%:\n" +#~ "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 " +#~ "and 10, no target CPU utilization specified so a default autoscaling " +#~ "policy will be used:\n" +#~ "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" +#~ "\n" +#~ "\t\t# Auto scale a replication controller \"foo\", with the number of " +#~ "pods between 1 and 5, target CPU utilization at 80%:\n" +#~ "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" + #~ msgid "" #~ "\n" #~ "\t\t# Convert 'pod.yaml' to latest version and print to stdout.\n" @@ -1703,6 +1005,55 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\t\tkubectl create role pod-reader --verb=get --verg=list --verb=watch --" #~ "resource=pods --resource-name=readablepod" +#~ msgid "" +#~ "\n" +#~ "\t\t# Create a new resourcequota named my-quota\n" +#~ "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2," +#~ "services=3,replicationcontrollers=2,resourcequotas=1,secrets=5," +#~ "persistentvolumeclaims=10\n" +#~ "\n" +#~ "\t\t# Create a new resourcequota named best-effort\n" +#~ "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Create a new resourcequota named my-quota\n" +#~ "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2," +#~ "services=3,replicationcontrollers=2,resourcequotas=1,secrets=5," +#~ "persistentvolumeclaims=10\n" +#~ "\n" +#~ "\t\t# Create a new resourcequota named best-effort\n" +#~ "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" + +#, c-format +#~ msgid "" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=rails label\n" +#~ "\t\t# and require at least one of them being available at any point in " +#~ "time.\n" +#~ "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" +#~ "available=1\n" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=nginx label\n" +#~ "\t\t# and require at least half of the pods selected to be available at " +#~ "any point in time.\n" +#~ "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=rails label\n" +#~ "\t\t# and require at least one of them being available at any point in " +#~ "time.\n" +#~ "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" +#~ "available=1\n" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=nginx label\n" +#~ "\t\t# and require at least half of the pods selected to be available at " +#~ "any point in time.\n" +#~ "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" + #~ msgid "" #~ "\n" #~ "\t\t# Create a pod using the data in pod.json.\n" @@ -1840,6 +1191,99 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\t\t# Delete all pods\n" #~ "\t\tkubectl delete pods --all" +#~ msgid "" +#~ "\n" +#~ "\t\t# Describe a node\n" +#~ "\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" +#~ "\n" +#~ "\t\t# Describe a pod\n" +#~ "\t\tkubectl describe pods/nginx\n" +#~ "\n" +#~ "\t\t# Describe a pod identified by type and name in \"pod.json\"\n" +#~ "\t\tkubectl describe -f pod.json\n" +#~ "\n" +#~ "\t\t# Describe all pods\n" +#~ "\t\tkubectl describe pods\n" +#~ "\n" +#~ "\t\t# Describe pods by label name=myLabel\n" +#~ "\t\tkubectl describe po -l name=myLabel\n" +#~ "\n" +#~ "\t\t# Describe all pods managed by the 'frontend' replication controller " +#~ "(rc-created pods\n" +#~ "\t\t# get the name of the rc as a prefix in the pod the name).\n" +#~ "\t\tkubectl describe pods frontend" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Describe a node\n" +#~ "\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" +#~ "\n" +#~ "\t\t# Describe a pod\n" +#~ "\t\tkubectl describe pods/nginx\n" +#~ "\n" +#~ "\t\t# Describe a pod identified by type and name in \"pod.json\"\n" +#~ "\t\tkubectl describe -f pod.json\n" +#~ "\n" +#~ "\t\t# Describe all pods\n" +#~ "\t\tkubectl describe pods\n" +#~ "\n" +#~ "\t\t# Describe pods by label name=myLabel\n" +#~ "\t\tkubectl describe po -l name=myLabel\n" +#~ "\n" +#~ "\t\t# Describe all pods managed by the 'frontend' replication controller " +#~ "(rc-created pods\n" +#~ "\t\t# get the name of the rc as a prefix in the pod the name).\n" +#~ "\t\tkubectl describe pods frontend" + +#~ msgid "" +#~ "\n" +#~ "\t\t# Drain node \"foo\", even if there are pods not managed by a " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" +#~ "\t\t$ kubectl drain foo --force\n" +#~ "\n" +#~ "\t\t# As above, but abort if there are pods not managed by a " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use " +#~ "a grace period of 15 minutes.\n" +#~ "\t\t$ kubectl drain foo --grace-period=900" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Drain node \"foo\", even if there are pods not managed by a " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" +#~ "\t\t$ kubectl drain foo --force\n" +#~ "\n" +#~ "\t\t# As above, but abort if there are pods not managed by a " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use " +#~ "a grace period of 15 minutes.\n" +#~ "\t\t$ kubectl drain foo --grace-period=900" + +#~ msgid "" +#~ "\n" +#~ "\t\t# Edit the service named 'docker-registry':\n" +#~ "\t\tkubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Use an alternative editor\n" +#~ "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" +#~ "\t\tkubectl edit job.v1.batch/myjob -o json\n" +#~ "\n" +#~ "\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " +#~ "config in its annotation:\n" +#~ "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Edit the service named 'docker-registry':\n" +#~ "\t\tkubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Use an alternative editor\n" +#~ "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" +#~ "\t\tkubectl edit job.v1.batch/myjob -o json\n" +#~ "\n" +#~ "\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " +#~ "config in its annotation:\n" +#~ "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" + #~ msgid "" #~ "\n" #~ "\t\t# Get output from running 'date' from pod 123456-7890, using the " @@ -2051,6 +1495,25 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\t\t# Listen on a random port locally, forwarding to 5000 in the pod\t" #~ "\tkubectl port-forward pod/mypod :5000" +#~ msgid "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as schedulable.\n" +#~ "\t\t$ kubectl uncordon foo" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as schedulable.\n" +#~ "\t\t$ kubectl uncordon foo" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 +#~ msgid "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as unschedulable.\n" +#~ "\t\tkubectl cordon foo" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as unschedulable.\n" +#~ "\t\tkubectl cordon foo" + #~ msgid "" #~ "\n" #~ "\t\t# Partially update a node using strategic merge patch\n" @@ -2099,6 +1562,35 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\t\t# Print the address of the master and cluster services\n" #~ "\t\tkubectl cluster-info" +#~ msgid "" +#~ "\n" +#~ "\t\t# Replace a pod using the data in pod.json.\n" +#~ "\t\tkubectl replace -f ./pod.json\n" +#~ "\n" +#~ "\t\t# Replace a pod based on the JSON passed into stdin.\n" +#~ "\t\tcat pod.json | kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Update a single-container pod's image version (tag) to v4\n" +#~ "\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' " +#~ "| kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Force replace, delete and then re-create the resource\n" +#~ "\t\tkubectl replace --force -f ./pod.json" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Replace a pod using the data in pod.json.\n" +#~ "\t\tkubectl replace -f ./pod.json\n" +#~ "\n" +#~ "\t\t# Replace a pod based on the JSON passed into stdin.\n" +#~ "\t\tcat pod.json | kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Update a single-container pod's image version (tag) to v4\n" +#~ "\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' " +#~ "| kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Force replace, delete and then re-create the resource\n" +#~ "\t\tkubectl replace --force -f ./pod.json" + #~ msgid "" #~ "\n" #~ "\t\t# Return snapshot logs from pod nginx with only one container\n" @@ -2222,6 +1714,39 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\t\t# Scale job named 'cron' to 3.\n" #~ "\t\tkubectl scale --replicas=3 job/cron" +#~ msgid "" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml\n" +#~ "\n" +#~ "\t\t# Execute set-last-applied against each configuration file in a " +#~ "directory.\n" +#~ "\t\tkubectl apply set-last-applied -f path/\n" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file, will create the annotation if it does not already " +#~ "exist.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml --create-" +#~ "annotation=true\n" +#~ "\t\t" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml\n" +#~ "\n" +#~ "\t\t# Execute set-last-applied against each configuration file in a " +#~ "directory.\n" +#~ "\t\tkubectl apply set-last-applied -f path/\n" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file, will create the annotation if it does not already " +#~ "exist.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml --create-" +#~ "annotation=true\n" +#~ "\t\t" + #~ msgid "" #~ "\n" #~ "\t\t# Shut down foo.\n" @@ -2373,6 +1898,49 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\t\t# Remove from node 'foo' all the taints with key 'dedicated'\n" #~ "\t\tkubectl taint nodes foo dedicated-" +#~ msgid "" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +#~ "\t\tkubectl label pods foo unhealthy=true\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " +#~ "overwriting any existing value.\n" +#~ "\t\tkubectl label --overwrite pods foo status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update all pods in the namespace\n" +#~ "\t\tkubectl label pods --all status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" +#~ "\t\tkubectl label -f pod.json status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" +#~ "\t\t# Does not require the --overwrite flag.\n" +#~ "\t\tkubectl label pods foo bar-" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +#~ "\t\tkubectl label pods foo unhealthy=true\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " +#~ "overwriting any existing value.\n" +#~ "\t\tkubectl label --overwrite pods foo status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update all pods in the namespace\n" +#~ "\t\tkubectl label pods --all status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" +#~ "\t\tkubectl label -f pod.json status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" +#~ "\t\t# Does not require the --overwrite flag.\n" +#~ "\t\tkubectl label pods foo bar-" + #~ msgid "" #~ "\n" #~ "\t\t# Update pods of frontend-v1 using new replication controller data in " @@ -2416,6 +1984,23 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "to frontend-v2).\n" #~ "\t\tkubectl rolling-update frontend-v1 frontend-v2 --rollback" +#~ msgid "" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by type/name in " +#~ "YAML.\n" +#~ "\t\tkubectl apply view-last-applied deployment/nginx\n" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by file in JSON\n" +#~ "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" +#~ msgstr "" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by type/name in " +#~ "YAML.\n" +#~ "\t\tkubectl apply view-last-applied deployment/nginx\n" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by file in JSON\n" +#~ "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" + #~ msgid "" #~ "\n" #~ "\t\tApply a configuration to a resource by filename or stdin.\n" @@ -2441,6 +2026,30 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "not use unless you are aware of what the current state is. See https://" #~ "issues.k8s.io/34274." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L68 +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\tCreate a ClusterRole." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a ClusterRoleBinding for a particular ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\tCreate a ClusterRoleBinding for a particular ClusterRole." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a RoleBinding for a particular Role or ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\tCreate a RoleBinding for a particular Role or ClusterRole." + #~ msgid "" #~ "\n" #~ "\t\tCreate a TLS secret from the given public/private key pair.\n" @@ -2454,6 +2063,41 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\t\tThe public/private key pair must exist before hand. The public key " #~ "certificate must be .PEM encoded and match the given private key." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a configmap based on a file, directory, or specified literal " +#~ "value.\n" +#~ "\n" +#~ "\t\tA single configmap may package one or more key/value pairs.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a file, the key will default to " +#~ "the basename of the file, and the value will\n" +#~ "\t\tdefault to the file content. If the basename is an invalid key, you " +#~ "may specify an alternate key.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a directory, each file whose " +#~ "basename is a valid key in the directory will be\n" +#~ "\t\tpackaged into the configmap. Any directory entries except regular " +#~ "files are ignored (e.g. subdirectories,\n" +#~ "\t\tsymlinks, devices, pipes, etc)." +#~ msgstr "" +#~ "\n" +#~ "\t\tCreate a configmap based on a file, directory, or specified literal " +#~ "value.\n" +#~ "\n" +#~ "\t\tA single configmap may package one or more key/value pairs.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a file, the key will default to " +#~ "the basename of the file, and the value will\n" +#~ "\t\tdefault to the file content. If the basename is an invalid key, you " +#~ "may specify an alternate key.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a directory, each file whose " +#~ "basename is a valid key in the directory will be\n" +#~ "\t\tpackaged into the configmap. Any directory entries except regular " +#~ "files are ignored (e.g. subdirectories,\n" +#~ "\t\tsymlinks, devices, pipes, etc)." + #~ msgid "" #~ "\n" #~ "\t\tCreate a new secret for use with Docker registries.\n" @@ -2501,6 +2145,16 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\t\tby creating a dockercfg secret and attaching it to your service " #~ "account." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a pod disruption budget with the specified name, selector, and " +#~ "desired minimum available pods" +#~ msgstr "" +#~ "\n" +#~ "\t\tCreate a pod disruption budget with the specified name, selector, and " +#~ "desired minimum available pods" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create.go#L56 #~ msgid "" #~ "\n" @@ -2513,6 +2167,16 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\n" #~ "\t\tJSON and YAML formats are accepted." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a resourcequota with the specified name, hard limits and " +#~ "optional scopes" +#~ msgstr "" +#~ "\n" +#~ "\t\tCreate a resourcequota with the specified name, hard limits and " +#~ "optional scopes" + #~ msgid "" #~ "\n" #~ "\t\tCreate a secret based on a file, directory, or specified literal " @@ -2822,6 +2486,77 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\n" #~ "\t\t![Workflow](http://kubernetes.io/images/docs/kubectl_drain.svg)" +#~ msgid "" +#~ "\n" +#~ "\t\tEdit a resource from the default editor.\n" +#~ "\n" +#~ "\t\tThe edit command allows you to directly edit any API resource you can " +#~ "retrieve via the\n" +#~ "\t\tcommand line tools. It will open the editor defined by your " +#~ "KUBE_EDITOR, or EDITOR\n" +#~ "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' " +#~ "for Windows.\n" +#~ "\t\tYou can edit multiple objects, although changes are applied one at a " +#~ "time. The command\n" +#~ "\t\taccepts filenames as well as command line arguments, although the " +#~ "files you point to must\n" +#~ "\t\tbe previously saved versions of resources.\n" +#~ "\n" +#~ "\t\tEditing is done with the API version used to fetch the resource.\n" +#~ "\t\tTo edit using a specific API version, fully-qualify the resource, " +#~ "version, and group.\n" +#~ "\n" +#~ "\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" +#~ "\n" +#~ "\t\tThe flag --windows-line-endings can be used to force Windows line " +#~ "endings,\n" +#~ "\t\totherwise the default for your operating system will be used.\n" +#~ "\n" +#~ "\t\tIn the event an error occurs while updating, a temporary file will be " +#~ "created on disk\n" +#~ "\t\tthat contains your unapplied changes. The most common error when " +#~ "updating a resource\n" +#~ "\t\tis another editor changing the resource on the server. When this " +#~ "occurs, you will have\n" +#~ "\t\tto apply your changes to the newer version of the resource, or update " +#~ "your temporary\n" +#~ "\t\tsaved copy to include the latest resource version." +#~ msgstr "" +#~ "\n" +#~ "\t\tEdit a resource from the default editor.\n" +#~ "\n" +#~ "\t\tThe edit command allows you to directly edit any API resource you can " +#~ "retrieve via the\n" +#~ "\t\tcommand line tools. It will open the editor defined by your " +#~ "KUBE_EDITOR, or EDITOR\n" +#~ "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' " +#~ "for Windows.\n" +#~ "\t\tYou can edit multiple objects, although changes are applied one at a " +#~ "time. The command\n" +#~ "\t\taccepts filenames as well as command line arguments, although the " +#~ "files you point to must\n" +#~ "\t\tbe previously saved versions of resources.\n" +#~ "\n" +#~ "\t\tEditing is done with the API version used to fetch the resource.\n" +#~ "\t\tTo edit using a specific API version, fully-qualify the resource, " +#~ "version, and group.\n" +#~ "\n" +#~ "\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" +#~ "\n" +#~ "\t\tThe flag --windows-line-endings can be used to force Windows line " +#~ "endings,\n" +#~ "\t\totherwise the default for your operating system will be used.\n" +#~ "\n" +#~ "\t\tIn the event an error occurs while updating, a temporary file will be " +#~ "created on disk\n" +#~ "\t\tthat contains your unapplied changes. The most common error when " +#~ "updating a resource\n" +#~ "\t\tis another editor changing the resource on the server. When this " +#~ "occurs, you will have\n" +#~ "\t\tto apply your changes to the newer version of the resource, or update " +#~ "your temporary\n" +#~ "\t\tsaved copy to include the latest resource version." + #~ msgid "" #~ "\n" #~ "\t\tOutput shell completion code for the specified shell (bash or zsh).\n" @@ -3058,6 +2793,23 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\t\t* The effect must be NoSchedule, PreferNoSchedule or NoExecute.\n" #~ "\t\t* Currently taint can only apply to node." +#~ msgid "" +#~ "\n" +#~ "\t\tView the latest last-applied-configuration annotations by type/name " +#~ "or file.\n" +#~ "\n" +#~ "\t\tThe default output will be printed to stdout in YAML format. One can " +#~ "use -o option\n" +#~ "\t\tto change output format." +#~ msgstr "" +#~ "\n" +#~ "\t\tView the latest last-applied-configuration annotations by type/name " +#~ "or file.\n" +#~ "\n" +#~ "\t\tThe default output will be printed to stdout in YAML format. One can " +#~ "use -o option\n" +#~ "\t\tto change output format." + #~ msgid "" #~ "\n" #~ "\t # !!!Important Note!!!\n" @@ -3099,6 +2851,17 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "\t\t# Copy /tmp/foo from a remote pod to /tmp/bar locally\n" #~ "\t\tkubectl cp /:/tmp/foo /tmp/bar" +#~ msgid "" +#~ "\n" +#~ "\t # Create a new TLS secret named tls-secret with the given key pair:\n" +#~ "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --" +#~ "key=path/to/tls.key" +#~ msgstr "" +#~ "\n" +#~ "\t # Create a new TLS secret named tls-secret with the given key pair:\n" +#~ "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --" +#~ "key=path/to/tls.key" + #~ msgid "" #~ "\n" #~ "\t # Create a new secret named my-secret with keys for each file in " @@ -3172,6 +2935,61 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ " # Create a new nodeport service named my-ns\n" #~ " kubectl create service nodeport my-ns --tcp=5678:8080" +#~ msgid "" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend'.\n" +#~ " # If the same annotation is set multiple times, only the last value " +#~ "will be applied\n" +#~ " kubectl annotate pods foo description='my frontend'\n" +#~ "\n" +#~ " # Update a pod identified by type and name in \"pod.json\"\n" +#~ " kubectl annotate -f pod.json description='my frontend'\n" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend running nginx', overwriting any existing value.\n" +#~ " kubectl annotate --overwrite pods foo description='my frontend " +#~ "running nginx'\n" +#~ "\n" +#~ " # Update all pods in the namespace\n" +#~ " kubectl annotate pods --all description='my frontend running nginx'\n" +#~ "\n" +#~ " # Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ " kubectl annotate pods foo description='my frontend running nginx' --" +#~ "resource-version=1\n" +#~ "\n" +#~ " # Update pod 'foo' by removing an annotation named 'description' if " +#~ "it exists.\n" +#~ " # Does not require the --overwrite flag.\n" +#~ " kubectl annotate pods foo description-" +#~ msgstr "" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend'.\n" +#~ " # If the same annotation is set multiple times, only the last value " +#~ "will be applied\n" +#~ " kubectl annotate pods foo description='my frontend'\n" +#~ "\n" +#~ " # Update a pod identified by type and name in \"pod.json\"\n" +#~ " kubectl annotate -f pod.json description='my frontend'\n" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend running nginx', overwriting any existing value.\n" +#~ " kubectl annotate --overwrite pods foo description='my frontend " +#~ "running nginx'\n" +#~ "\n" +#~ " # Update all pods in the namespace\n" +#~ " kubectl annotate pods --all description='my frontend running nginx'\n" +#~ "\n" +#~ " # Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ " kubectl annotate pods foo description='my frontend running nginx' --" +#~ "resource-version=1\n" +#~ "\n" +#~ " # Update pod 'foo' by removing an annotation named 'description' if " +#~ "it exists.\n" +#~ " # Does not require the --overwrite flag.\n" +#~ " kubectl annotate pods foo description-" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_serviceaccount.go#L44 #~ msgid "" #~ "\n" @@ -3252,6 +3070,9 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "empty, it is used to override the generated object. Requires that the " #~ "object supply a valid apiVersion field. Only used if --expose is true." +#~ msgid "Apply a configuration to a resource by filename or stdin" +#~ msgstr "ファイル名または標準入力でリソースにコンフィグを適用する" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/autoscale.go#L55 #~ msgid "Auto-scale a Deployment, ReplicaSet, or ReplicationController" #~ msgstr "Auto-scale a Deployment, ReplicaSet, or ReplicationController" @@ -3266,22 +3087,98 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "image is specified, ignored otherwise. Required when using --image on a " #~ "multi-container pod" +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 +#~ msgid "Create a ClusterRoleBinding for a particular ClusterRole" +#~ msgstr "Create a ClusterRoleBinding for a particular ClusterRole" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L181 +#~ msgid "Create a LoadBalancer service." +#~ msgstr "Create a LoadBalancer service." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L124 +#~ msgid "Create a NodePort service." +#~ msgstr "Create a NodePort service." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 +#~ msgid "Create a RoleBinding for a particular Role or ClusterRole" +#~ msgstr "Create a RoleBinding for a particular Role or ClusterRole" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L68 #~ msgid "Create a clusterIP service." #~ msgstr "Create a clusterIP service." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_configmap.go#L59 +#~ msgid "Create a configmap from a local file, directory or literal value" +#~ msgstr "Create a configmap from a local file, directory or literal value" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_deployment.go#L44 #~ msgid "Create a deployment with the specified name." #~ msgstr "Create a deployment with the specified name." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 +#~ msgid "Create a pod disruption budget with the specified name." +#~ msgstr "Create a pod disruption budget with the specified name." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 +#~ msgid "Create a quota with the specified name." +#~ msgstr "Create a quota with the specified name." + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create.go#L56 #~ msgid "Create a resource by filename or stdin" #~ msgstr "ファイル名または標準入力でリソースを作成する" +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L73 +#~ msgid "Create a secret from a local file, directory or literal value" +#~ msgstr "Create a secret from a local file, directory or literal value" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L36 +#~ msgid "Create a service using specified subcommand." +#~ msgstr "Create a service using specified subcommand." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L240 +#~ msgid "Create an ExternalName service." +#~ msgstr "Create an ExternalName service." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/delete.go#L130 +#~ msgid "" +#~ "Delete resources by filenames, stdin, resources and names, or by " +#~ "resources and label selector" +#~ msgstr "" +#~ "Delete resources by filenames, stdin, resources and names, or by " +#~ "resources and label selector" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/stop.go#L58 #~ msgid "Deprecated: Gracefully shut down a resource by name or filename" #~ msgstr "Deprecated: Gracefully shut down a resource by name or filename" +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_node.go#L77 +#~ msgid "Display Resource (CPU/Memory) usage of nodes" +#~ msgstr "Display Resource (CPU/Memory) usage of nodes" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_pod.go#L79 +#~ msgid "Display Resource (CPU/Memory) usage of pods" +#~ msgstr "Display Resource (CPU/Memory) usage of pods" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top.go#L43 +#~ msgid "Display Resource (CPU/Memory) usage." +#~ msgstr "Display Resource (CPU/Memory) usage." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo.go#L49 +#~ msgid "Display cluster info" +#~ msgstr "クラスターの情報を表示する" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/current_context.go#L48 +#~ msgid "Displays the current-context" +#~ msgstr "current-contextを表示する" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/explain.go#L50 +#~ msgid "Documentation of resources" +#~ msgstr "リソースの説明を表示する" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo_dump.go#L37 +#~ msgid "Dump lots of relevant info for debugging and diagnosis" +#~ msgstr "Dump lots of relevant info for debugging and diagnosis" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollingupdate.go#L102 #~ msgid "" #~ "Explicit policy for when to pull container images. Required when --image " @@ -3324,6 +3221,10 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ msgid "Perform a rolling update of the given ReplicationController" #~ msgstr "Perform a rolling update of the given ReplicationController" +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/replace.go#L70 +#~ msgid "Replace a resource by filename or stdin" +#~ msgstr "Replace a resource by filename or stdin" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/scale.go#L71 #~ msgid "" #~ "Set a new size for a Deployment, ReplicaSet, Replication Controller, or " @@ -3332,6 +3233,41 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "Set a new size for a Deployment, ReplicaSet, Replication Controller, or " #~ "Job" +#~ msgid "" +#~ "Set the last-applied-configuration annotation on a live object to match " +#~ "the contents of a file." +#~ msgstr "" +#~ "Set the last-applied-configuration annotation on a live object to match " +#~ "the contents of a file." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_cluster.go#L67 +#~ msgid "Sets a cluster entry in kubeconfig" +#~ msgstr "kubeconfigにクラスターエントリを設定する" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_context.go#L57 +#~ msgid "Sets a context entry in kubeconfig" +#~ msgstr "kubeconfigにコンテキストエントリを設定する" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_authinfo.go#L103 +#~ msgid "Sets a user entry in kubeconfig" +#~ msgstr "kubeconfigにユーザーエントリを設定する" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/set.go#L59 +#~ msgid "Sets an individual value in a kubeconfig file" +#~ msgstr "kubeconfigに個別の変数を設定する" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/use_context.go#L48 +#~ msgid "Sets the current-context in a kubeconfig file" +#~ msgstr "kubeconfigにcurrent-contextを設定する" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L87 +#~ msgid "" +#~ "Take a replication controller, service, deployment or pod and expose it " +#~ "as a new Kubernetes Service" +#~ msgstr "" +#~ "Take a replication controller, service, deployment or pod and expose it " +#~ "as a new Kubernetes Service" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollingupdate.go#L100 #~ msgid "" #~ "The key to use to differentiate between two different controllers, " @@ -3394,10 +3330,23 @@ msgstr "kubectl controls the Kubernetes cluster manager" #~ "Type for this service: ClusterIP, NodePort, or LoadBalancer. Default is " #~ "'ClusterIP'." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/unset.go#L47 +#~ msgid "Unsets an individual value in a kubeconfig file" +#~ msgstr "kubeconfigから変数を個別に削除する" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/patch.go#L91 #~ msgid "Update field(s) of a resource using strategic merge patch" #~ msgstr "Update field(s) of a resource using strategic merge patch" +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_image.go#L94 +#~ msgid "Update image of a pod template" +#~ msgstr "Update image of a pod template" + +#~ msgid "" +#~ "View latest last-applied-configuration annotations of a resource/object" +#~ msgstr "" +#~ "View latest last-applied-configuration annotations of a resource/object" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L253 #~ msgid "external name of service" #~ msgstr "external name of service" diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ko_KR/LC_MESSAGES/k8s.mo b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ko_KR/LC_MESSAGES/k8s.mo index f63e13184c8..70398367b1e 100644 Binary files a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ko_KR/LC_MESSAGES/k8s.mo and b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ko_KR/LC_MESSAGES/k8s.mo differ diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ko_KR/LC_MESSAGES/k8s.po b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ko_KR/LC_MESSAGES/k8s.po index 9f59464eba4..b6804ef908b 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ko_KR/LC_MESSAGES/k8s.po +++ b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/ko_KR/LC_MESSAGES/k8s.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gettext-go-examples-hello\n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2021-05-17 15:40+0200\n" +"POT-Creation-Date: 2021-07-07 20:15+0200\n" "PO-Revision-Date: 2018-04-03 06:05+0900\n" "Last-Translator: Ian Y. Choi \n" "Language-Team: \n" @@ -19,19 +19,12 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=1; plural=0;\n" -# https://github.com/kubernetes/kubernetes/blob/masterpkg/kubectl/cmd/apply.go#L98 -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173 -msgid "Apply a configuration to a resource by filename or stdin" -msgstr "구성을 파일 이름 또는 stdin에 의한 자원에 적용합니다" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_cluster.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42 msgid "Delete the specified cluster from the kubeconfig" msgstr "kubeconfig에서 지정된 클러스터를 삭제합니다" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_context.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42 msgid "Delete the specified context from the kubeconfig" msgstr "kubeconfig에서 지정된 컨텍스트를 삭제합니다" @@ -51,50 +44,47 @@ msgstr "kubeconfig에 정의된 클러스터를 표시합니다" msgid "Display merged kubeconfig settings or a specified kubeconfig file" msgstr "병합된 kubeconfig 설정 또는 지정된 kubeconfig 파일을 표시합니다" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/current_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 -msgid "Displays the current-context" -msgstr "현재-컨텍스트를 표시합니다" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/config.go#L39 #: staging/src/k8s.io/kubectl/pkg/cmd/config/config.go:42 msgid "Modify kubeconfig files" msgstr "kubeconfig 파일을 수정합니다" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_cluster.go#L67 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 -msgid "Sets a cluster entry in kubeconfig" -msgstr "kubeconfig에서 클러스터 항목을 설정합니다" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_context.go#L57 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 -msgid "Sets a context entry in kubeconfig" -msgstr "kubeconfig에서 컨텍스트 항목을 설정합니다" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_authinfo.go#L103 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 -msgid "Sets a user entry in kubeconfig" -msgstr "kubeconfig에서 사용자 항목을 설정합니다" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/set.go#L59 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 -msgid "Sets an individual value in a kubeconfig file" -msgstr "kubeconfig 파일에서 단일값을 설정합니다" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/use_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:51 -msgid "Sets the current-context in a kubeconfig file" -msgstr "kubeconfig 파일에서 현재-컨텍스트를 설정합니다" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/unset.go#L47 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:59 -msgid "Unsets an individual value in a kubeconfig file" -msgstr "kubeconfig 파일에서 단일값 설정을 해제합니다" - -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:134 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:135 msgid "Update the annotations on a resource" msgstr "자원에 대한 주석을 업데이트합니다" +# https://github.com/kubernetes/kubernetes/blob/masterpkg/kubectl/cmd/apply.go#L98 +#~ msgid "Apply a configuration to a resource by filename or stdin" +#~ msgstr "구성을 파일 이름 또는 stdin에 의한 자원에 적용합니다" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/current_context.go#L48 +#~ msgid "Displays the current-context" +#~ msgstr "현재-컨텍스트를 표시합니다" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_cluster.go#L67 +#~ msgid "Sets a cluster entry in kubeconfig" +#~ msgstr "kubeconfig에서 클러스터 항목을 설정합니다" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_context.go#L57 +#~ msgid "Sets a context entry in kubeconfig" +#~ msgstr "kubeconfig에서 컨텍스트 항목을 설정합니다" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_authinfo.go#L103 +#~ msgid "Sets a user entry in kubeconfig" +#~ msgstr "kubeconfig에서 사용자 항목을 설정합니다" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/set.go#L59 +#~ msgid "Sets an individual value in a kubeconfig file" +#~ msgstr "kubeconfig 파일에서 단일값을 설정합니다" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/use_context.go#L48 +#~ msgid "Sets the current-context in a kubeconfig file" +#~ msgstr "kubeconfig 파일에서 현재-컨텍스트를 설정합니다" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/unset.go#L47 +#~ msgid "Unsets an individual value in a kubeconfig file" +#~ msgstr "kubeconfig 파일에서 단일값 설정을 해제합니다" + #~ msgid "" #~ "watch is only supported on individual resources and resource collections " #~ "- %d resources were found" diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/pt_BR/LC_MESSAGES/k8s.mo b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/pt_BR/LC_MESSAGES/k8s.mo index 8a9019b566e..e3c52ec8a63 100644 Binary files a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/pt_BR/LC_MESSAGES/k8s.mo and b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/pt_BR/LC_MESSAGES/k8s.mo differ diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/pt_BR/LC_MESSAGES/k8s.po b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/pt_BR/LC_MESSAGES/k8s.po index 44610787321..dad451281f0 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/pt_BR/LC_MESSAGES/k8s.po +++ b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/pt_BR/LC_MESSAGES/k8s.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2021-05-17 15:40+0200\n" +"POT-Creation-Date: 2021-07-07 20:15+0200\n" "PO-Revision-Date: 2020-12-11 17:03+0100\n" "Last-Translator: Carlos Panato \n" "Language-Team: \n" @@ -19,34 +19,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Poedit-KeywordsList: \n" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using the " -"cluster-admin ClusterRole\n" -"\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" -"admin --user=user1 --user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # Criar o ClusterRoleBinding para user1, user2, e group1 utilizando o " -"ClusterRole cluster-admin\n" -"\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" -"admin —user=user1 —user=user2 —group=group1" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # Criar uma RoleBinding para user1, user2, e group1 utilizando o admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin —user=user1 —" -"user=user2 —group=group1" - #: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:62 msgid "" "\n" @@ -63,176 +35,6 @@ msgstr "" "\t\t # Mostra as métricas para um node específico\n" "\t\t kubectl top node NODE_NAME" -#: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:48 -#, c-format -msgid "" -"\n" -"\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 and " -"10, no target CPU utilization specified so a default autoscaling policy will " -"be used:\n" -"\t\tkubectl autoscale deployment foo --min=2 --max=10\n" -"\n" -"\t\t# Auto scale a replication controller \"foo\", with the number of pods " -"between 1 and 5, target CPU utilization at 80%:\n" -"\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" -msgstr "" -"\n" -"\t\t# Escala automaticamente um deployment \"foo\", com o número de pods " -"entre 2 e 10, sem especificar a utilização da CPU o padrão da política de " -"autoscaling será utilizado:\n" -"\t\tkubectl autoscale deployment foo —min=2 —max=10\n" -"\n" -"\t\t# Escala automaticamente um replication controller \"foo\", com o número " -"de pods entre 1 and 5, e definindo a utilização da CPU em 80%:\n" -"\t\tkubectl autoscale rc foo —max=5 —cpu-percent=80" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:44 -msgid "" -"\n" -"\t\t# Create a new resourcequota named my-quota\n" -"\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," -"replicationcontrollers=2,resourcequotas=1,secrets=5," -"persistentvolumeclaims=10\n" -"\n" -"\t\t# Create a new resourcequota named best-effort\n" -"\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" -msgstr "" -"\n" -"\t\t# Cria um novo resourcequota com o nome de my-quota\n" -"\t\tkubectl create quota my-quota —hard=cpu=1,memory=1G,pods=2,services=3," -"replicationcontrollers=2,resourcequotas=1,secrets=5," -"persistentvolumeclaims=10\n" -"\n" -"\t\t# Cria um novo resourcequota com o nome de best-effort\n" -"\t\tkubectl create quota best-effort —hard=pods=100 —scopes=BestEffort" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:44 -#, c-format -msgid "" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=rails label\n" -"\t\t# and require at least one of them being available at any point in " -"time.\n" -"\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" -"available=1\n" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=nginx label\n" -"\t\t# and require at least half of the pods selected to be available at any " -"point in time.\n" -"\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" -msgstr "" -"\n" -"\t\t# Cria um pod disruption budget com o nome de my-pdb que irá selecionar " -"todos os pods com o label app=rails\n" -"\t\t# e requer que pelo menos um deles esteja disponível a qualquer " -"momento.\n" -"\t\tkubectl create poddisruptionbudget my-pdb —selector=app=rails —min-" -"available=1\n" -"\n" -"\t\t# Cria um pod disruption budget com o nome de my-pdb que irá selecionar " -"todos os pods com o label app=nginx\n" -"\t\t# e requer pelo menos que metade dos pods selecionados estejam " -"disponíveis em qualquer momento.\n" -"\t\tkubectl create pdb my-pdb —selector=app=nginx —min-available=50%" - -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:50 -msgid "" -"\n" -"\t\t# Describe a node\n" -"\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" -"\n" -"\t\t# Describe a pod\n" -"\t\tkubectl describe pods/nginx\n" -"\n" -"\t\t# Describe a pod identified by type and name in \"pod.json\"\n" -"\t\tkubectl describe -f pod.json\n" -"\n" -"\t\t# Describe all pods\n" -"\t\tkubectl describe pods\n" -"\n" -"\t\t# Describe pods by label name=myLabel\n" -"\t\tkubectl describe po -l name=myLabel\n" -"\n" -"\t\t# Describe all pods managed by the 'frontend' replication controller (rc-" -"created pods\n" -"\t\t# get the name of the rc as a prefix in the pod the name).\n" -"\t\tkubectl describe pods frontend" -msgstr "" -"\n" -"\t\t# Descreve um node\n" -"\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" -"\n" -"\t\t# Descreve um pod\n" -"\t\tkubectl describe pods/nginx\n" -"\n" -"\t\t# Descreve um pod identificado pelo tipo e nome no arquivo \"pod.json\"\n" -"\t\tkubectl describe -f pod.json\n" -"\n" -"\t\t# Descreve todos os pods\n" -"\t\tkubectl describe pods\n" -"\n" -"\t\t# Descreve os pods com label name=myLabel\n" -"\t\tkubectl describe po -l name=myLabel\n" -"\n" -"\t\t# Descreve todos os pods gerenciados pelo replication controller " -"'frontend' (rc-created pods\n" -"\t\t# tem o nome de rc como prefixo no nome do pod).\n" -"\t\tkubectl describe pods frontend" - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:135 -msgid "" -"\n" -"\t\t# Drain node \"foo\", even if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" -"\t\t$ kubectl drain foo --force\n" -"\n" -"\t\t# As above, but abort if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a " -"grace period of 15 minutes.\n" -"\t\t$ kubectl drain foo --grace-period=900" -msgstr "" -"\n" -"\t\t# Drena o node \"foo\", mesmo se os pods não são gerenciados por um " -"ReplicationController, ReplicaSet, Job, DaemonSet ou StatefulSet.\n" -"\t\t$ kubectl drain foo —force\n" -"\n" -"\t\t# Mesmo que acima, mas é interrompido se os pods não são gerenciados por " -"um ReplicationController, ReplicaSet, Job, DaemonSet ou StatefulSet, e tem " -"espera por 15 minutos.\n" -"\t\t$ kubectl drain foo —grace-period=900" - -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:54 -msgid "" -"\n" -"\t\t# Edit the service named 'docker-registry':\n" -"\t\tkubectl edit svc/docker-registry\n" -"\n" -"\t\t# Use an alternative editor\n" -"\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" -"\n" -"\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" -"\t\tkubectl edit job.v1.batch/myjob -o json\n" -"\n" -"\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " -"config in its annotation:\n" -"\t\tkubectl edit deployment/mydeployment -o yaml --save-config" -msgstr "" -"\n" -"\t\t# Edita o serviço chamado 'docker-registry':\n" -"\t\tkubectl edit svc/docker-registry\n" -"\n" -"\t\t# Usa um editor alternativo\n" -"\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" -"\n" -"\t\t# Edita o Job 'myjob' em JSON utilizando o format da API v1:\n" -"\t\tkubectl edit job.v1.batch/myjob -o json\n" -"\n" -"\t\t# Edita o deployment 'mydeployment' em YAML e salva a configuração " -"modificada em sua annotation:\n" -"\t\tkubectl edit deployment/mydeployment -o yaml —save-config" - #: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:46 msgid "" "\n" @@ -249,26 +51,6 @@ msgstr "" "\t\t# Mostra a documentação de um campo específico de um recurso\n" "\t\tkubectl explain pods.spec.containers" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:85 -msgid "" -"\n" -"\t\t# Mark node \"foo\" as schedulable.\n" -"\t\t$ kubectl uncordon foo" -msgstr "" -"\n" -"\t\t# Remove a restrição de execução de Pods no node \"foo\".\n" -"\t\t$ kubectl uncordon foo" - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:57 -msgid "" -"\n" -"\t\t# Mark node \"foo\" as unschedulable.\n" -"\t\tkubectl cordon foo" -msgstr "" -"\n" -"\t\t# Restringe a execução de novos Pods no node \"foo\".\n" -"\t\tkubectl cordon foo" - #: staging/src/k8s.io/kubectl/pkg/cmd/options/options.go:29 msgid "" "\n" @@ -299,69 +81,7 @@ msgstr "" "\t\t# Mostra as versões de API suportadas\n" "\t\tkubectl api-versions" -#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:56 -msgid "" -"\n" -"\t\t# Replace a pod using the data in pod.json.\n" -"\t\tkubectl replace -f ./pod.json\n" -"\n" -"\t\t# Replace a pod based on the JSON passed into stdin.\n" -"\t\tcat pod.json | kubectl replace -f -\n" -"\n" -"\t\t# Update a single-container pod's image version (tag) to v4\n" -"\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' | " -"kubectl replace -f -\n" -"\n" -"\t\t# Force replace, delete and then re-create the resource\n" -"\t\tkubectl replace --force -f ./pod.json" -msgstr "" -"\n" -"\t\t# Substitui um pod utlizando os dados contidos em pod.json.\n" -"\t\tkubectl replace -f ./pod.json\n" -"\n" -"\t\t# Troca um pod com base no JSON fornecido no stdin.\n" -"\t\tcat pod.json | kubectl replace -f -\n" -"\n" -"\t\t# Atualiza uma versão de imagem (tag) de um pod com um único container " -"para v4\n" -"\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' | " -"kubectl replace -f -\n" -"\n" -"\t\t# Força a troca, removendo e recriando o recurso\n" -"\t\tkubectl replace —force -f ./pod.json" - -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:75 -msgid "" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml\n" -"\n" -"\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" -"\t\tkubectl apply set-last-applied -f path/\n" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file, will create the annotation if it does not already exist.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" -"\t\t" -msgstr "" -"\n" -"\t\t# Ajusta o last-applied-configuration de um recurso para corresponder ao " -"conteúdo de um arquivo.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml\n" -"\n" -"\t\t# Executa o set-last-applied em todos os arquivos de configuração no " -"diretório.\n" -"\t\tkubectl apply set-last-applied -f path/\n" -"\n" -"\t\t# Ajusta o last-applied-configuration de um recurso para corresponder ao " -"conteúdo de um arquivo, será criada uma annotation se esta ainda não " -"existe.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml —create-annotation=true\n" -"\t\t" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:72 +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:75 msgid "" "\n" "\t\t# Show metrics for all pods in the default namespace\n" @@ -389,68 +109,6 @@ msgstr "" "\t\t# Mostra as métricas para os pods definidos pelo label name=myLabel\n" "\t\tkubectl top pod -l name=myLabel" -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:94 -msgid "" -"\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" -"\t\tkubectl label pods foo unhealthy=true\n" -"\n" -"\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" -"\t\tkubectl label --overwrite pods foo status=unhealthy\n" -"\n" -"\t\t# Update all pods in the namespace\n" -"\t\tkubectl label pods --all status=unhealthy\n" -"\n" -"\t\t# Update a pod identified by the type and name in \"pod.json\"\n" -"\t\tkubectl label -f pod.json status=unhealthy\n" -"\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" -"\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" -"\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" -"\t\tkubectl label pods foo bar-" -msgstr "" -"\n" -"\t\t# Atualiza o pod 'foo' com o label 'unhealthy' e valor 'true'.\n" -"\t\tkubectl label pods foo unhealthy=true\n" -"\n" -"\t\t# Atualiza o pod 'foo' com o label 'status' e valor 'unhealthy', " -"sobrescrevendo qualquer valor existente.\n" -"\t\tkubectl label —overwrite pods foo status=unhealthy\n" -"\n" -"\t\t# Atualiza todos os pods no namespace corrente\n" -"\t\tkubectl label pods —all status=unhealthy\n" -"\n" -"\t\t# Atualiza o pod identificado pelo tipo e nome em \"pod.json\"\n" -"\t\tkubectl label -f pod.json status=unhealthy\n" -"\n" -"\t\t# Atualiza o pod 'foo' apenas se o recurso não foi modificado na versão " -"1.\n" -"\t\tkubectl label pods foo status=unhealthy —resource-version=1\n" -"\n" -"\t\t# Atualiza o pod 'foo' removendo o label chamado 'bar', se ele existir.\n" -"\t\t# Não necessita a flag —overwrite.\n" -"\t\tkubectl label pods foo bar-" - -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:53 -msgid "" -"\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" -"\t\tkubectl apply view-last-applied deployment/nginx\n" -"\n" -"\t\t# View the last-applied-configuration annotations by file in JSON\n" -"\t\tkubectl apply view-last-applied -f deploy.yaml -o json" -msgstr "" -"\n" -"\t\t# Visualiza a anotação last-applied-configuration pelo tipo/nome no " -"YAML.\n" -"\t\tkubectl apply view-last-applied deployment/nginx\n" -"\n" -"\t\t# Visualiza a anotação last-applied-configuration no arquivo JSON\n" -"\t\tkubectl apply view-last-applied -f deploy.yaml -o json" - #: pkg/kubectl/cmd/convert/convert.go:40 msgid "" "\n" @@ -481,66 +139,6 @@ msgstr "" "\t\tA saída padrão é no formato YAML. Pode ser utilizadoa opção -o\n" "\t\tpara mudar o formato de saída." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38 -msgid "" -"\n" -"\t\tCreate a ClusterRole." -msgstr "" -"\n" -"\t\tCria um ClusterRole." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a ClusterRoleBinding for a particular ClusterRole." -msgstr "" -"\n" -"\t\tCria um ClusterRoleBinding para um ClusterRole específico." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a RoleBinding for a particular Role or ClusterRole." -msgstr "" -"\n" -"\t\tCria uma RoleBinding para uma Role específica ou ClusterRole." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:46 -msgid "" -"\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " -"value.\n" -"\n" -"\t\tA single configmap may package one or more key/value pairs.\n" -"\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " -"basename of the file, and the value will\n" -"\t\tdefault to the file content. If the basename is an invalid key, you may " -"specify an alternate key.\n" -"\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" -"\t\tsymlinks, devices, pipes, etc)." -msgstr "" -"\n" -"\t\tCria um configmap com base em um arquivo, diretório, ou um valor literal " -"especificado.\n" -"\n" -"\t\tUm configmap único pode conter um ou mais pares de chave/valor.\n" -"\n" -"\t\tQuando criar um configmap com base em um arquivo, a chave será por " -"padrão o nome do arquivo, e o valor será\n" -"\t\tpor padrão o conteúdo do arquivo. Se o nome do arquivo for uma chave " -"inválida, você deve especificar uma chave alternativa.\n" -"\n" -"\t\tQuando criar um configmap com base em um diretório, cada arquivo cujo o " -"nome é uma chave válida no diretório será\n" -"\t\tcolocada no configmap. Qualquer entrada de diretório, exceto as com " -"arquivos válidos serão ignorados (por exemplo: sub-diretórios,\n" -"\t\tsymlinks, devices, pipes, etc)." - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:39 msgid "" "\n" @@ -549,26 +147,6 @@ msgstr "" "\n" "\t\tCria um namespace com um nome especificado." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:41 -msgid "" -"\n" -"\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" -msgstr "" -"\n" -"\t\tCria um pod disruption budget com o nome especificado, seletor, e o " -"número mínimo de pode disponíveis" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:41 -msgid "" -"\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" -msgstr "" -"\n" -"\t\tCria um resourcequota com o nome especificado, limits rigídos e escopo " -"opcional" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:43 msgid "" "\n" @@ -585,79 +163,7 @@ msgstr "" "\n" "\t\tCria uma conta de serviço com um nome especificado." -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:30 -msgid "" -"\n" -"\t\tEdit a resource from the default editor.\n" -"\n" -"\t\tThe edit command allows you to directly edit any API resource you can " -"retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " -"or EDITOR\n" -"\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " -"Windows.\n" -"\t\tYou can edit multiple objects, although changes are applied one at a " -"time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " -"you point to must\n" -"\t\tbe previously saved versions of resources.\n" -"\n" -"\t\tEditing is done with the API version used to fetch the resource.\n" -"\t\tTo edit using a specific API version, fully-qualify the resource, " -"version, and group.\n" -"\n" -"\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" -"\n" -"\t\tThe flag --windows-line-endings can be used to force Windows line " -"endings,\n" -"\t\totherwise the default for your operating system will be used.\n" -"\n" -"\t\tIn the event an error occurs while updating, a temporary file will be " -"created on disk\n" -"\t\tthat contains your unapplied changes. The most common error when " -"updating a resource\n" -"\t\tis another editor changing the resource on the server. When this occurs, " -"you will have\n" -"\t\tto apply your changes to the newer version of the resource, or update " -"your temporary\n" -"\t\tsaved copy to include the latest resource version." -msgstr "" -"\n" -"\t\tEdit a resource from the default editor.\n" -"\n" -"\t\tThe edit command allows you to directly edit any API resource you can " -"retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " -"or EDITOR\n" -"\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " -"Windows.\n" -"\t\tYou can edit multiple objects, although changes are applied one at a " -"time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " -"you point to must\n" -"\t\tbe previously saved versions of resources.\n" -"\n" -"\t\tEditing is done with the API version used to fetch the resource.\n" -"\t\tTo edit using a specific API version, fully-qualify the resource, " -"version, and group.\n" -"\n" -"\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" -"\n" -"\t\tThe flag —windows-line-endings can be used to force Windows line " -"endings,\n" -"\t\totherwise the default for your operating system will be used.\n" -"\n" -"\t\tIn the event an error occurs while updating, a temporary file will be " -"created on disk\n" -"\t\tthat contains your unapplied changes. The most common error when " -"updating a resource\n" -"\t\tis another editor changing the resource on the server. When this occurs, " -"you will have\n" -"\t\tto apply your changes to the newer version of the resource, or update " -"your temporary\n" -"\t\tsaved copy to include the latest resource version." - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:84 msgid "" "\n" "\t\tMark node as schedulable." @@ -665,7 +171,7 @@ msgstr "" "\n" "\t\tRemove a restrição de execução de workloads no node." -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:54 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:55 msgid "" "\n" "\t\tMark node as unschedulable." @@ -689,37 +195,6 @@ msgstr "" "'kubectl apply -f ' executa,\n" "\t\tnão atualizando as outras partes do objeto." -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:47 -msgid "" -"\n" -"\t\tView the latest last-applied-configuration annotations by type/name or " -"file.\n" -"\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." -msgstr "" -"\n" -"\t\tView the latest last-applied-configuration annotations by type/name or " -"file.\n" -"\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:47 -msgid "" -"\n" -"\t # Create a new TLS secret named tls-secret with the given key pair:\n" -"\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" -"to/tls.key" -msgstr "" -"\n" -"\t # Cria um novo segredo TLS chamado tls-secret com o par the chaves " -"fornecido:\n" -"\t kubectl create secret tls tls-secret —cert=path/to/tls.cert —key=path/to/" -"tls.key" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:42 msgid "" "\n" @@ -809,63 +284,6 @@ msgstr "" " kubectl cluster-info dump --namespaces default,kube-system --output-" "directory=/path/to/cluster-state" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:94 -msgid "" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend'.\n" -" # If the same annotation is set multiple times, only the last value will " -"be applied\n" -" kubectl annotate pods foo description='my frontend'\n" -"\n" -" # Update a pod identified by type and name in \"pod.json\"\n" -" kubectl annotate -f pod.json description='my frontend'\n" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend running nginx', overwriting any existing value.\n" -" kubectl annotate --overwrite pods foo description='my frontend running " -"nginx'\n" -"\n" -" # Update all pods in the namespace\n" -" kubectl annotate pods --all description='my frontend running nginx'\n" -"\n" -" # Update pod 'foo' only if the resource is unchanged from version 1.\n" -" kubectl annotate pods foo description='my frontend running nginx' --" -"resource-version=1\n" -"\n" -" # Update pod 'foo' by removing an annotation named 'description' if it " -"exists.\n" -" # Does not require the --overwrite flag.\n" -" kubectl annotate pods foo description-" -msgstr "" -"\n" -" # Atualiza o pod 'foo' com a annotation 'description' e o valor 'my " -"frontend'.\n" -" # Se a mesma annotation é configurada várias vezes, apenas o último " -"valor será utilizado\n" -" kubectl annotate pods foo description='my frontend'\n" -"\n" -" # Atualiza o pod identificado pelo tipo e nome definido no \"pod.json\"\n" -" kubectl annotate -f pod.json description='my frontend'\n" -"\n" -" # Atualiza o pod 'foo' com a annotation 'description' e o valor 'my " -"frontend running nginx', sobreescrevendo qualquer valor existente.\n" -" kubectl annotate --overwrite pods foo description='my frontend running " -"nginx'\n" -"\n" -" # Atualiza todos os pods no namespace\n" -" kubectl annotate pods --all description='my frontend running nginx'\n" -"\n" -" # Atualiza o pod 'foo' apenas se o recurso não foi modificado na versão " -"1.\n" -" kubectl annotate pods foo description='my frontend running nginx' --" -"resource-version=1\n" -"\n" -" # Atualiza o pod 'foo' removendo a annotation chamada 'description' se " -"ela existir.\n" -" # Não necessita da flag --overwrite.\n" -" kubectl annotate pods foo description-" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:308 msgid "" "\n" @@ -928,11 +346,6 @@ msgstr "" "será usado para substituir o objeto gerado. Requer que o objeto forneça um " "campo apiVersion válido." -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173 -msgid "Apply a configuration to a resource by filename or stdin" -msgstr "" -"Aplica a configuração para um recurso utilizado um nome de arquivo ou stdin" - #: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:125 msgid "Approve a certificate signing request" msgstr "Aprova uma solicitação de assinatura de certificado" @@ -945,7 +358,7 @@ msgstr "" "Atribuir o seu próprio ClusterIP ou configura para 'None' para um serviço " "'headless' (sem loadbalancing)." -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:104 +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:105 msgid "Attach to a running container" msgstr "Se conecta a um container em execução" @@ -957,7 +370,7 @@ msgstr "" "ClusterIP que será atribuído ao serviço. Deixe vazio para auto atribuição, " "ou configure para 'None' para criar um serviço headless." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:100 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:101 msgid "ClusterRole this ClusterRoleBinding should reference" msgstr "ClusterRole que esse ClusterRoleBinding deve referenciar" @@ -969,56 +382,22 @@ msgstr "ClusterRole que esse RoleBinding deve referenciar" msgid "Convert config files between different API versions" msgstr "Converte arquivos de configuração entre versões de API diferentes" -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:104 -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:105 +#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:106 msgid "Copy files and directories to and from containers." msgstr "Copia arquivos e diretórios de e para containers." -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:86 -msgid "Create a ClusterRoleBinding for a particular ClusterRole" -msgstr "Cria um ClusterRoleBinding para um ClusterRole especifico" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:323 -msgid "Create a LoadBalancer service." -msgstr "Cria um serviço do tipo LoadBalancer." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:286 -msgid "Create a NodePort service." -msgstr "Cria um serviço do tipo NodePort." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89 -msgid "Create a RoleBinding for a particular Role or ClusterRole" -msgstr "Cria um RoleBinding para uma Role ou ClusterRole especifico" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:94 msgid "Create a TLS secret" msgstr "Cria uma secret do tipo TLS" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:124 -msgid "Create a configmap from a local file, directory or literal value" -msgstr "" -"Cria um configmap com base em um arquivo, diretório, ou um valor literal" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:83 msgid "Create a namespace with the specified name" msgstr "Cria a namespace com um nome especificado" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:95 -msgid "Create a pod disruption budget with the specified name." -msgstr "Cria um pod disruption budget com um nome especificado." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:91 -msgid "Create a quota with the specified name." -msgstr "Cria uma quota com um nome especificado." - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:134 msgid "Create a secret for use with a Docker registry" msgstr "Cria um secret para ser utilizado com o Docker registry" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:137 -msgid "Create a secret from a local file, directory or literal value" -msgstr "Cria um secret com base em um arquivo, diretório ou um valor literal" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:49 msgid "Create a secret using specified subcommand" msgstr "Cria um secret utilizando um sub-comando especificado" @@ -1027,34 +406,15 @@ msgstr "Cria um secret utilizando um sub-comando especificado" msgid "Create a service account with the specified name" msgstr "Cria uma conta de serviço com um nome especificado" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:48 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:49 -msgid "Create a service using specified subcommand." -msgstr "Cria um service utilizando um sub-comando especificado." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:363 -msgid "Create an ExternalName service." -msgstr "Cria um serviço do tipo ExternalName." - -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:135 -msgid "" -"Delete resources by filenames, stdin, resources and names, or by resources " -"and label selector" -msgstr "" -"Apaga os recusros por nome de arquivos, stdin, recursos e nomes, ou por " -"recursos e seletor de label" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42 msgid "Delete the specified cluster from the kubeconfig" msgstr "Apaga o cluster especificado do kubeconfig" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42 msgid "Delete the specified context from the kubeconfig" msgstr "Apaga o contexto especificado do kubeconfig" -#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:170 +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:174 msgid "Deny a certificate signing request" msgstr "Rejeita o pedido de assinatura do certificado" @@ -1062,22 +422,6 @@ msgstr "Rejeita o pedido de assinatura do certificado" msgid "Describe one or many contexts" msgstr "Mostra um ou mais contextos" -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:80 -msgid "Display Resource (CPU/Memory) usage of nodes" -msgstr "Mostra a utilização de recursos (CPU/Memória) nos nodes" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:96 -msgid "Display Resource (CPU/Memory) usage of pods" -msgstr "Mostra a utilização de recursos (CPU/Memória) nos pods" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50 -msgid "Display Resource (CPU/Memory) usage." -msgstr "Mostra a utilização de recursos (CPU/Memória)." - -#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo.go:65 -msgid "Display cluster info" -msgstr "Mostra as informações do cluster" - #: staging/src/k8s.io/kubectl/pkg/cmd/config/get_clusters.go:41 msgid "Display clusters defined in the kubeconfig" msgstr "Mostra os clusters definidos no kubeconfig" @@ -1088,28 +432,15 @@ msgstr "" "Mostra a configuração do kubeconfig mescladas ou um arquivo kubeconfig " "especificado" -#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:161 +#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:165 msgid "Display one or many resources" msgstr "Mostra um ou mais recursos" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 -msgid "Displays the current-context" -msgstr "Mostra o contexto corrente" - -#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79 -msgid "Documentation of resources" -msgstr "Documentação dos recursos" - -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:181 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:184 msgid "Drain node in preparation for maintenance" msgstr "Drenar o node para preparação de manutenção" -#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:74 -msgid "Dump lots of relevant info for debugging and diagnosis" -msgstr "" -"Realiza o dump de muitas informações relevantes para debugging e diagnósticos" - -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:76 +#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:77 msgid "Edit a resource on the server" msgstr "Edita um recurso no servidor" @@ -1117,7 +448,7 @@ msgstr "Edita um recurso no servidor" msgid "Email for Docker registry" msgstr "Email para o Docker registry" -#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:88 +#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:89 msgid "Execute a command in a container" msgstr "Executa um comando em um container" @@ -1137,7 +468,7 @@ msgstr "" "Se não vazio, configura a afinidade de sessão para o serviço; valores " "válidos: 'None', 'ClientIP'" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:155 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:157 msgid "" "If non-empty, the annotation update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -1147,7 +478,7 @@ msgstr "" "a versão do recurso atual para o objeto. Válido apenas ao especificar um " "único recurso." -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:152 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:154 msgid "" "If non-empty, the labels update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -1157,15 +488,15 @@ msgstr "" "versão do recurso atual para o objeto. Válido apenas ao especificar um único " "recurso." -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:96 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:98 msgid "Mark node as schedulable" msgstr "Marca o node como agendável" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:68 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:69 msgid "Mark node as unschedulable" msgstr "Marca o node como não agendável" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:83 msgid "Mark the provided resource as paused" msgstr "Marca o recurso fornecido como pausado" @@ -1186,7 +517,7 @@ msgstr "" "Nome ou o número da porta em um container em que o serviço deve direcionar o " "tráfego. Opcional." -#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:173 +#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:174 msgid "" "Only return logs after a specific date (RFC3339). Defaults to all logs. Only " "one of since-time / since may be used." @@ -1194,7 +525,7 @@ msgstr "" "Apenas retorna os logs após uma data específica (RFC3339). Padrão para todos " "os logs. Apenas um since-time / since deve ser utilizado." -#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:113 +#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:112 msgid "Output shell completion code for the specified shell (bash or zsh)" msgstr "Saída do autocomplete de shell para um Shell específico (bash ou zsh)" @@ -1210,7 +541,7 @@ msgstr "Caminho para a chave pública em formato PEM." msgid "Path to private key associated with given certificate." msgstr "Caminho para a chave private associada a um certificado fornecido." -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:129 +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:130 msgid "" "Precondition for resource version. Requires that the current resource " "version match this value in order to scale." @@ -1231,11 +562,7 @@ msgstr "Mostra a lista de opções herdadas por todos os comandos" msgid "Print the logs for a container in a pod" msgstr "Mostra os logs de um container em um pod" -#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:115 -msgid "Replace a resource by filename or stdin" -msgstr "Substitui um recurso por um nome de arquivo ou stdin" - -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:87 msgid "Resume a paused resource" msgstr "Retoma um recurso pausado" @@ -1259,43 +586,15 @@ msgstr "Localização do servidor para o registro do Docker" msgid "Set specific features on objects" msgstr "Define funcionalidades específicas em objetos" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:101 -msgid "" -"Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." -msgstr "" -"Define a anotação last-applied-configuration em um objeto existente para " -"corresponder ao conteúdo do arquivo." - #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_selector.go:104 msgid "Set the selector on a resource" msgstr "Define um seletor em um recurso" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 -msgid "Sets a cluster entry in kubeconfig" -msgstr "Define um cluster no arquivo kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 -msgid "Sets a context entry in kubeconfig" -msgstr "Define um contexto no arquivo kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 -msgid "Sets a user entry in kubeconfig" -msgstr "Define um usuário no arquivo kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 -msgid "Sets an individual value in a kubeconfig file" -msgstr "Define um valor individual no arquivo kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:51 -msgid "Sets the current-context in a kubeconfig file" -msgstr "Define o current-context no arquivo kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:106 +#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:107 msgid "Show details of a specific resource or group of resources" msgstr "Mostra os detalhes de um recurso específico ou de um grupo de recursos" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:101 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:102 msgid "Show the status of the rollout" msgstr "Mostra o status de uma atualização dinamica" @@ -1303,14 +602,6 @@ msgstr "Mostra o status de uma atualização dinamica" msgid "Synonym for --target-port" msgstr "Sinônimo para —target-port" -#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:134 -msgid "" -"Take a replication controller, service, deployment or pod and expose it as a " -"new Kubernetes Service" -msgstr "" -"Pega um replication controlar, service, deployment ou pod e expõe como um " -"novo Serviço do Kubernetes" - #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:174 msgid "The image for the container to run." msgstr "A imagem para o container executar." @@ -1391,32 +682,24 @@ msgstr "" msgid "The type of secret to create" msgstr "O tipo de segredo para criar" -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:87 msgid "Undo a previous rollout" msgstr "Desfazer o rollout anterior" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:59 -msgid "Unsets an individual value in a kubeconfig file" -msgstr "Remover um valor individual do arquivo kubeconfig" - -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110 -msgid "Update image of a pod template" -msgstr "Atualizar a imagem de um template de pod" - #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_resources.go:116 msgid "Update resource requests/limits on objects with pod templates" msgstr "" "Atualizar os recursos de request/limites em um objeto com template de pod" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:134 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:135 msgid "Update the annotations on a resource" msgstr "Atualizar as anotações de um recurso" -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:132 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:133 msgid "Update the labels on a resource" msgstr "Atualizar os labels de um recurso" -#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:108 +#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:109 msgid "Update the taints on one or more nodes" msgstr "Atualizar o taints de um ou mais nodes" @@ -1424,12 +707,7 @@ msgstr "Atualizar o taints de um ou mais nodes" msgid "Username for Docker registry authentication" msgstr "Nome de usuário para a autenticação no Docker registry" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77 -msgid "View latest last-applied-configuration annotations of a resource/object" -msgstr "" -"Visualizar a última anotação last-applied-configuration de um recurso/objeto" - -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:83 msgid "View rollout history" msgstr "Visualizar o histórico de rollout" @@ -1445,10 +723,36 @@ msgstr "" msgid "dummy restart flag)" msgstr "dummy restart flag)" -#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:478 +#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:227 msgid "kubectl controls the Kubernetes cluster manager" msgstr "kubectl controla o gerenciador de cluster do Kubernetes" +#~ msgid "" +#~ "\n" +#~ "\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using " +#~ "the cluster-admin ClusterRole\n" +#~ "\t\t kubectl create clusterrolebinding cluster-admin --" +#~ "clusterrole=cluster-admin --user=user1 --user=user2 --group=group1" +#~ msgstr "" +#~ "\n" +#~ "\t\t # Criar o ClusterRoleBinding para user1, user2, e group1 utilizando " +#~ "o ClusterRole cluster-admin\n" +#~ "\t\t kubectl create clusterrolebinding cluster-admin --" +#~ "clusterrole=cluster-admin —user=user1 —user=user2 —group=group1" + +#~ msgid "" +#~ "\n" +#~ "\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " +#~ "ClusterRole\n" +#~ "\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +#~ "user=user2 --group=group1" +#~ msgstr "" +#~ "\n" +#~ "\t\t # Criar uma RoleBinding para user1, user2, e group1 utilizando o " +#~ "admin ClusterRole\n" +#~ "\t\t kubectl create rolebinding admin --clusterrole=admin —user=user1 —" +#~ "user=user2 —group=group1" + #~ msgid "" #~ "\n" #~ "\t\t # Create a new configmap named my-config based on folder bar\n" @@ -1531,6 +835,28 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "\t\tkubectl apply —prune -f manifest.yaml —all —prune-whitelist=core/v1/" #~ "ConfigMap" +#, c-format +#~ msgid "" +#~ "\n" +#~ "\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 " +#~ "and 10, no target CPU utilization specified so a default autoscaling " +#~ "policy will be used:\n" +#~ "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" +#~ "\n" +#~ "\t\t# Auto scale a replication controller \"foo\", with the number of " +#~ "pods between 1 and 5, target CPU utilization at 80%:\n" +#~ "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Escala automaticamente um deployment \"foo\", com o número de pods " +#~ "entre 2 e 10, sem especificar a utilização da CPU o padrão da política de " +#~ "autoscaling será utilizado:\n" +#~ "\t\tkubectl autoscale deployment foo —min=2 —max=10\n" +#~ "\n" +#~ "\t\t# Escala automaticamente um replication controller \"foo\", com o " +#~ "número de pods entre 1 and 5, e definindo a utilização da CPU em 80%:\n" +#~ "\t\tkubectl autoscale rc foo —max=5 —cpu-percent=80" + #~ msgid "" #~ "\n" #~ "\t\t# Convert 'pod.yaml' to latest version and print to stdout.\n" @@ -1604,6 +930,55 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "\t\tkubectl create role pod-reader —verb=get —verg=list —verb=watch —" #~ "resource=pods —resource-name=readablepod" +#~ msgid "" +#~ "\n" +#~ "\t\t# Create a new resourcequota named my-quota\n" +#~ "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2," +#~ "services=3,replicationcontrollers=2,resourcequotas=1,secrets=5," +#~ "persistentvolumeclaims=10\n" +#~ "\n" +#~ "\t\t# Create a new resourcequota named best-effort\n" +#~ "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Cria um novo resourcequota com o nome de my-quota\n" +#~ "\t\tkubectl create quota my-quota —hard=cpu=1,memory=1G,pods=2,services=3," +#~ "replicationcontrollers=2,resourcequotas=1,secrets=5," +#~ "persistentvolumeclaims=10\n" +#~ "\n" +#~ "\t\t# Cria um novo resourcequota com o nome de best-effort\n" +#~ "\t\tkubectl create quota best-effort —hard=pods=100 —scopes=BestEffort" + +#, c-format +#~ msgid "" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=rails label\n" +#~ "\t\t# and require at least one of them being available at any point in " +#~ "time.\n" +#~ "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" +#~ "available=1\n" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=nginx label\n" +#~ "\t\t# and require at least half of the pods selected to be available at " +#~ "any point in time.\n" +#~ "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Cria um pod disruption budget com o nome de my-pdb que irá " +#~ "selecionar todos os pods com o label app=rails\n" +#~ "\t\t# e requer que pelo menos um deles esteja disponível a qualquer " +#~ "momento.\n" +#~ "\t\tkubectl create poddisruptionbudget my-pdb —selector=app=rails —min-" +#~ "available=1\n" +#~ "\n" +#~ "\t\t# Cria um pod disruption budget com o nome de my-pdb que irá " +#~ "selecionar todos os pods com o label app=nginx\n" +#~ "\t\t# e requer pelo menos que metade dos pods selecionados estejam " +#~ "disponíveis em qualquer momento.\n" +#~ "\t\tkubectl create pdb my-pdb —selector=app=nginx —min-available=50%" + #~ msgid "" #~ "\n" #~ "\t\t# Create a pod using the data in pod.json.\n" @@ -1742,6 +1117,100 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "\t\t# Remove todos os pods\n" #~ "\t\tkubectl delete pods —all" +#~ msgid "" +#~ "\n" +#~ "\t\t# Describe a node\n" +#~ "\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" +#~ "\n" +#~ "\t\t# Describe a pod\n" +#~ "\t\tkubectl describe pods/nginx\n" +#~ "\n" +#~ "\t\t# Describe a pod identified by type and name in \"pod.json\"\n" +#~ "\t\tkubectl describe -f pod.json\n" +#~ "\n" +#~ "\t\t# Describe all pods\n" +#~ "\t\tkubectl describe pods\n" +#~ "\n" +#~ "\t\t# Describe pods by label name=myLabel\n" +#~ "\t\tkubectl describe po -l name=myLabel\n" +#~ "\n" +#~ "\t\t# Describe all pods managed by the 'frontend' replication controller " +#~ "(rc-created pods\n" +#~ "\t\t# get the name of the rc as a prefix in the pod the name).\n" +#~ "\t\tkubectl describe pods frontend" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Descreve um node\n" +#~ "\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" +#~ "\n" +#~ "\t\t# Descreve um pod\n" +#~ "\t\tkubectl describe pods/nginx\n" +#~ "\n" +#~ "\t\t# Descreve um pod identificado pelo tipo e nome no arquivo \"pod.json" +#~ "\"\n" +#~ "\t\tkubectl describe -f pod.json\n" +#~ "\n" +#~ "\t\t# Descreve todos os pods\n" +#~ "\t\tkubectl describe pods\n" +#~ "\n" +#~ "\t\t# Descreve os pods com label name=myLabel\n" +#~ "\t\tkubectl describe po -l name=myLabel\n" +#~ "\n" +#~ "\t\t# Descreve todos os pods gerenciados pelo replication controller " +#~ "'frontend' (rc-created pods\n" +#~ "\t\t# tem o nome de rc como prefixo no nome do pod).\n" +#~ "\t\tkubectl describe pods frontend" + +#~ msgid "" +#~ "\n" +#~ "\t\t# Drain node \"foo\", even if there are pods not managed by a " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" +#~ "\t\t$ kubectl drain foo --force\n" +#~ "\n" +#~ "\t\t# As above, but abort if there are pods not managed by a " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use " +#~ "a grace period of 15 minutes.\n" +#~ "\t\t$ kubectl drain foo --grace-period=900" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Drena o node \"foo\", mesmo se os pods não são gerenciados por um " +#~ "ReplicationController, ReplicaSet, Job, DaemonSet ou StatefulSet.\n" +#~ "\t\t$ kubectl drain foo —force\n" +#~ "\n" +#~ "\t\t# Mesmo que acima, mas é interrompido se os pods não são gerenciados " +#~ "por um ReplicationController, ReplicaSet, Job, DaemonSet ou StatefulSet, " +#~ "e tem espera por 15 minutos.\n" +#~ "\t\t$ kubectl drain foo —grace-period=900" + +#~ msgid "" +#~ "\n" +#~ "\t\t# Edit the service named 'docker-registry':\n" +#~ "\t\tkubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Use an alternative editor\n" +#~ "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" +#~ "\t\tkubectl edit job.v1.batch/myjob -o json\n" +#~ "\n" +#~ "\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " +#~ "config in its annotation:\n" +#~ "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Edita o serviço chamado 'docker-registry':\n" +#~ "\t\tkubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Usa um editor alternativo\n" +#~ "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Edita o Job 'myjob' em JSON utilizando o format da API v1:\n" +#~ "\t\tkubectl edit job.v1.batch/myjob -o json\n" +#~ "\n" +#~ "\t\t# Edita o deployment 'mydeployment' em YAML e salva a configuração " +#~ "modificada em sua annotation:\n" +#~ "\t\tkubectl edit deployment/mydeployment -o yaml —save-config" + #~ msgid "" #~ "\n" #~ "\t\t# Get output from running 'date' from pod 123456-7890, using the " @@ -1956,6 +1425,24 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "no pod\\n\n" #~ "\t\tkubectl port-forward mypod 0:5000" +#~ msgid "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as schedulable.\n" +#~ "\t\t$ kubectl uncordon foo" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Remove a restrição de execução de Pods no node \"foo\".\n" +#~ "\t\t$ kubectl uncordon foo" + +#~ msgid "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as unschedulable.\n" +#~ "\t\tkubectl cordon foo" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Restringe a execução de novos Pods no node \"foo\".\n" +#~ "\t\tkubectl cordon foo" + #~ msgid "" #~ "\n" #~ "\t\t# Partially update a node using strategic merge patch\n" @@ -2005,6 +1492,36 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "cluster\n" #~ "\t\tkubectl cluster-info" +#~ msgid "" +#~ "\n" +#~ "\t\t# Replace a pod using the data in pod.json.\n" +#~ "\t\tkubectl replace -f ./pod.json\n" +#~ "\n" +#~ "\t\t# Replace a pod based on the JSON passed into stdin.\n" +#~ "\t\tcat pod.json | kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Update a single-container pod's image version (tag) to v4\n" +#~ "\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' " +#~ "| kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Force replace, delete and then re-create the resource\n" +#~ "\t\tkubectl replace --force -f ./pod.json" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Substitui um pod utlizando os dados contidos em pod.json.\n" +#~ "\t\tkubectl replace -f ./pod.json\n" +#~ "\n" +#~ "\t\t# Troca um pod com base no JSON fornecido no stdin.\n" +#~ "\t\tcat pod.json | kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Atualiza uma versão de imagem (tag) de um pod com um único " +#~ "container para v4\n" +#~ "\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' " +#~ "| kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Força a troca, removendo e recriando o recurso\n" +#~ "\t\tkubectl replace —force -f ./pod.json" + #~ msgid "" #~ "\n" #~ "\t\t# Return snapshot logs from pod nginx with only one container\n" @@ -2129,6 +1646,39 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "\t\t# Escala um Job chamado 'cron' para 3.\n" #~ "\t\tkubectl scale —replicas=3 job/cron" +#~ msgid "" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml\n" +#~ "\n" +#~ "\t\t# Execute set-last-applied against each configuration file in a " +#~ "directory.\n" +#~ "\t\tkubectl apply set-last-applied -f path/\n" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file, will create the annotation if it does not already " +#~ "exist.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml --create-" +#~ "annotation=true\n" +#~ "\t\t" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Ajusta o last-applied-configuration de um recurso para corresponder " +#~ "ao conteúdo de um arquivo.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml\n" +#~ "\n" +#~ "\t\t# Executa o set-last-applied em todos os arquivos de configuração no " +#~ "diretório.\n" +#~ "\t\tkubectl apply set-last-applied -f path/\n" +#~ "\n" +#~ "\t\t# Ajusta o last-applied-configuration de um recurso para corresponder " +#~ "ao conteúdo de um arquivo, será criada uma annotation se esta ainda não " +#~ "existe.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml —create-" +#~ "annotation=true\n" +#~ "\t\t" + #~ msgid "" #~ "\n" #~ "\t\t# Shut down foo.\n" @@ -2281,6 +1831,51 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "\t\t# Remove o node 'foo' todos os taints com a chave 'dedicated'\n" #~ "\t\tkubectl taint nodes foo dedicated-" +#~ msgid "" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +#~ "\t\tkubectl label pods foo unhealthy=true\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " +#~ "overwriting any existing value.\n" +#~ "\t\tkubectl label --overwrite pods foo status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update all pods in the namespace\n" +#~ "\t\tkubectl label pods --all status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" +#~ "\t\tkubectl label -f pod.json status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" +#~ "\t\t# Does not require the --overwrite flag.\n" +#~ "\t\tkubectl label pods foo bar-" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Atualiza o pod 'foo' com o label 'unhealthy' e valor 'true'.\n" +#~ "\t\tkubectl label pods foo unhealthy=true\n" +#~ "\n" +#~ "\t\t# Atualiza o pod 'foo' com o label 'status' e valor 'unhealthy', " +#~ "sobrescrevendo qualquer valor existente.\n" +#~ "\t\tkubectl label —overwrite pods foo status=unhealthy\n" +#~ "\n" +#~ "\t\t# Atualiza todos os pods no namespace corrente\n" +#~ "\t\tkubectl label pods —all status=unhealthy\n" +#~ "\n" +#~ "\t\t# Atualiza o pod identificado pelo tipo e nome em \"pod.json\"\n" +#~ "\t\tkubectl label -f pod.json status=unhealthy\n" +#~ "\n" +#~ "\t\t# Atualiza o pod 'foo' apenas se o recurso não foi modificado na " +#~ "versão 1.\n" +#~ "\t\tkubectl label pods foo status=unhealthy —resource-version=1\n" +#~ "\n" +#~ "\t\t# Atualiza o pod 'foo' removendo o label chamado 'bar', se ele " +#~ "existir.\n" +#~ "\t\t# Não necessita a flag —overwrite.\n" +#~ "\t\tkubectl label pods foo bar-" + #~ msgid "" #~ "\n" #~ "\t\t# Update pods of frontend-v1 using new replication controller data in " @@ -2325,6 +1920,23 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "para frontend-v2).\n" #~ "\t\tkubectl rolling-update frontend-v1 frontend-v2 --rollback" +#~ msgid "" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by type/name in " +#~ "YAML.\n" +#~ "\t\tkubectl apply view-last-applied deployment/nginx\n" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by file in JSON\n" +#~ "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Visualiza a anotação last-applied-configuration pelo tipo/nome no " +#~ "YAML.\n" +#~ "\t\tkubectl apply view-last-applied deployment/nginx\n" +#~ "\n" +#~ "\t\t# Visualiza a anotação last-applied-configuration no arquivo JSON\n" +#~ "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" + #~ msgid "" #~ "\n" #~ "\t\tApply a configuration to a resource by filename or stdin.\n" @@ -2351,6 +1963,27 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "não ser que você saibe qual é o estado corrente. Veja https://issues.k8s." #~ "io/34274." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\tCria um ClusterRole." + +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a ClusterRoleBinding for a particular ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\tCria um ClusterRoleBinding para um ClusterRole específico." + +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a RoleBinding for a particular Role or ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\tCria uma RoleBinding para uma Role específica ou ClusterRole." + #~ msgid "" #~ "\n" #~ "\t\tCreate a TLS secret from the given public/private key pair.\n" @@ -2364,6 +1997,41 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "\t\tA chave pública/privada deve existir antes. O certificado da chave " #~ "deve ser codificada como PEM, e ter sido gerada pela chave privada." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a configmap based on a file, directory, or specified literal " +#~ "value.\n" +#~ "\n" +#~ "\t\tA single configmap may package one or more key/value pairs.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a file, the key will default to " +#~ "the basename of the file, and the value will\n" +#~ "\t\tdefault to the file content. If the basename is an invalid key, you " +#~ "may specify an alternate key.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a directory, each file whose " +#~ "basename is a valid key in the directory will be\n" +#~ "\t\tpackaged into the configmap. Any directory entries except regular " +#~ "files are ignored (e.g. subdirectories,\n" +#~ "\t\tsymlinks, devices, pipes, etc)." +#~ msgstr "" +#~ "\n" +#~ "\t\tCria um configmap com base em um arquivo, diretório, ou um valor " +#~ "literal especificado.\n" +#~ "\n" +#~ "\t\tUm configmap único pode conter um ou mais pares de chave/valor.\n" +#~ "\n" +#~ "\t\tQuando criar um configmap com base em um arquivo, a chave será por " +#~ "padrão o nome do arquivo, e o valor será\n" +#~ "\t\tpor padrão o conteúdo do arquivo. Se o nome do arquivo for uma chave " +#~ "inválida, você deve especificar uma chave alternativa.\n" +#~ "\n" +#~ "\t\tQuando criar um configmap com base em um diretório, cada arquivo cujo " +#~ "o nome é uma chave válida no diretório será\n" +#~ "\t\tcolocada no configmap. Qualquer entrada de diretório, exceto as com " +#~ "arquivos válidos serão ignorados (por exemplo: sub-diretórios,\n" +#~ "\t\tsymlinks, devices, pipes, etc)." + #~ msgid "" #~ "\n" #~ "\t\tCreate a new secret for use with Docker registries.\n" @@ -2410,6 +2078,15 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "credenciais. Você pode prover esta informação\n" #~ "\t\tcriando um dockercfg secret e anexando-o à sua conta de serviço." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a pod disruption budget with the specified name, selector, and " +#~ "desired minimum available pods" +#~ msgstr "" +#~ "\n" +#~ "\t\tCria um pod disruption budget com o nome especificado, seletor, e o " +#~ "número mínimo de pode disponíveis" + #~ msgid "" #~ "\n" #~ "\t\tCreate a resource by filename or stdin.\n" @@ -2421,6 +2098,15 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "\n" #~ "\t\tOs formatos JSON e YAML são aceitos." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a resourcequota with the specified name, hard limits and " +#~ "optional scopes" +#~ msgstr "" +#~ "\n" +#~ "\t\tCria um resourcequota com o nome especificado, limits rigídos e " +#~ "escopo opcional" + #~ msgid "" #~ "\n" #~ "\t\tCreate a secret based on a file, directory, or specified literal " @@ -2732,6 +2418,77 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "\n" #~ "\t\t![Workflow](http://kubernetes.io/images/docs/kubectl_drain.svg)" +#~ msgid "" +#~ "\n" +#~ "\t\tEdit a resource from the default editor.\n" +#~ "\n" +#~ "\t\tThe edit command allows you to directly edit any API resource you can " +#~ "retrieve via the\n" +#~ "\t\tcommand line tools. It will open the editor defined by your " +#~ "KUBE_EDITOR, or EDITOR\n" +#~ "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' " +#~ "for Windows.\n" +#~ "\t\tYou can edit multiple objects, although changes are applied one at a " +#~ "time. The command\n" +#~ "\t\taccepts filenames as well as command line arguments, although the " +#~ "files you point to must\n" +#~ "\t\tbe previously saved versions of resources.\n" +#~ "\n" +#~ "\t\tEditing is done with the API version used to fetch the resource.\n" +#~ "\t\tTo edit using a specific API version, fully-qualify the resource, " +#~ "version, and group.\n" +#~ "\n" +#~ "\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" +#~ "\n" +#~ "\t\tThe flag --windows-line-endings can be used to force Windows line " +#~ "endings,\n" +#~ "\t\totherwise the default for your operating system will be used.\n" +#~ "\n" +#~ "\t\tIn the event an error occurs while updating, a temporary file will be " +#~ "created on disk\n" +#~ "\t\tthat contains your unapplied changes. The most common error when " +#~ "updating a resource\n" +#~ "\t\tis another editor changing the resource on the server. When this " +#~ "occurs, you will have\n" +#~ "\t\tto apply your changes to the newer version of the resource, or update " +#~ "your temporary\n" +#~ "\t\tsaved copy to include the latest resource version." +#~ msgstr "" +#~ "\n" +#~ "\t\tEdit a resource from the default editor.\n" +#~ "\n" +#~ "\t\tThe edit command allows you to directly edit any API resource you can " +#~ "retrieve via the\n" +#~ "\t\tcommand line tools. It will open the editor defined by your " +#~ "KUBE_EDITOR, or EDITOR\n" +#~ "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' " +#~ "for Windows.\n" +#~ "\t\tYou can edit multiple objects, although changes are applied one at a " +#~ "time. The command\n" +#~ "\t\taccepts filenames as well as command line arguments, although the " +#~ "files you point to must\n" +#~ "\t\tbe previously saved versions of resources.\n" +#~ "\n" +#~ "\t\tEditing is done with the API version used to fetch the resource.\n" +#~ "\t\tTo edit using a specific API version, fully-qualify the resource, " +#~ "version, and group.\n" +#~ "\n" +#~ "\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" +#~ "\n" +#~ "\t\tThe flag —windows-line-endings can be used to force Windows line " +#~ "endings,\n" +#~ "\t\totherwise the default for your operating system will be used.\n" +#~ "\n" +#~ "\t\tIn the event an error occurs while updating, a temporary file will be " +#~ "created on disk\n" +#~ "\t\tthat contains your unapplied changes. The most common error when " +#~ "updating a resource\n" +#~ "\t\tis another editor changing the resource on the server. When this " +#~ "occurs, you will have\n" +#~ "\t\tto apply your changes to the newer version of the resource, or update " +#~ "your temporary\n" +#~ "\t\tsaved copy to include the latest resource version." + #~ msgid "" #~ "\n" #~ "\t\tOutput shell completion code for the specified shell (bash or zsh).\n" @@ -2973,6 +2730,23 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "\t\t* O efeito deve ser NoSchedule, PreferNoSchedule ou NoExecute.\n" #~ "\t\t* Atualmente taint pode ser aplicado apenas para nodes." +#~ msgid "" +#~ "\n" +#~ "\t\tView the latest last-applied-configuration annotations by type/name " +#~ "or file.\n" +#~ "\n" +#~ "\t\tThe default output will be printed to stdout in YAML format. One can " +#~ "use -o option\n" +#~ "\t\tto change output format." +#~ msgstr "" +#~ "\n" +#~ "\t\tView the latest last-applied-configuration annotations by type/name " +#~ "or file.\n" +#~ "\n" +#~ "\t\tThe default output will be printed to stdout in YAML format. One can " +#~ "use -o option\n" +#~ "\t\tto change output format." + #~ msgid "" #~ "\n" #~ "\t # !!!Important Note!!!\n" @@ -3015,6 +2789,18 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "\t\t# Copia /tmp/foo do pod remoto para /tmp/bar localmente\n" #~ "\t\tkubectl cp /:/tmp/foo /tmp/bar" +#~ msgid "" +#~ "\n" +#~ "\t # Create a new TLS secret named tls-secret with the given key pair:\n" +#~ "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --" +#~ "key=path/to/tls.key" +#~ msgstr "" +#~ "\n" +#~ "\t # Cria um novo segredo TLS chamado tls-secret com o par the chaves " +#~ "fornecido:\n" +#~ "\t kubectl create secret tls tls-secret —cert=path/to/tls.cert —key=path/" +#~ "to/tls.key" + #~ msgid "" #~ "\n" #~ "\t # Create a new secret named my-secret with keys for each file in " @@ -3089,6 +2875,63 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ " # Cria um novo serviço nodeport chamado my-ns\n" #~ " kubectl create service nodeport my-ns —tcp=5678:8080" +#~ msgid "" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend'.\n" +#~ " # If the same annotation is set multiple times, only the last value " +#~ "will be applied\n" +#~ " kubectl annotate pods foo description='my frontend'\n" +#~ "\n" +#~ " # Update a pod identified by type and name in \"pod.json\"\n" +#~ " kubectl annotate -f pod.json description='my frontend'\n" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend running nginx', overwriting any existing value.\n" +#~ " kubectl annotate --overwrite pods foo description='my frontend " +#~ "running nginx'\n" +#~ "\n" +#~ " # Update all pods in the namespace\n" +#~ " kubectl annotate pods --all description='my frontend running nginx'\n" +#~ "\n" +#~ " # Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ " kubectl annotate pods foo description='my frontend running nginx' --" +#~ "resource-version=1\n" +#~ "\n" +#~ " # Update pod 'foo' by removing an annotation named 'description' if " +#~ "it exists.\n" +#~ " # Does not require the --overwrite flag.\n" +#~ " kubectl annotate pods foo description-" +#~ msgstr "" +#~ "\n" +#~ " # Atualiza o pod 'foo' com a annotation 'description' e o valor 'my " +#~ "frontend'.\n" +#~ " # Se a mesma annotation é configurada várias vezes, apenas o último " +#~ "valor será utilizado\n" +#~ " kubectl annotate pods foo description='my frontend'\n" +#~ "\n" +#~ " # Atualiza o pod identificado pelo tipo e nome definido no \"pod.json" +#~ "\"\n" +#~ " kubectl annotate -f pod.json description='my frontend'\n" +#~ "\n" +#~ " # Atualiza o pod 'foo' com a annotation 'description' e o valor 'my " +#~ "frontend running nginx', sobreescrevendo qualquer valor existente.\n" +#~ " kubectl annotate --overwrite pods foo description='my frontend " +#~ "running nginx'\n" +#~ "\n" +#~ " # Atualiza todos os pods no namespace\n" +#~ " kubectl annotate pods --all description='my frontend running nginx'\n" +#~ "\n" +#~ " # Atualiza o pod 'foo' apenas se o recurso não foi modificado na " +#~ "versão 1.\n" +#~ " kubectl annotate pods foo description='my frontend running nginx' --" +#~ "resource-version=1\n" +#~ "\n" +#~ " # Atualiza o pod 'foo' removendo a annotation chamada 'description' " +#~ "se ela existir.\n" +#~ " # Não necessita da flag --overwrite.\n" +#~ " kubectl annotate pods foo description-" + #~ msgid "" #~ "\n" #~ " Create a clusterIP service with the specified name." @@ -3165,6 +3008,11 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "o objeto forneça o campo apiVersion válido. Usado apenas se --expose for " #~ "true." +#~ msgid "Apply a configuration to a resource by filename or stdin" +#~ msgstr "" +#~ "Aplica a configuração para um recurso utilizado um nome de arquivo ou " +#~ "stdin" + #~ msgid "Auto-scale a Deployment, ReplicaSet, or ReplicationController" #~ msgstr "Auto-escala um Deployment, ReplicaSet ou ReplicationController" @@ -3177,18 +3025,80 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "--image for especificado, caso contrário, ignorado. Obrigatório ao usar --" #~ "image em um pod com vários contêineres" +#~ msgid "Create a ClusterRoleBinding for a particular ClusterRole" +#~ msgstr "Cria um ClusterRoleBinding para um ClusterRole especifico" + +#~ msgid "Create a LoadBalancer service." +#~ msgstr "Cria um serviço do tipo LoadBalancer." + +#~ msgid "Create a NodePort service." +#~ msgstr "Cria um serviço do tipo NodePort." + +#~ msgid "Create a RoleBinding for a particular Role or ClusterRole" +#~ msgstr "Cria um RoleBinding para uma Role ou ClusterRole especifico" + #~ msgid "Create a clusterIP service." #~ msgstr "Cria um serviço do tipo clusterIP." +#~ msgid "Create a configmap from a local file, directory or literal value" +#~ msgstr "" +#~ "Cria um configmap com base em um arquivo, diretório, ou um valor literal" + #~ msgid "Create a deployment with the specified name." #~ msgstr "Cria um deployment com um nome especificado." +#~ msgid "Create a pod disruption budget with the specified name." +#~ msgstr "Cria um pod disruption budget com um nome especificado." + +#~ msgid "Create a quota with the specified name." +#~ msgstr "Cria uma quota com um nome especificado." + #~ msgid "Create a resource by filename or stdin" #~ msgstr "Cria um recurso por nome de arquivo ou stdin" +#~ msgid "Create a secret from a local file, directory or literal value" +#~ msgstr "" +#~ "Cria um secret com base em um arquivo, diretório ou um valor literal" + +#~ msgid "Create a service using specified subcommand." +#~ msgstr "Cria um service utilizando um sub-comando especificado." + +#~ msgid "Create an ExternalName service." +#~ msgstr "Cria um serviço do tipo ExternalName." + +#~ msgid "" +#~ "Delete resources by filenames, stdin, resources and names, or by " +#~ "resources and label selector" +#~ msgstr "" +#~ "Apaga os recusros por nome de arquivos, stdin, recursos e nomes, ou por " +#~ "recursos e seletor de label" + #~ msgid "Deprecated: Gracefully shut down a resource by name or filename" #~ msgstr "Descontinuado: Termina um recurso por nome ou nome de arquivo" +#~ msgid "Display Resource (CPU/Memory) usage of nodes" +#~ msgstr "Mostra a utilização de recursos (CPU/Memória) nos nodes" + +#~ msgid "Display Resource (CPU/Memory) usage of pods" +#~ msgstr "Mostra a utilização de recursos (CPU/Memória) nos pods" + +#~ msgid "Display Resource (CPU/Memory) usage." +#~ msgstr "Mostra a utilização de recursos (CPU/Memória)." + +#~ msgid "Display cluster info" +#~ msgstr "Mostra as informações do cluster" + +#~ msgid "Displays the current-context" +#~ msgstr "Mostra o contexto corrente" + +#~ msgid "Documentation of resources" +#~ msgstr "Documentação dos recursos" + +#~ msgid "Dump lots of relevant info for debugging and diagnosis" +#~ msgstr "" +#~ "Realiza o dump de muitas informações relevantes para debugging e " +#~ "diagnósticos" + #~ msgid "" #~ "Explicit policy for when to pull container images. Required when --image " #~ "is same as existing image, ignored otherwise." @@ -3226,6 +3136,9 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ msgid "Perform a rolling update of the given ReplicationController" #~ msgstr "Executa uma atualização contínua" +#~ msgid "Replace a resource by filename or stdin" +#~ msgstr "Substitui um recurso por um nome de arquivo ou stdin" + #~ msgid "" #~ "Set a new size for a Deployment, ReplicaSet, Replication Controller, or " #~ "Job" @@ -3233,6 +3146,35 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "Define um novo tamanho para um Deployment, ReplicaSet, Replication " #~ "Controller, ou Job" +#~ msgid "" +#~ "Set the last-applied-configuration annotation on a live object to match " +#~ "the contents of a file." +#~ msgstr "" +#~ "Define a anotação last-applied-configuration em um objeto existente para " +#~ "corresponder ao conteúdo do arquivo." + +#~ msgid "Sets a cluster entry in kubeconfig" +#~ msgstr "Define um cluster no arquivo kubeconfig" + +#~ msgid "Sets a context entry in kubeconfig" +#~ msgstr "Define um contexto no arquivo kubeconfig" + +#~ msgid "Sets a user entry in kubeconfig" +#~ msgstr "Define um usuário no arquivo kubeconfig" + +#~ msgid "Sets an individual value in a kubeconfig file" +#~ msgstr "Define um valor individual no arquivo kubeconfig" + +#~ msgid "Sets the current-context in a kubeconfig file" +#~ msgstr "Define o current-context no arquivo kubeconfig" + +#~ msgid "" +#~ "Take a replication controller, service, deployment or pod and expose it " +#~ "as a new Kubernetes Service" +#~ msgstr "" +#~ "Pega um replication controlar, service, deployment ou pod e expõe como um " +#~ "novo Serviço do Kubernetes" + #~ msgid "" #~ "The key to use to differentiate between two different controllers, " #~ "default 'deployment'. Only relevant when --image is specified, ignored " @@ -3288,9 +3230,21 @@ msgstr "kubectl controla o gerenciador de cluster do Kubernetes" #~ "Tipo para este serviço: ClusterIP, NodePort, ou LoadBalancer. Valor " #~ "padrão é 'ClusterIP'." +#~ msgid "Unsets an individual value in a kubeconfig file" +#~ msgstr "Remover um valor individual do arquivo kubeconfig" + #~ msgid "Update field(s) of a resource using strategic merge patch" #~ msgstr "" #~ "Atualizar o(s) campo(s) de um recurso usando a estratégia de merge patch" +#~ msgid "Update image of a pod template" +#~ msgstr "Atualizar a imagem de um template de pod" + +#~ msgid "" +#~ "View latest last-applied-configuration annotations of a resource/object" +#~ msgstr "" +#~ "Visualizar a última anotação last-applied-configuration de um recurso/" +#~ "objeto" + #~ msgid "external name of service" #~ msgstr "nome externo do serviço" diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/template.pot b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/template.pot index 9f7409f4856..8fd30a104b1 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/template.pot +++ b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/template.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2021-07-05 22:55+0200\n" +"POT-Creation-Date: 2021-07-07 20:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,22 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:138 +msgid "" +"\n" +"\t\t\t# Approve CSR 'csr-sqgzp'\n" +"\t\t\tkubectl certificate approve csr-sqgzp\n" +"\t\t" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:182 +msgid "" +"\n" +"\t\t\t# Deny CSR 'csr-sqgzp'\n" +"\t\t\tkubectl certificate deny csr-sqgzp\n" +"\t\t" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/config/config.go:43 msgid "" "\n" @@ -31,45 +47,45 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:44 msgid "" "\n" -"\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using the " -"cluster-admin ClusterRole\n" +"\t\t # Create a cluster role binding for user1, user2, and group1 using the " +"cluster-admin cluster role\n" "\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" "admin --user=user1 --user=user2 --group=group1" msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" -msgstr "" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:58 msgid "" "\n" -"\t\t # Create a new configmap named my-config based on folder bar\n" +"\t\t # Create a new config map named my-config based on folder bar\n" "\t\t kubectl create configmap my-config --from-file=path/to/bar\n" "\n" -"\t\t # Create a new configmap named my-config with specified keys instead " +"\t\t # Create a new config map named my-config with specified keys instead " "of file basenames on disk\n" "\t\t kubectl create configmap my-config --from-file=key1=/path/to/bar/file1." "txt --from-file=key2=/path/to/bar/file2.txt\n" "\n" -"\t\t # Create a new configmap named my-config with key1=config1 and " +"\t\t # Create a new config map named my-config with key1=config1 and " "key2=config2\n" "\t\t kubectl create configmap my-config --from-literal=key1=config1 --from-" "literal=key2=config2\n" "\n" -"\t\t # Create a new configmap named my-config from the key=value pairs in " +"\t\t # Create a new config map named my-config from the key=value pairs in " "the file\n" "\t\t kubectl create configmap my-config --from-file=path/to/bar\n" "\n" -"\t\t # Create a new configmap named my-config from an env file\n" +"\t\t # Create a new config map named my-config from an env file\n" "\t\t kubectl create configmap my-config --from-env-file=path/to/bar.env" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43 +msgid "" +"\n" +"\t\t # Create a role binding for user1, user2, and group1 using the admin " +"cluster role\n" +"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +"user=user2 --group=group1" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:56 msgid "" "\n" @@ -78,7 +94,7 @@ msgid "" "\t\t kubectl create secret docker-registry my-secret --docker-" "server=DOCKER_REGISTRY_SERVER --docker-username=DOCKER_USER --docker-" "password=DOCKER_PASSWORD --docker-email=DOCKER_EMAIL\n" -"\t\t \n" +"\n" "\t\t # Create a new secret named my-secret from ~/.docker/config.json\n" "\t\t kubectl create secret docker-registry my-secret --from-file=." "dockerconfigjson=path/to/.docker/config.json" @@ -102,7 +118,7 @@ msgid "" "\t\t# image. If 'tar' is not present, 'kubectl cp' will fail.\n" "\t\t#\n" "\t\t# For advanced use cases, such as symlinks, wildcard expansion or\n" -"\t\t# file mode preservation consider using 'kubectl exec'.\n" +"\t\t# file mode preservation, consider using 'kubectl exec'.\n" "\n" "\t\t# Copy /tmp/foo local file to /tmp/bar in a remote pod in namespace " "\n" @@ -132,24 +148,24 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:119 msgid "" "\n" -"\t\t# Apply the configuration in pod.json to a pod.\n" +"\t\t# Apply the configuration in pod.json to a pod\n" "\t\tkubectl apply -f ./pod.json\n" "\n" "\t\t# Apply resources from a directory containing kustomization.yaml - e.g. " -"dir/kustomization.yaml.\n" +"dir/kustomization.yaml\n" "\t\tkubectl apply -k dir/\n" "\n" -"\t\t# Apply the JSON passed into stdin to a pod.\n" +"\t\t# Apply the JSON passed into stdin to a pod\n" "\t\tcat pod.json | kubectl apply -f -\n" "\n" "\t\t# Note: --prune is still in Alpha\n" "\t\t# Apply the configuration in manifest.yaml that matches label app=nginx " -"and delete all the other resources that are not in the file and match label " -"app=nginx.\n" +"and delete all other resources that are not in the file and match label " +"app=nginx\n" "\t\tkubectl apply --prune -f manifest.yaml -l app=nginx\n" "\n" "\t\t# Apply the configuration in manifest.yaml and delete all the other " -"configmaps that are not in the file.\n" +"config maps that are not in the file\n" "\t\tkubectl apply --prune -f manifest.yaml --all --prune-whitelist=core/v1/" "ConfigMap" msgstr "" @@ -160,11 +176,11 @@ msgid "" "\n" "\t\t# Auto scale a deployment \"foo\", with the number of pods between 2 and " "10, no target CPU utilization specified so a default autoscaling policy will " -"be used:\n" +"be used\n" "\t\tkubectl autoscale deployment foo --min=2 --max=10\n" "\n" "\t\t# Auto scale a replication controller \"foo\", with the number of pods " -"between 1 and 5, target CPU utilization at 80%:\n" +"between 1 and 5, target CPU utilization at 80%\n" "\t\tkubectl autoscale rc foo --max=5 --cpu-percent=80" msgstr "" @@ -187,74 +203,56 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:41 msgid "" "\n" -"\t\t# Create a ClusterRole named \"pod-reader\" that allows user to perform " +"\t\t# Create a cluster role named \"pod-reader\" that allows user to perform " "\"get\", \"watch\" and \"list\" on pods\n" "\t\tkubectl create clusterrole pod-reader --verb=get,list,watch --" "resource=pods\n" "\n" -"\t\t# Create a ClusterRole named \"pod-reader\" with ResourceName specified\n" +"\t\t# Create a cluster role named \"pod-reader\" with ResourceName " +"specified\n" "\t\tkubectl create clusterrole pod-reader --verb=get --resource=pods --" "resource-name=readablepod --resource-name=anotherpod\n" "\n" -"\t\t# Create a ClusterRole named \"foo\" with API Group specified\n" +"\t\t# Create a cluster role named \"foo\" with API Group specified\n" "\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=rs." "extensions\n" "\n" -"\t\t# Create a ClusterRole named \"foo\" with SubResource specified\n" +"\t\t# Create a cluster role named \"foo\" with SubResource specified\n" "\t\tkubectl create clusterrole foo --verb=get,list,watch --resource=pods," "pods/status\n" "\n" -"\t\t# Create a ClusterRole name \"foo\" with NonResourceURL specified\n" +"\t\t# Create a cluster role name \"foo\" with NonResourceURL specified\n" "\t\tkubectl create clusterrole \"foo\" --verb=get --non-resource-url=/logs/" "*\n" "\n" -"\t\t# Create a ClusterRole name \"monitoring\" with AggregationRule " +"\t\t# Create a cluster role name \"monitoring\" with AggregationRule " "specified\n" "\t\tkubectl create clusterrole monitoring --aggregation-rule=\"rbac.example." "com/aggregate-to-monitoring=true\"" msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:46 -msgid "" -"\n" -"\t\t# Create a Role named \"pod-reader\" that allows user to perform \"get" -"\", \"watch\" and \"list\" on pods\n" -"\t\tkubectl create role pod-reader --verb=get --verb=list --verb=watch --" -"resource=pods\n" -"\n" -"\t\t# Create a Role named \"pod-reader\" with ResourceName specified\n" -"\t\tkubectl create role pod-reader --verb=get --resource=pods --resource-" -"name=readablepod --resource-name=anotherpod\n" -"\n" -"\t\t# Create a Role named \"foo\" with API Group specified\n" -"\t\tkubectl create role foo --verb=get,list,watch --resource=rs.extensions\n" -"\n" -"\t\t# Create a Role named \"foo\" with SubResource specified\n" -"\t\tkubectl create role foo --verb=get,list,watch --resource=pods,pods/status" -msgstr "" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:43 msgid "" "\n" "\t\t# Create a job\n" "\t\tkubectl create job my-job --image=busybox\n" "\n" -"\t\t# Create a job with command\n" +"\t\t# Create a job with a command\n" "\t\tkubectl create job my-job --image=busybox -- date\n" "\n" -"\t\t# Create a job from a CronJob named \"a-cronjob\"\n" +"\t\t# Create a job from a cron job named \"a-cronjob\"\n" "\t\tkubectl create job test-job --from=cronjob/a-cronjob" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:44 msgid "" "\n" -"\t\t# Create a new resourcequota named my-quota\n" +"\t\t# Create a new resource quota named my-quota\n" "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," "replicationcontrollers=2,resourcequotas=1,secrets=5," "persistentvolumeclaims=10\n" "\n" -"\t\t# Create a new resourcequota named best-effort\n" +"\t\t# Create a new resource quota named best-effort\n" "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" msgstr "" @@ -264,60 +262,78 @@ msgid "" "\n" "\t\t# Create a pod disruption budget named my-pdb that will select all pods " "with the app=rails label\n" -"\t\t# and require at least one of them being available at any point in " -"time.\n" +"\t\t# and require at least one of them being available at any point in time\n" "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" "available=1\n" "\n" "\t\t# Create a pod disruption budget named my-pdb that will select all pods " "with the app=nginx label\n" "\t\t# and require at least half of the pods selected to be available at any " -"point in time.\n" +"point in time\n" "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:76 msgid "" "\n" -"\t\t# Create a pod using the data in pod.json.\n" +"\t\t# Create a pod using the data in pod.json\n" "\t\tkubectl create -f ./pod.json\n" "\n" -"\t\t# Create a pod based on the JSON passed into stdin.\n" +"\t\t# Create a pod based on the JSON passed into stdin\n" "\t\tcat pod.json | kubectl create -f -\n" "\n" "\t\t# Edit the data in docker-registry.yaml in JSON then create the resource " -"using the edited data.\n" +"using the edited data\n" "\t\tkubectl create -f docker-registry.yaml --edit -o json" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:43 msgid "" "\n" -"\t\t# Create a priorityclass named high-priority\n" +"\t\t# Create a priority class named high-priority\n" "\t\tkubectl create priorityclass high-priority --value=1000 --description=" "\"high priority\"\n" "\n" -"\t\t# Create a priorityclass named default-priority that considered as the " -"global default priority\n" +"\t\t# Create a priority class named default-priority that is considered as " +"the global default priority\n" "\t\tkubectl create priorityclass default-priority --value=1000 --global-" "default=true --description=\"default priority\"\n" "\n" -"\t\t# Create a priorityclass named high-priority that can not preempt pods " +"\t\t# Create a priority class named high-priority that cannot preempt pods " "with lower priority\n" "\t\tkubectl create priorityclass high-priority --value=1000 --description=" "\"high priority\" --preemption-policy=\"Never\"" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:46 +msgid "" +"\n" +"\t\t# Create a role named \"pod-reader\" that allows user to perform \"get" +"\", \"watch\" and \"list\" on pods\n" +"\t\tkubectl create role pod-reader --verb=get --verb=list --verb=watch --" +"resource=pods\n" +"\n" +"\t\t# Create a role named \"pod-reader\" with ResourceName specified\n" +"\t\tkubectl create role pod-reader --verb=get --resource=pods --resource-" +"name=readablepod --resource-name=anotherpod\n" +"\n" +"\t\t# Create a role named \"foo\" with API Group specified\n" +"\t\tkubectl create role foo --verb=get,list,watch --resource=rs.extensions\n" +"\n" +"\t\t# Create a role named \"foo\" with SubResource specified\n" +"\t\tkubectl create role foo --verb=get,list,watch --resource=pods,pods/status" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:61 msgid "" "\n" "\t\t# Create a service for a replicated nginx, which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose rc nginx --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for a replication controller identified by type and " "name specified in \"nginx-controller.yaml\", which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose -f nginx-controller.yaml --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for a pod valid-pod, which serves on port 444 with " @@ -335,11 +351,11 @@ msgid "" "stream\n" "\n" "\t\t# Create a service for a replicated nginx using replica set, which " -"serves on port 80 and connects to the containers on port 8000.\n" +"serves on port 80 and connects to the containers on port 8000\n" "\t\tkubectl expose rs nginx --port=80 --target-port=8000\n" "\n" "\t\t# Create a service for an nginx deployment, which serves on port 80 and " -"connects to the containers on port 8000.\n" +"connects to the containers on port 8000\n" "\t\tkubectl expose deployment nginx --port=80 --target-port=8000" msgstr "" @@ -425,24 +441,23 @@ msgid "" "\t\tkubectl debug node/mynode -it --image=busybox\n" msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:73 +#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:74 msgid "" "\n" -"\t\t# Delete a pod using the type and name specified in pod.json.\n" +"\t\t# Delete a pod using the type and name specified in pod.json\n" "\t\tkubectl delete -f ./pod.json\n" "\n" "\t\t# Delete resources from a directory containing kustomization.yaml - e.g. " -"dir/kustomization.yaml.\n" +"dir/kustomization.yaml\n" "\t\tkubectl delete -k dir\n" "\n" -"\t\t# Delete a pod based on the type and name in the JSON passed into " -"stdin.\n" +"\t\t# Delete a pod based on the type and name in the JSON passed into stdin\n" "\t\tcat pod.json | kubectl delete -f -\n" "\n" "\t\t# Delete pods and services with same names \"baz\" and \"foo\"\n" "\t\tkubectl delete pod,service baz foo\n" "\n" -"\t\t# Delete pods and services with label name=myLabel.\n" +"\t\t# Delete pods and services with label name=myLabel\n" "\t\tkubectl delete pods,services -l name=myLabel\n" "\n" "\t\t# Delete a pod with minimal delay\n" @@ -475,14 +490,14 @@ msgid "" "\n" "\t\t# Describe all pods managed by the 'frontend' replication controller (rc-" "created pods\n" -"\t\t# get the name of the rc as a prefix in the pod the name).\n" +"\t\t# get the name of the rc as a prefix in the pod the name)\n" "\t\tkubectl describe pods frontend" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:76 msgid "" "\n" -"\t\t# Diff resources included in pod.json.\n" +"\t\t# Diff resources included in pod.json\n" "\t\tkubectl diff -f pod.json\n" "\n" "\t\t# Diff file read from stdin\n" @@ -493,58 +508,80 @@ msgstr "" msgid "" "\n" "\t\t# Drain node \"foo\", even if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.\n" -"\t\t$ kubectl drain foo --force\n" +"replication controller, replica set, job, daemon set or stateful set on it\n" +"\t\tkubectl drain foo --force\n" "\n" -"\t\t# As above, but abort if there are pods not managed by a " -"ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a " -"grace period of 15 minutes.\n" -"\t\t$ kubectl drain foo --grace-period=900" +"\t\t# As above, but abort if there are pods not managed by a replication " +"controller, replica set, job, daemon set or stateful set, and use a grace " +"period of 15 minutes\n" +"\t\tkubectl drain foo --grace-period=900" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:55 msgid "" "\n" -"\t\t# Edit the service named 'docker-registry':\n" +"\t\t# Edit the service named 'docker-registry'\n" "\t\tkubectl edit svc/docker-registry\n" "\n" "\t\t# Use an alternative editor\n" "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" "\n" -"\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" +"\t\t# Edit the job 'myjob' in JSON using the v1 API format\n" "\t\tkubectl edit job.v1.batch/myjob -o json\n" "\n" "\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " -"config in its annotation:\n" +"config in its annotation\n" "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:44 +msgid "" +"\n" +"\t\t# Get output from running pod mypod; use the 'kubectl.kubernetes.io/" +"default-container' annotation\n" +"\t\t# for selecting the container to be attached or the first container in " +"the pod will be chosen\n" +"\t\tkubectl attach mypod\n" +"\n" +"\t\t# Get output from ruby-container from pod mypod\n" +"\t\tkubectl attach mypod -c ruby-container\n" +"\n" +"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container " +"from pod mypod\n" +"\t\t# and sends stdout/stderr from 'bash' back to the client\n" +"\t\tkubectl attach mypod -c ruby-container -i -t\n" +"\n" +"\t\t# Get output from the first pod of a replica set named nginx\n" +"\t\tkubectl attach rs/nginx\n" +"\t\t" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:48 msgid "" "\n" -"\t\t# Get output from running 'date' command from pod mypod, using the first " -"container by default\n" +"\t\t# Get output from running the 'date' command from pod mypod, using the " +"first container by default\n" "\t\tkubectl exec mypod -- date\n" "\n" -"\t\t# Get output from running 'date' command in ruby-container from pod " +"\t\t# Get output from running the 'date' command in ruby-container from pod " "mypod\n" "\t\tkubectl exec mypod -c ruby-container -- date\n" "\n" -"\t\t# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container " +"\t\t# Switch to raw terminal mode; sends stdin to 'bash' in ruby-container " "from pod mypod\n" "\t\t# and sends stdout/stderr from 'bash' back to the client\n" "\t\tkubectl exec mypod -c ruby-container -i -t -- bash -il\n" "\n" "\t\t# List contents of /usr from the first container of pod mypod and sort " -"by modification time.\n" +"by modification time\n" "\t\t# If the command you want to execute in the pod has any flags in common " "(e.g. -i),\n" "\t\t# you must use two dashes (--) to separate your command's flags/" -"arguments.\n" +"arguments\n" "\t\t# Also note, do not surround your command and its flags/arguments with " "quotes\n" "\t\t# unless that is how you would execute it normally (i.e., do ls -t /usr, " -"not \"ls -t /usr\").\n" +"not \"ls -t /usr\")\n" "\t\tkubectl exec mypod -i -t -- ls -t /usr\n" "\n" "\t\t# Get output from running 'date' command from the first pod of the " @@ -557,28 +594,6 @@ msgid "" "\t\t" msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:44 -msgid "" -"\n" -"\t\t# Get output from running pod mypod, use the kubectl.kubernetes.io/" -"default-container annotation \n" -"\t\t# for selecting the container to be attached or the first container in " -"the pod will be chosen\n" -"\t\tkubectl attach mypod\n" -"\n" -"\t\t# Get output from ruby-container from pod mypod\n" -"\t\tkubectl attach mypod -c ruby-container\n" -"\n" -"\t\t# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container " -"from pod mypod\n" -"\t\t# and sends stdout/stderr from 'bash' back to the client\n" -"\t\tkubectl attach mypod -c ruby-container -i -t\n" -"\n" -"\t\t# Get output from the first pod of a ReplicaSet named nginx\n" -"\t\tkubectl attach rs/nginx\n" -"\t\t" -msgstr "" - #: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:46 msgid "" "\n" @@ -598,7 +613,7 @@ msgid "" "\t\t## or, if running Bash 4.1+\n" "\t\t brew install bash-completion@2\n" "\t\t## If kubectl is installed via homebrew, this should start working " -"immediately.\n" +"immediately\n" "\t\t## If you've installed via other means, you may need add the completion " "to your completion directory\n" "\t\t kubectl completion bash > $(brew --prefix)/etc/bash_completion.d/" @@ -606,8 +621,8 @@ msgid "" "\n" "\n" "\t\t# Installing bash completion on Linux\n" -"\t\t## If bash-completion is not installed on Linux, please install the " -"'bash-completion' package\n" +"\t\t## If bash-completion is not installed on Linux, install the 'bash-" +"completion' package\n" "\t\t## via your distribution's package manager.\n" "\t\t## Load the kubectl completion code for bash into the current shell\n" "\t\t source <(kubectl completion bash)\n" @@ -629,44 +644,44 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:105 msgid "" "\n" -"\t\t# List all pods in ps output format.\n" +"\t\t# List all pods in ps output format\n" "\t\tkubectl get pods\n" "\n" "\t\t# List all pods in ps output format with more information (such as node " -"name).\n" +"name)\n" "\t\tkubectl get pods -o wide\n" "\n" "\t\t# List a single replication controller with specified NAME in ps output " -"format.\n" +"format\n" "\t\tkubectl get replicationcontroller web\n" "\n" "\t\t# List deployments in JSON output format, in the \"v1\" version of the " -"\"apps\" API group:\n" +"\"apps\" API group\n" "\t\tkubectl get deployments.v1.apps -o json\n" "\n" -"\t\t# List a single pod in JSON output format.\n" +"\t\t# List a single pod in JSON output format\n" "\t\tkubectl get -o json pod web-pod-13je7\n" "\n" "\t\t# List a pod identified by type and name specified in \"pod.yaml\" in " -"JSON output format.\n" +"JSON output format\n" "\t\tkubectl get -f pod.yaml -o json\n" "\n" "\t\t# List resources from a directory with kustomization.yaml - e.g. dir/" -"kustomization.yaml.\n" +"kustomization.yaml\n" "\t\tkubectl get -k dir/\n" "\n" -"\t\t# Return only the phase value of the specified pod.\n" +"\t\t# Return only the phase value of the specified pod\n" "\t\tkubectl get -o template pod/web-pod-13je7 --template={{.status.phase}}\n" "\n" -"\t\t# List resource information in custom columns.\n" +"\t\t# List resource information in custom columns\n" "\t\tkubectl get pod test-pod -o custom-columns=CONTAINER:.spec.containers[0]." "name,IMAGE:.spec.containers[0].image\n" "\n" "\t\t# List all replication controllers and services together in ps output " -"format.\n" +"format\n" "\t\tkubectl get rc,services\n" "\n" -"\t\t# List one or more resources by their type and names.\n" +"\t\t# List one or more resources by their type and names\n" "\t\tkubectl get rc/web service/frontend pods/web-pod-13je7" msgstr "" @@ -703,39 +718,39 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:87 msgid "" "\n" -"\t\t# Mark node \"foo\" as schedulable.\n" -"\t\t$ kubectl uncordon foo" +"\t\t# Mark node \"foo\" as schedulable\n" +"\t\tkubectl uncordon foo" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:58 msgid "" "\n" -"\t\t# Mark node \"foo\" as unschedulable.\n" +"\t\t# Mark node \"foo\" as unschedulable\n" "\t\tkubectl cordon foo" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:83 msgid "" "\n" -"\t\t# Partially update a node using a strategic merge patch. Specify the " -"patch as JSON.\n" +"\t\t# Partially update a node using a strategic merge patch, specifying the " +"patch as JSON\n" "\t\tkubectl patch node k8s-node-1 -p '{\"spec\":{\"unschedulable\":true}}'\n" "\n" -"\t\t# Partially update a node using a strategic merge patch. Specify the " -"patch as YAML.\n" +"\t\t# Partially update a node using a strategic merge patch, specifying the " +"patch as YAML\n" "\t\tkubectl patch node k8s-node-1 -p $'spec:\n" " unschedulable: true'\n" "\n" "\t\t# Partially update a node identified by the type and name specified in " -"\"node.json\" using strategic merge patch.\n" +"\"node.json\" using strategic merge patch\n" "\t\tkubectl patch -f node.json -p '{\"spec\":{\"unschedulable\":true}}'\n" "\n" "\t\t# Update a container's image; spec.containers[*].name is required " -"because it's a merge key.\n" +"because it's a merge key\n" "\t\tkubectl patch pod valid-pod -p '{\"spec\":{\"containers\":[{\"name\":" "\"kubernetes-serve-hostname\",\"image\":\"new image\"}]}}'\n" "\n" -"\t\t# Update a container's image using a json patch with positional arrays.\n" +"\t\t# Update a container's image using a JSON patch with positional arrays\n" "\t\tkubectl patch pod valid-pod --type='json' -p='[{\"op\": \"replace\", " "\"path\": \"/spec/containers/0/image\", \"value\":\"new image\"}]'" msgstr "" @@ -771,10 +786,10 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:56 msgid "" "\n" -"\t\t# Replace a pod using the data in pod.json.\n" +"\t\t# Replace a pod using the data in pod.json\n" "\t\tkubectl replace -f ./pod.json\n" "\n" -"\t\t# Replace a pod based on the JSON passed into stdin.\n" +"\t\t# Replace a pod based on the JSON passed into stdin\n" "\t\tcat pod.json | kubectl replace -f -\n" "\n" "\t\t# Update a single-container pod's image version (tag) to v4\n" @@ -829,20 +844,20 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:49 msgid "" "\n" -"\t\t# Scale a replicaset named 'foo' to 3.\n" +"\t\t# Scale a replica set named 'foo' to 3\n" "\t\tkubectl scale --replicas=3 rs/foo\n" "\n" "\t\t# Scale a resource identified by type and name specified in \"foo.yaml\" " -"to 3.\n" +"to 3\n" "\t\tkubectl scale --replicas=3 -f foo.yaml\n" "\n" -"\t\t# If the deployment named mysql's current size is 2, scale mysql to 3.\n" +"\t\t# If the deployment named mysql's current size is 2, scale mysql to 3\n" "\t\tkubectl scale --current-replicas=2 --replicas=3 deployment/mysql\n" "\n" -"\t\t# Scale multiple replication controllers.\n" +"\t\t# Scale multiple replication controllers\n" "\t\tkubectl scale --replicas=5 rc/foo rc/bar rc/baz\n" "\n" -"\t\t# Scale statefulset named 'web' to 3.\n" +"\t\t# Scale stateful set named 'web' to 3\n" "\t\tkubectl scale --replicas=3 statefulset/web" msgstr "" @@ -850,20 +865,20 @@ msgstr "" msgid "" "\n" "\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file.\n" +"of a file\n" "\t\tkubectl apply set-last-applied -f deploy.yaml\n" "\n" "\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" +"directory\n" "\t\tkubectl apply set-last-applied -f path/\n" "\n" "\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file, will create the annotation if it does not already exist.\n" +"of a file; will create the annotation if it does not already exist\n" "\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" "\t\t" msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:73 +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:75 msgid "" "\n" "\t\t# Show metrics for all pods in the default namespace\n" @@ -882,67 +897,67 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:62 msgid "" "\n" -"\t\t# Start a nginx pod.\n" +"\t\t# Start a nginx pod\n" "\t\tkubectl run nginx --image=nginx\n" "\n" -"\t\t# Start a hazelcast pod and let the container expose port 5701.\n" +"\t\t# Start a hazelcast pod and let the container expose port 5701\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --port=5701\n" "\n" "\t\t# Start a hazelcast pod and set environment variables " -"\"DNS_DOMAIN=cluster\" and \"POD_NAMESPACE=default\" in the container.\n" +"\"DNS_DOMAIN=cluster\" and \"POD_NAMESPACE=default\" in the container\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --env=" "\"DNS_DOMAIN=cluster\" --env=\"POD_NAMESPACE=default\"\n" "\n" "\t\t# Start a hazelcast pod and set labels \"app=hazelcast\" and \"env=prod" -"\" in the container.\n" +"\" in the container\n" "\t\tkubectl run hazelcast --image=hazelcast/hazelcast --labels=" "\"app=hazelcast,env=prod\"\n" "\n" -"\t\t# Dry run. Print the corresponding API objects without creating them.\n" +"\t\t# Dry run; print the corresponding API objects without creating them\n" "\t\tkubectl run nginx --image=nginx --dry-run=client\n" "\n" "\t\t# Start a nginx pod, but overload the spec with a partial set of values " -"parsed from JSON.\n" +"parsed from JSON\n" "\t\tkubectl run nginx --image=nginx --overrides='{ \"apiVersion\": \"v1\", " "\"spec\": { ... } }'\n" "\n" "\t\t# Start a busybox pod and keep it in the foreground, don't restart it if " -"it exits.\n" +"it exits\n" "\t\tkubectl run -i -t busybox --image=busybox --restart=Never\n" "\n" "\t\t# Start the nginx pod using the default command, but use custom " -"arguments (arg1 .. argN) for that command.\n" +"arguments (arg1 .. argN) for that command\n" "\t\tkubectl run nginx --image=nginx -- ... \n" "\n" -"\t\t# Start the nginx pod using a different command and custom arguments.\n" +"\t\t# Start the nginx pod using a different command and custom arguments\n" "\t\tkubectl run nginx --image=nginx --command -- ... " msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/proxy/proxy.go:73 msgid "" "\n" -"\t\t# To proxy all of the kubernetes api and nothing else.\n" +"\t\t# To proxy all of the Kubernetes API and nothing else\n" "\t\tkubectl proxy --api-prefix=/\n" "\n" -"\t\t# To proxy only part of the kubernetes api and also some static files.\n" +"\t\t# To proxy only part of the Kubernetes API and also some static files\n" "\t\t# You can get pods info with 'curl localhost:8001/api/v1/pods'\n" "\t\tkubectl proxy --www=/my/files --www-prefix=/static/ --api-prefix=/api/\n" "\n" -"\t\t# To proxy the entire kubernetes api at a different root.\n" +"\t\t# To proxy the entire Kubernetes API at a different root\n" "\t\t# You can get pods info with 'curl localhost:8001/custom/api/v1/pods'\n" "\t\tkubectl proxy --api-prefix=/custom/\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver on port 8011, serving static " +"\t\t# Run a proxy to the Kubernetes API server on port 8011, serving static " "content from ./local/www/\n" "\t\tkubectl proxy --port=8011 --www=./local/www/\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver on an arbitrary local port.\n" -"\t\t# The chosen port for the server will be output to stdout.\n" +"\t\t# Run a proxy to the Kubernetes API server on an arbitrary local port\n" +"\t\t# The chosen port for the server will be output to stdout\n" "\t\tkubectl proxy --port=0\n" "\n" -"\t\t# Run a proxy to kubernetes apiserver, changing the api prefix to k8s-" -"api\n" -"\t\t# This makes e.g. the pods api available at localhost:8001/k8s-api/v1/" +"\t\t# Run a proxy to the Kubernetes API server, changing the API prefix to " +"k8s-api\n" +"\t\t# This makes e.g. the pods API available at localhost:8001/k8s-api/v1/" "pods/\n" "\t\tkubectl proxy --api-prefix=/k8s-api" msgstr "" @@ -951,13 +966,13 @@ msgstr "" msgid "" "\n" "\t\t# Update node 'foo' with a taint with key 'dedicated' and value 'special-" -"user' and effect 'NoSchedule'.\n" +"user' and effect 'NoSchedule'\n" "\t\t# If a taint with that key and effect already exists, its value is " -"replaced as specified.\n" +"replaced as specified\n" "\t\tkubectl taint nodes foo dedicated=special-user:NoSchedule\n" "\n" "\t\t# Remove from node 'foo' the taint with key 'dedicated' and effect " -"'NoSchedule' if one exists.\n" +"'NoSchedule' if one exists\n" "\t\tkubectl taint nodes foo dedicated:NoSchedule-\n" "\n" "\t\t# Remove from node 'foo' all the taints with key 'dedicated'\n" @@ -973,11 +988,11 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:95 msgid "" "\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'\n" "\t\tkubectl label pods foo unhealthy=true\n" "\n" "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" +"overwriting any existing value\n" "\t\tkubectl label --overwrite pods foo status=unhealthy\n" "\n" "\t\t# Update all pods in the namespace\n" @@ -986,18 +1001,18 @@ msgid "" "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" "\t\tkubectl label -f pod.json status=unhealthy\n" "\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +"\t\t# Update pod 'foo' only if the resource is unchanged from version 1\n" "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" "\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" +"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists\n" +"\t\t# Does not require the --overwrite flag\n" "\t\tkubectl label pods foo bar-" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:53 msgid "" "\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" +"\t\t# View the last-applied-configuration annotations by type/name in YAML\n" "\t\tkubectl apply view-last-applied deployment/nginx\n" "\n" "\t\t# View the last-applied-configuration annotations by file in JSON\n" @@ -1008,14 +1023,15 @@ msgstr "" msgid "" "\n" "\t\t# Wait for the pod \"busybox1\" to contain the status condition of type " -"\"Ready\".\n" +"\"Ready\"\n" "\t\tkubectl wait --for=condition=Ready pod/busybox1\n" "\n" -"\t\t# The default value of status condition is true, you can set false.\n" +"\t\t# The default value of status condition is true; you can set it to " +"false\n" "\t\tkubectl wait --for=condition=Ready=false pod/busybox1\n" "\n" "\t\t# Wait for the pod \"busybox1\" to be deleted, with a timeout of 60s, " -"after having issued the \"delete\" command.\n" +"after having issued the \"delete\" command\n" "\t\tkubectl delete pod/busybox1\n" "\t\tkubectl wait --for=delete pod/busybox1 --timeout=60s" msgstr "" @@ -1023,7 +1039,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:110 msgid "" "\n" -"\t\tApply a configuration to a resource by filename or stdin.\n" +"\t\tApply a configuration to a resource by file name or stdin.\n" "\t\tThe resource name must be specified. This resource will be created if it " "doesn't exist yet.\n" "\t\tTo use 'apply', always create the resource initially with either 'apply' " @@ -1061,7 +1077,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set.go:28 msgid "" "\n" -"\t\tConfigure application resources\n" +"\t\tConfigure application resources.\n" "\n" "\t\tThese commands help you make changes to existing application resources." msgstr "" @@ -1083,58 +1099,52 @@ msgid "" "\t\tto change to output destination." msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38 -msgid "" -"\n" -"\t\tCreate a ClusterRole." -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:41 -msgid "" -"\n" -"\t\tCreate a ClusterRoleBinding for a particular ClusterRole." -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a RoleBinding for a particular Role or ClusterRole." -msgstr "" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:41 msgid "" "\n" "\t\tCreate a TLS secret from the given public/private key pair.\n" "\n" -"\t\tThe public/private key pair must exist before hand. The public key " +"\t\tThe public/private key pair must exist beforehand. The public key " "certificate must be .PEM encoded and match\n" "\t\tthe given private key." msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:41 +msgid "" +"\n" +"\t\tCreate a cluster role binding for a particular cluster role." +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38 +msgid "" +"\n" +"\t\tCreate a cluster role." +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:46 msgid "" "\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " +"\t\tCreate a config map based on a file, directory, or specified literal " "value.\n" "\n" -"\t\tA single configmap may package one or more key/value pairs.\n" +"\t\tA single config map may package one or more key/value pairs.\n" "\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " +"\t\tWhen creating a config map based on a file, the key will default to the " "basename of the file, and the value will\n" "\t\tdefault to the file content. If the basename is an invalid key, you may " "specify an alternate key.\n" "\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" +"\t\tWhen creating a config map based on a directory, each file whose " +"basename is a valid key in the directory will be\n" +"\t\tpackaged into the config map. Any directory entries except regular " +"files are ignored (e.g. subdirectories,\n" "\t\tsymlinks, devices, pipes, etc)." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_cronjob.go:40 msgid "" "\n" -"\t\tCreate a cronjob with the specified name." +"\t\tCreate a cron job with the specified name." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:40 @@ -1167,7 +1177,7 @@ msgid "" "\n" "\t\tWhen creating applications, you may have a Docker registry that requires " "authentication. In order for the\n" -"\t\tnodes to pull images on your behalf, they have to have the credentials. " +"\t\tnodes to pull images on your behalf, they must have the credentials. " "You can provide this information\n" "\t\tby creating a dockercfg secret and attaching it to your service account." msgstr "" @@ -1176,14 +1186,14 @@ msgstr "" msgid "" "\n" "\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" +"desired minimum available pods." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:40 msgid "" "\n" -"\t\tCreate a priorityclass with the specified name, value, globalDefault and " -"description" +"\t\tCreate a priority class with the specified name, value, globalDefault " +"and description." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:71 @@ -1197,8 +1207,14 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:41 msgid "" "\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" +"\t\tCreate a resource quota with the specified name, hard limits, and " +"optional scopes." +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40 +msgid "" +"\n" +"\t\tCreate a role binding for a particular role or cluster role." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:43 @@ -1238,11 +1254,11 @@ msgid "" "\n" "\t\tCreates a proxy server or application-level gateway between localhost " "and\n" -"\t\tthe Kubernetes API Server. It also allows serving static content over " +"\t\tthe Kubernetes API server. It also allows serving static content over " "specified\n" "\t\tHTTP path. All incoming data enters through one port and gets forwarded " "to\n" -"\t\tthe remote kubernetes API Server port, except for the path matching the " +"\t\tthe remote Kubernetes API server port, except for the path matching the " "static content path." msgstr "" @@ -1250,11 +1266,11 @@ msgstr "" msgid "" "\n" "\t\tCreates an autoscaler that automatically chooses and sets the number of " -"pods that run in a kubernetes cluster.\n" +"pods that run in a Kubernetes cluster.\n" "\n" -"\t\tLooks up a Deployment, ReplicaSet, StatefulSet, or ReplicationController " -"by name and creates an autoscaler that uses the given resource as a " -"reference.\n" +"\t\tLooks up a deployment, replica set, stateful set, or replication " +"controller by name and creates an autoscaler that uses the given resource as " +"a reference.\n" "\t\tAn autoscaler can automatically increase or decrease number of pods " "deployed within the system as needed." msgstr "" @@ -1287,11 +1303,11 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:45 msgid "" "\n" -"\t\tDelete resources by filenames, stdin, resources and names, or by " +"\t\tDelete resources by file names, stdin, resources and names, or by " "resources and label selector.\n" "\n" -"\t\tJSON and YAML formats are accepted. Only one type of the arguments may " -"be specified: filenames,\n" +"\t\tJSON and YAML formats are accepted. Only one type of argument may be " +"specified: file names,\n" "\t\tresources and names, or resources and label selector.\n" "\n" "\t\tSome resources, such as pods, support graceful deletion. These resources " @@ -1307,7 +1323,8 @@ msgid "" "\t\tthan the grace period. To force delete a resource, you must specify the " "--force flag.\n" "\t\tNote: only a subset of resources support graceful deletion. In absence " -"of the support, --grace-period is ignored.\n" +"of the support,\n" +"\t\tthe --grace-period flag is ignored.\n" "\n" "\t\tIMPORTANT: Force deleting pods does not wait for confirmation that the " "pod's processes have been\n" @@ -1323,8 +1340,8 @@ msgid "" "sure the pod is\n" "\t\tterminated, or if your application can tolerate multiple copies of the " "same pod running at once.\n" -"\t\tAlso, if you force delete pods the scheduler may place new pods on those " -"nodes before the node\n" +"\t\tAlso, if you force delete pods, the scheduler may place new pods on " +"those nodes before the node\n" "\t\thas released those resources and causing those pods to be evicted " "immediately.\n" "\n" @@ -1335,7 +1352,7 @@ msgid "" "\t\trest of the resource." msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:171 +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:175 msgid "" "\n" "\t\tDeny a certificate signing request.\n" @@ -1350,11 +1367,11 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:53 msgid "" "\n" -"\t\tDiff configurations specified by filename or stdin between the current " +"\t\tDiff configurations specified by file name or stdin between the current " "online\n" "\t\tconfiguration, and the configuration as it would be if applied.\n" "\n" -"\t\tOutput is always YAML.\n" +"\t\tThe output is always YAML.\n" "\n" "\t\tKUBECTL_EXTERNAL_DIFF environment variable can be used to select your " "own\n" @@ -1362,8 +1379,8 @@ msgid "" "\t\tKUBECTL_EXTERNAL_DIFF=\"colordiff -N -u\"\n" "\n" "\t\tBy default, the \"diff\" command available in your path will be\n" -"\t\trun with \"-u\" (unified diff) and \"-N\" (treat absent files as empty) " -"options.\n" +"\t\trun with the \"-u\" (unified diff) and \"-N\" (treat absent files as " +"empty) options.\n" "\n" "\t\tExit status:\n" "\t\t 0\n" @@ -1377,27 +1394,6 @@ msgid "" "convention." msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:57 -msgid "" -"\n" -"\t\tDisplay Resource (CPU/Memory) usage of nodes.\n" -"\n" -"\t\tThe top-node command allows you to see the resource consumption of nodes." -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:65 -msgid "" -"\n" -"\t\tDisplay Resource (CPU/Memory) usage of pods.\n" -"\n" -"\t\tThe 'top pod' command allows you to see the resource consumption of " -"pods.\n" -"\n" -"\t\tDue to the metrics pipeline delay, they may be unavailable for a few " -"minutes\n" -"\t\tsince pod creation." -msgstr "" - #: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:39 msgid "" "\n" @@ -1422,7 +1418,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:92 msgid "" "\n" -"\t\tDisplay one or many resources\n" +"\t\tDisplay one or many resources.\n" "\n" "\t\tPrints a table of the most important information about the specified " "resources.\n" @@ -1441,10 +1437,31 @@ msgid "" "resources." msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:57 +msgid "" +"\n" +"\t\tDisplay resource (CPU/memory) usage of nodes.\n" +"\n" +"\t\tThe top-node command allows you to see the resource consumption of nodes." +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:67 +msgid "" +"\n" +"\t\tDisplay resource (CPU/memory) usage of pods.\n" +"\n" +"\t\tThe 'top pod' command allows you to see the resource consumption of " +"pods.\n" +"\n" +"\t\tDue to the metrics pipeline delay, they may be unavailable for a few " +"minutes\n" +"\t\tsince pod creation." +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:37 msgid "" "\n" -"\t\tDisplays the current-context" +"\t\tDisplay the current-context." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:113 @@ -1454,22 +1471,23 @@ msgid "" "\n" "\t\tThe given node will be marked unschedulable to prevent new pods from " "arriving.\n" -"\t\t'drain' evicts the pods if the APIServer supports\n" -"\t\t[eviction](http://kubernetes.io/docs/admin/disruptions/). Otherwise, it " -"will use normal\n" +"\t\t'drain' evicts the pods if the API server supports\n" +"\t\t[eviction](https://kubernetes.io/docs/concepts/workloads/pods/" +"disruptions/). Otherwise, it will use normal\n" "\t\tDELETE to delete the pods.\n" "\t\tThe 'drain' evicts or deletes all pods except mirror pods (which cannot " "be deleted through\n" -"\t\tthe API server). If there are DaemonSet-managed pods, drain will not " +"\t\tthe API server). If there are daemon set-managed pods, drain will not " "proceed\n" "\t\twithout --ignore-daemonsets, and regardless it will not delete any\n" -"\t\tDaemonSet-managed pods, because those pods would be immediately replaced " -"by the\n" -"\t\tDaemonSet controller, which ignores unschedulable markings. If there " +"\t\tdaemon set-managed pods, because those pods would be immediately " +"replaced by the\n" +"\t\tdaemon set controller, which ignores unschedulable markings. If there " "are any\n" -"\t\tpods that are neither mirror pods nor managed by ReplicationController,\n" -"\t\tReplicaSet, DaemonSet, StatefulSet or Job, then drain will not delete " -"any pods unless you\n" +"\t\tpods that are neither mirror pods nor managed by a replication " +"controller,\n" +"\t\treplica set, daemon set, stateful set, or job, then drain will not " +"delete any pods unless you\n" "\t\tuse --force. --force will also allow deletion to proceed if the " "managing resource of one\n" "\t\tor more pods is missing.\n" @@ -1482,7 +1500,7 @@ msgid "" "uncordon, which\n" "\t\twill make the node schedulable again.\n" "\n" -"\t\t![Workflow](http://kubernetes.io/images/docs/kubectl_drain.svg)" +"\t\t![Workflow](https://kubernetes.io/images/docs/kubectl_drain.svg)" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:31 @@ -1492,13 +1510,13 @@ msgid "" "\n" "\t\tThe edit command allows you to directly edit any API resource you can " "retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " +"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, " "or EDITOR\n" "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " "Windows.\n" "\t\tYou can edit multiple objects, although changes are applied one at a " "time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " +"\t\taccepts file names as well as command-line arguments, although the files " "you point to must\n" "\t\tbe previously saved versions of resources.\n" "\n" @@ -1531,13 +1549,13 @@ msgid "" "\n" "\t\tThe edit-last-applied command allows you to directly edit any API " "resource you can retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " +"\t\tcommand-line tools. It will open the editor defined by your KUBE_EDITOR, " "or EDITOR\n" "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " "Windows.\n" "\t\tYou can edit multiple objects, although changes are applied one at a " "time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " +"\t\taccepts file names as well as command-line arguments, although the files " "you point to must\n" "\t\tbe previously saved versions of resources.\n" "\n" @@ -1573,7 +1591,7 @@ msgid "" "\n" "\t\tA successful message will be printed to stdout indicating when the " "specified\n" -" condition has been met. One can use -o option to change to output " +" condition has been met. You can use -o option to change to output " "destination." msgstr "" @@ -1614,7 +1632,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:35 msgid "" "\n" -"\t\tList the fields for supported resources\n" +"\t\tList the fields for supported resources.\n" "\n" "\t\tThis command describes the fields associated with each supported API " "resource.\n" @@ -1649,7 +1667,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:57 msgid "" "\n" -"\t\tMark the provided resource as paused\n" +"\t\tMark the provided resource as paused.\n" "\n" "\t\tPaused resources will not be reconciled by a controller.\n" "\t\tUse \"kubectl rollout resume\" to resume a paused resource.\n" @@ -1679,7 +1697,7 @@ msgid "" "#enable-shell-autocompletion\n" "\n" "\t\tNote for zsh users: [1] zsh completions are only supported in versions " -"of zsh >= 5.2" +"of zsh >= 5.2." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:49 @@ -1710,18 +1728,18 @@ msgid "" "\n" "\t\tRenames a context from the kubeconfig file.\n" "\n" -"\t\tCONTEXT_NAME is the context name that you wish to change.\n" +"\t\tCONTEXT_NAME is the context name that you want to change.\n" "\n" -"\t\tNEW_NAME is the new name you wish to set.\n" +"\t\tNEW_NAME is the new name you want to set.\n" "\n" -"\t\tNote: In case the context being renamed is the 'current-context', this " -"field will also be updated." +"\t\tNote: If the context being renamed is the 'current-context', this field " +"will also be updated." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:48 msgid "" "\n" -"\t\tReplace a resource by filename or stdin.\n" +"\t\tReplace a resource by file name or stdin.\n" "\n" "\t\tJSON and YAML formats are accepted. If replacing an existing resource, " "the\n" @@ -1735,13 +1753,13 @@ msgid "" "\n" "\t\tRestart a resource.\n" "\n" -"\t Resource will be rollout restarted." +"\t Resource rollout will be restarted." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:58 msgid "" "\n" -"\t\tResume a paused resource\n" +"\t\tResume a paused resource.\n" "\n" "\t\tPaused resources will not be reconciled by a controller. By resuming a\n" "\t\tresource, we allow it to be reconciled again.\n" @@ -1751,14 +1769,32 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:55 msgid "" "\n" -"\t\tRollback to a previous rollout." +"\t\tRoll back to a previous rollout." +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:47 +msgid "" +"\n" +"\t\tSet a cluster entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values for those fields." +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:44 +msgid "" +"\n" +"\t\tSet a context entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values for those fields." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:40 msgid "" "\n" -"\t\tSet a new size for a Deployment, ReplicaSet, Replication Controller, or " -"StatefulSet.\n" +"\t\tSet a new size for a deployment, replica set, replication controller, or " +"stateful set.\n" "\n" "\t\tScale also allows users to specify one or more preconditions for the " "scale action.\n" @@ -1770,6 +1806,27 @@ msgid "" "\t\tscale is sent to the server." msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:70 +#, c-format +msgid "" +"\n" +"\t\tSet a user entry in kubeconfig.\n" +"\n" +"\t\tSpecifying a name that already exists will merge new fields on top of " +"existing values.\n" +"\n" +"\t\t Client-certificate flags:\n" +"\t\t --%v=certfile --%v=keyfile\n" +"\n" +"\t\t Bearer token flags:\n" +"\t\t\t --%v=bearer_token\n" +"\n" +"\t\t Basic auth flags:\n" +"\t\t\t --%v=basic_user --%v=basic_password\n" +"\n" +"\t\tBearer token and basic auth are mutually exclusive." +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:70 msgid "" "\n" @@ -1795,49 +1852,10 @@ msgid "" " Note: currently selectors can only be set on Service objects." msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:47 -msgid "" -"\n" -"\t\tSets a cluster entry in kubeconfig.\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values for those fields." -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:44 -msgid "" -"\n" -"\t\tSets a context entry in kubeconfig\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values for those fields." -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:70 -#, c-format -msgid "" -"\n" -"\t\tSets a user entry in kubeconfig\n" -"\n" -"\t\tSpecifying a name that already exists will merge new fields on top of " -"existing values.\n" -"\n" -"\t\t Client-certificate flags:\n" -"\t\t --%v=certfile --%v=keyfile\n" -"\n" -"\t\t Bearer token flags:\n" -"\t\t\t --%v=bearer_token\n" -"\n" -"\t\t Basic auth flags:\n" -"\t\t\t --%v=basic_user --%v=basic_password\n" -"\n" -"\t\tBearer token and basic auth are mutually exclusive." -msgstr "" - #: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:39 msgid "" "\n" -"\t\tShow details of a specific resource or group of resources\n" +"\t\tShow details of a specific resource or group of resources.\n" "\n" "\t\tPrint a detailed description of the selected resources, including " "related resources such\n" @@ -1874,12 +1892,12 @@ msgstr "" #, c-format msgid "" "\n" -"\t\tSpecify compute resource requirements (cpu, memory) for any resource " +"\t\tSpecify compute resource requirements (CPU, memory) for any resource " "that defines a pod template. If a pod is successfully scheduled, it is " "guaranteed the amount of resource requested, but may burst up to its " "specified limits.\n" "\n" -"\t\tfor each compute resource, if a limit is specified and a request is " +"\t\tFor each compute resource, if a limit is specified and a request is " "omitted, the request will default to the limit.\n" "\n" "\t\tPossible resources include (case insensitive): %s." @@ -1920,7 +1938,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:78 msgid "" "\n" -"\t\tUpdate field(s) of a resource using strategic merge patch, a JSON merge " +"\t\tUpdate fields of a resource using strategic merge patch, a JSON merge " "patch, or a JSON patch.\n" "\n" "\t\tJSON and YAML formats are accepted." @@ -1929,7 +1947,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:83 msgid "" "\n" -"\t\tUpdate the annotations on one or more resources\n" +"\t\tUpdate the annotations on one or more resources.\n" "\n" "\t\tAll Kubernetes objects support the ability to store additional data with " "the object as\n" @@ -1956,7 +1974,7 @@ msgid "" "contain letters, numbers, hyphens, dots, and underscores, up to %[1]d " "characters each.\n" "\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single " -"'/', like example.com/my-app\n" +"'/', like example.com/my-app.\n" "\t\t* If --overwrite is true, then existing labels can be overwritten, " "otherwise attempting to overwrite a label will result in an error.\n" "\t\t* If --resource-version is specified, then updates will use this " @@ -1974,7 +1992,7 @@ msgid "" "\t\t* The key must begin with a letter or number, and may contain letters, " "numbers, hyphens, dots, and underscores, up to %[1]d characters.\n" "\t\t* Optionally, the key can begin with a DNS subdomain prefix and a single " -"'/', like example.com/my-app\n" +"'/', like example.com/my-app.\n" "\t\t* The value is optional. If given, it must begin with a letter or " "number, and may contain letters, numbers, hyphens, dots, and underscores, up " "to %[2]d characters.\n" @@ -1994,15 +2012,15 @@ msgid "" "\t\tView the latest last-applied-configuration annotations by type/name or " "file.\n" "\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." +"\t\tThe default output will be printed to stdout in YAML format. You can use " +"the -o option\n" +"\t\tto change the output format." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:47 msgid "" "\n" -"\t # Create a new TLS secret named tls-secret with the given key pair:\n" +"\t # Create a new TLS secret named tls-secret with the given key pair\n" "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" "to/tls.key" msgstr "" @@ -2050,18 +2068,18 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_deployment.go:45 msgid "" "\n" -"\t# Create a deployment named my-dep that runs the busybox image.\n" +"\t# Create a deployment named my-dep that runs the busybox image\n" "\tkubectl create deployment my-dep --image=busybox\n" "\n" -"\t# Create a deployment with command\n" +"\t# Create a deployment with a command\n" "\tkubectl create deployment my-dep --image=busybox -- date\n" "\n" "\t# Create a deployment named my-dep that runs the nginx image with 3 " -"replicas.\n" +"replicas\n" "\tkubectl create deployment my-dep --image=nginx --replicas=3\n" "\n" "\t# Create a deployment named my-dep that runs the busybox image and expose " -"port 5701.\n" +"port 5701\n" "\tkubectl create deployment my-dep --image=busybox --port=5701" msgstr "" @@ -2075,11 +2093,11 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:50 msgid "" "\n" -"\t# Set Deployment nginx-deployment's ServiceAccount to serviceaccount1\n" +"\t# Set deployment nginx-deployment's service account to serviceaccount1\n" "\tkubectl set serviceaccount deployment nginx-deployment serviceaccount1\n" "\n" -"\t# Print the result (in yaml format) of updated nginx deployment with " -"serviceaccount from local file, without hitting apiserver\n" +"\t# Print the result (in YAML format) of updated nginx deployment with the " +"service account from local file, without hitting the API server\n" "\tkubectl set sa -f nginx-deployment.yaml serviceaccount1 --local --dry-" "run=client -o yaml\n" "\t" @@ -2117,23 +2135,23 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:44 msgid "" "\n" -"\tSets an individual value in a kubeconfig file\n" +"\tSet an individual value in a kubeconfig file.\n" "\n" "\tPROPERTY_NAME is a dot delimited name where each token represents either " "an attribute name or a map key. Map keys may not contain dots.\n" "\n" -"\tPROPERTY_VALUE is the new value you wish to set. Binary fields such as " +"\tPROPERTY_VALUE is the new value you want to set. Binary fields such as " "'certificate-authority-data' expect a base64 encoded string unless the --set-" "raw-bytes flag is used.\n" "\n" -"\tSpecifying a attribute name that already exists will merge new fields on " +"\tSpecifying an attribute name that already exists will merge new fields on " "top of existing values." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:39 msgid "" "\n" -"\tUnsets an individual value in a kubeconfig file\n" +"\tUnset an individual value in a kubeconfig file.\n" "\n" "\tPROPERTY_NAME is a dot delimited name where each token represents either " "an attribute name or a map key. Map keys may not contain dots." @@ -2142,7 +2160,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:43 msgid "" "\n" -"\tUpdate ServiceAccount of pod template resources.\n" +"\tUpdate the service account of pod template resources.\n" "\n" "\tPossible resources (case insensitive) can be:\n" "\n" @@ -2152,7 +2170,8 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_subject.go:40 msgid "" "\n" -"\tUpdate User, Group or ServiceAccount in a RoleBinding/ClusterRoleBinding." +"\tUpdate the user, group, or service account in a role binding or cluster " +"role binding." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:68 @@ -2173,7 +2192,7 @@ msgid "" " If there are multiple pods matching the criteria, a pod will " "be selected automatically. The\n" " forwarding session ends when the selected pod terminates, " -"and rerun of the command is needed\n" +"and a rerun of the command is needed\n" " to resume forwarding." msgstr "" @@ -2222,7 +2241,7 @@ msgstr "" msgid "" "\n" " # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend'.\n" +"frontend'\n" " # If the same annotation is set multiple times, only the last value will " "be applied\n" " kubectl annotate pods foo description='my frontend'\n" @@ -2231,20 +2250,20 @@ msgid "" " kubectl annotate -f pod.json description='my frontend'\n" "\n" " # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend running nginx', overwriting any existing value.\n" +"frontend running nginx', overwriting any existing value\n" " kubectl annotate --overwrite pods foo description='my frontend running " "nginx'\n" "\n" " # Update all pods in the namespace\n" " kubectl annotate pods --all description='my frontend running nginx'\n" "\n" -" # Update pod 'foo' only if the resource is unchanged from version 1.\n" +" # Update pod 'foo' only if the resource is unchanged from version 1\n" " kubectl annotate pods foo description='my frontend running nginx' --" "resource-version=1\n" "\n" " # Update pod 'foo' by removing an annotation named 'description' if it " -"exists.\n" -" # Does not require the --overwrite flag.\n" +"exists\n" +" # Does not require the --overwrite flag\n" " kubectl annotate pods foo description-" msgstr "" @@ -2269,16 +2288,16 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:93 msgid "" "\n" -" Dumps cluster info out suitable for debugging and diagnosing cluster " -"problems. By default, dumps everything to\n" +" Dump cluster information out suitable for debugging and diagnosing " +"cluster problems. By default, dumps everything to\n" " stdout. You can optionally specify a directory with --output-directory. " -"If you specify a directory, kubernetes will\n" -" build a set of files in that directory. By default only dumps things in " -"the current namespace and 'kube-system' namespace, but you can\n" +"If you specify a directory, Kubernetes will\n" +" build a set of files in that directory. By default, only dumps things " +"in the current namespace and 'kube-system' namespace, but you can\n" " switch to a different namespace with the --namespaces flag, or specify --" "all-namespaces to dump all namespaces.\n" "\n" -" The command also dumps the logs of all of the pods in the cluster, these " +" The command also dumps the logs of all of the pods in the cluster; these " "logs are dumped into different directories\n" " based on namespace and pod name." msgstr "" @@ -2287,7 +2306,7 @@ msgstr "" msgid "" "\n" " Display addresses of the control plane and services with label kubernetes." -"io/cluster-service=true\n" +"io/cluster-service=true.\n" " To further debug and diagnose cluster problems, use 'kubectl cluster-info " "dump'." msgstr "" @@ -2361,7 +2380,7 @@ msgid "Annotations to apply to the pod." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173 -msgid "Apply a configuration to a resource by filename or stdin" +msgid "Apply a configuration to a resource by file name or stdin" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:125 @@ -2385,7 +2404,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/autoscale/autoscale.go:107 msgid "" -"Auto-scale a Deployment, ReplicaSet, StatefulSet, or ReplicationController" +"Auto-scale a deployment, replica set, stateful set, or replication controller" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:161 @@ -2419,60 +2438,83 @@ msgid "Convert config files between different API versions" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:105 +msgid "Copy files and directories to and from containers" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:106 msgid "Copy files and directories to and from containers." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:248 -msgid "Create a ClusterIP service." -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:87 -msgid "Create a ClusterRoleBinding for a particular ClusterRole" +msgid "Create a ClusterIP service" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:323 -msgid "Create a LoadBalancer service." +msgid "Create a LoadBalancer service" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:286 -msgid "Create a NodePort service." -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89 -msgid "Create a RoleBinding for a particular Role or ClusterRole" +msgid "Create a NodePort service" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:94 msgid "Create a TLS secret" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:81 +msgid "Create a cluster role" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:87 +msgid "Create a cluster role binding for a particular cluster role" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:124 -msgid "Create a configmap from a local file, directory or literal value" +msgid "Create a config map from a local file, directory or literal value" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:167 msgid "Create a copy of the target Pod with this name." msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_cronjob.go:90 +msgid "Create a cron job with the specified name" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_deployment.go:100 +msgid "Create a deployment with the specified name" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_job.go:91 +msgid "Create a job with the specified name" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:83 msgid "Create a namespace with the specified name" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:95 -msgid "Create a pod disruption budget with the specified name." +msgid "Create a pod disruption budget with the specified name" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_priorityclass.go:92 -msgid "Create a priorityclass with the specified name." +msgid "Create a priority class with the specified name" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:91 -msgid "Create a quota with the specified name." +msgid "Create a quota with the specified name" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create.go:106 -msgid "Create a resource from a file or from stdin." +msgid "Create a resource from a file or from stdin" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89 +msgid "Create a role binding for a particular role or cluster role" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:161 +msgid "Create a role with single rule" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:134 @@ -2480,7 +2522,7 @@ msgid "Create a secret for use with a Docker registry" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:137 -msgid "Create a secret from a local file, directory or literal value" +msgid "Create a secret from a local file, directory, or literal value" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:49 @@ -2496,12 +2538,19 @@ msgid "Create a service account with the specified name" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:48 +msgid "Create a service using a specified subcommand" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:49 -msgid "Create a service using specified subcommand." +msgid "Create a service using a specified subcommand." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:363 -msgid "Create an ExternalName service." +msgid "Create an ExternalName service" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_ingress.go:145 +msgid "Create an ingress with the specified name" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:60 @@ -2512,28 +2561,37 @@ msgstr "" msgid "Create debugging sessions for troubleshooting workloads and nodes" msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:136 +#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:137 msgid "" -"Delete resources by filenames, stdin, resources and names, or by resources " +"Delete resources by file names, stdin, resources and names, or by resources " "and label selector" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:43 msgid "Delete the specified cluster from the kubeconfig" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:43 +msgid "Delete the specified cluster from the kubeconfig." +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:43 msgid "Delete the specified context from the kubeconfig" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:43 +msgid "Delete the specified context from the kubeconfig." +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_user.go:64 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_user.go:65 msgid "Delete the specified user from the kubeconfig" msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:170 +#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_user.go:65 +msgid "Delete the specified user from the kubeconfig." +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:174 msgid "Deny a certificate signing request" msgstr "" @@ -2542,23 +2600,11 @@ msgid "Describe one or many contexts" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/diff/diff.go:142 -msgid "Diff live version against would-be applied version" -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:81 -msgid "Display Resource (CPU/Memory) usage of nodes" -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:98 -msgid "Display Resource (CPU/Memory) usage of pods" -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50 -msgid "Display Resource (CPU/Memory) usage." +msgid "Diff the live version against a would-be applied version" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo.go:65 -msgid "Display cluster info" +msgid "Display cluster information" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/config/get_clusters.go:41 @@ -2573,10 +2619,30 @@ msgstr "" msgid "Display merged kubeconfig settings or a specified kubeconfig file" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_contexts.go:50 +msgid "Display one or many contexts from the kubeconfig file." +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:165 msgid "Display one or many resources" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50 +msgid "Display resource (CPU/memory) usage" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:81 +msgid "Display resource (CPU/memory) usage of nodes" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:100 +msgid "Display resource (CPU/memory) usage of pods" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 +msgid "Display the current-context" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/config/get_users.go:60 msgid "Display users defined in the kubeconfig" msgstr "" @@ -2585,24 +2651,12 @@ msgstr "" msgid "Display users defined in the kubeconfig." msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/get_contexts.go:50 -msgid "Displays one or many contexts from the kubeconfig file." -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 -msgid "Displays the current-context" -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79 -msgid "Documentation of resources" -msgstr "" - #: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:184 msgid "Drain node in preparation for maintenance" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:74 -msgid "Dump lots of relevant info for debugging and diagnosis" +msgid "Dump relevant information for debugging and diagnosis" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:77 @@ -2630,7 +2684,7 @@ msgid "Execute a command in a container." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/wait/wait.go:115 -msgid "Experimental: Wait for a specific condition on one or many resources." +msgid "Experimental: Wait for a specific condition on one or many resources" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:378 @@ -2641,6 +2695,10 @@ msgstr "" msgid "Forward one or more local ports to a pod" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79 +msgid "Get documentation for a resource" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/help/help.go:37 msgid "Help about any command" msgstr "" @@ -2697,6 +2755,10 @@ msgid "" "Keep stdin open on the container(s) in the pod, even if nothing is attached." msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:90 +msgid "List all visible plugin executables on a user's PATH" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout.go:54 msgid "Manage the rollout of a resource" msgstr "" @@ -2771,7 +2833,8 @@ msgid "Print the client and server version information" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/version/version.go:74 -msgid "Print the client and server version information for the current context" +msgid "" +"Print the client and server version information for the current context." msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/options/options.go:38 @@ -2784,27 +2847,35 @@ msgid "Print the logs for a container in a pod" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:97 -#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:98 msgid "Print the supported API resources on the server" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiresources.go:98 +msgid "Print the supported API resources on the server." +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:58 -#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:59 msgid "" "Print the supported API versions on the server, in the form of \"group/" "version\"" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/apiresources/apiversions.go:59 +msgid "" +"Print the supported API versions on the server, in the form of \"group/" +"version\"." +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:62 -msgid "Provides utilities for interacting with plugins." +msgid "Provides utilities for interacting with plugins" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/config/rename_context.go:45 -msgid "Renames a context from the kubeconfig file." +msgid "Rename a context from the kubeconfig file" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:115 -msgid "Replace a resource by filename or stdin" +msgid "Replace a resource by file name or stdin" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_restart.go:87 @@ -2831,44 +2902,44 @@ msgstr "" msgid "Server location for Docker registry" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 +msgid "Set a cluster entry in kubeconfig" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 +msgid "Set a context entry in kubeconfig" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:114 -msgid "Set a new size for a Deployment, ReplicaSet or Replication Controller" +msgid "Set a new size for a deployment, replica set, or replication controller" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 +msgid "Set a user entry in kubeconfig" +msgstr "" + +#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 +msgid "Set an individual value in a kubeconfig file" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set.go:39 msgid "Set specific features on objects" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:52 +msgid "Set the current-context in a kubeconfig file" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:101 msgid "" "Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." +"contents of a file" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_selector.go:104 msgid "Set the selector on a resource" msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 -msgid "Sets a cluster entry in kubeconfig" -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 -msgid "Sets a context entry in kubeconfig" -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 -msgid "Sets a user entry in kubeconfig" -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 -msgid "Sets an individual value in a kubeconfig file" -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:52 -msgid "Sets the current-context in a kubeconfig file" -msgstr "" - #: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:107 msgid "Show details of a specific resource or group of resources" msgstr "" @@ -2884,7 +2955,7 @@ msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:134 msgid "" "Take a replication controller, service, deployment or pod and expose it as a " -"new Kubernetes Service" +"new Kubernetes service" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:174 @@ -2985,16 +3056,7 @@ msgid "Undo a previous rollout" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:59 -msgid "Unsets an individual value in a kubeconfig file" -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:102 -msgid "Update ServiceAccount of a resource" -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_subject.go:99 -msgid "" -"Update User, Group or ServiceAccount in a RoleBinding/ClusterRoleBinding" +msgid "Unset an individual value in a kubeconfig file" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_env.go:154 @@ -3002,11 +3064,7 @@ msgid "Update environment variables on a pod template" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/patch/patch.go:115 -msgid "Update field(s) of a resource" -msgstr "" - -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110 -msgid "Update image of a pod template" +msgid "Update fields of a resource" msgstr "" #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_resources.go:116 @@ -3017,26 +3075,41 @@ msgstr "" msgid "Update the annotations on a resource" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110 +msgid "Update the image of a pod template" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:133 msgid "Update the labels on a resource" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_serviceaccount.go:102 +msgid "Update the service account of a resource" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:109 msgid "Update the taints on one or more nodes" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_subject.go:99 +msgid "" +"Update the user, group, or service account in a role binding or cluster role " +"binding" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:150 msgid "Username for Docker registry authentication" msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77 -msgid "View latest last-applied-configuration annotations of a resource/object" -msgstr "" - #: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:83 msgid "View rollout history" msgstr "" +#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77 +msgid "" +"View the latest last-applied-configuration annotations of a resource/object" +msgstr "" + #: staging/src/k8s.io/kubectl/pkg/cmd/debug/debug.go:171 msgid "" "When used with '--copy-to', a list of name=image pairs for changing " @@ -3088,10 +3161,6 @@ msgstr "" msgid "kubectl controls the Kubernetes cluster manager" msgstr "" -#: staging/src/k8s.io/kubectl/pkg/cmd/plugin/plugin.go:90 -msgid "list all visible plugin executables on a user's PATH" -msgstr "" - #: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:45 msgid "" "pod (po), service (svc), replicationcontroller (rc), deployment (deploy), " diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_CN/LC_MESSAGES/k8s.mo b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_CN/LC_MESSAGES/k8s.mo index 17ab74ab37f..68c526d19a8 100644 Binary files a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_CN/LC_MESSAGES/k8s.mo and b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_CN/LC_MESSAGES/k8s.mo differ diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_CN/LC_MESSAGES/k8s.po b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_CN/LC_MESSAGES/k8s.po index 1e8b032da61..a8314bb89dc 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_CN/LC_MESSAGES/k8s.po +++ b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_CN/LC_MESSAGES/k8s.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gettext-go-examples-hello\n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2021-05-17 15:40+0200\n" +"POT-Creation-Date: 2021-07-07 20:15+0200\n" "PO-Revision-Date: 2017-11-11 19:01+0800\n" "Last-Translator: zhengjiajin \n" "Language-Team: \n" @@ -20,34 +20,6 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using the " -"cluster-admin ClusterRole\n" -"\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" -"admin --user=user1 --user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # 使用 cluster-admin ClusterRole 为 user1, user2, and group1 创建一个 " -"ClusterRoleBinding\n" -"\t\t kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-" -"admin --user=user1 --user=user2 --group=group1" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:43 -msgid "" -"\n" -"\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " -"ClusterRole\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" -msgstr "" -"\n" -"\t\t # 使用 admin ClusterRole 为 user1, user2, and group1 创建一个 " -"RoleBinding\n" -"\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" -"user=user2 --group=group1" - #: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:62 msgid "" "\n" @@ -64,129 +36,6 @@ msgstr "" "\t\t # 显示指定 node 上的指标\n" "\t\t kubectl top node NODE_NAME" -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:44 -msgid "" -"\n" -"\t\t# Create a new resourcequota named my-quota\n" -"\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," -"replicationcontrollers=2,resourcequotas=1,secrets=5," -"persistentvolumeclaims=10\n" -"\n" -"\t\t# Create a new resourcequota named best-effort\n" -"\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" -msgstr "" -"\n" -"\t\t# 创建一个名为 my-quota 的 resourcequota\n" -"\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3," -"replicationcontrollers=2,resourcequotas=1,secrets=5," -"persistentvolumeclaims=10\n" -"\n" -"\t\t# 创建一个名为 best-effort 的 resourcequota\n" -"\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:44 -#, c-format -msgid "" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=rails label\n" -"\t\t# and require at least one of them being available at any point in " -"time.\n" -"\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" -"available=1\n" -"\n" -"\t\t# Create a pod disruption budget named my-pdb that will select all pods " -"with the app=nginx label\n" -"\t\t# and require at least half of the pods selected to be available at any " -"point in time.\n" -"\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" -msgstr "" -"\n" -"\t\t# 创建一个名称为 my-pdb 的 pod disruption budget 并将会选择所有 " -"app=rails 标签的 pods\n" -"\t\t# 并要求他们在同一时间中最少有一个可用. \n" -"\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" -"available=1\n" -"\n" -"\t\t# 创建一个名称为 my-pdb 的 pod disruption budget 并将会选择所有 " -"app=rails 标签的 pods\n" -"\t\t# 并要求他们在同一时间中最少有一半可用.\n" -"\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" - -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:50 -msgid "" -"\n" -"\t\t# Describe a node\n" -"\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" -"\n" -"\t\t# Describe a pod\n" -"\t\tkubectl describe pods/nginx\n" -"\n" -"\t\t# Describe a pod identified by type and name in \"pod.json\"\n" -"\t\tkubectl describe -f pod.json\n" -"\n" -"\t\t# Describe all pods\n" -"\t\tkubectl describe pods\n" -"\n" -"\t\t# Describe pods by label name=myLabel\n" -"\t\tkubectl describe po -l name=myLabel\n" -"\n" -"\t\t# Describe all pods managed by the 'frontend' replication controller (rc-" -"created pods\n" -"\t\t# get the name of the rc as a prefix in the pod the name).\n" -"\t\tkubectl describe pods frontend" -msgstr "" -"\n" -"\t\t# 描述一个 node\n" -"\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" -"\n" -"\t\t# 描述一个 pod\n" -"\t\tkubectl describe pods/nginx\n" -"\n" -"\t\t# 描述一个被 \"pod.json\" 中的类型和名称标识的 pod\n" -"\t\tkubectl describe -f pod.json\n" -"\n" -"\t\t# 描述所有 pods\n" -"\t\tkubectl describe pods\n" -"\n" -"\t\t# 描述标签为 name=myLabel 的 pods\n" -"\t\tkubectl describe po -l name=myLabel\n" -"\n" -"\t\t# 描述所有被名称为 'frontend' 的 replication controller 管理的 pods(rc-创" -"建 pods\n" -"\t\t# 并使用 rc 的名称作为 pod 的前缀).\n" -"\t\tkubectl describe pods frontend" - -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:54 -msgid "" -"\n" -"\t\t# Edit the service named 'docker-registry':\n" -"\t\tkubectl edit svc/docker-registry\n" -"\n" -"\t\t# Use an alternative editor\n" -"\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" -"\n" -"\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" -"\t\tkubectl edit job.v1.batch/myjob -o json\n" -"\n" -"\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " -"config in its annotation:\n" -"\t\tkubectl edit deployment/mydeployment -o yaml --save-config" -msgstr "" -"\n" -"\t\t# 编辑名为 'docker-registry' 的 service:\n" -"\t\tkubectl edit svc/docker-registry\n" -"\n" -"\t\t# 使用一个可选择的编辑器\n" -"\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" -"\n" -"\t\t# 使用 v1 API 格式的 JSON 编辑名为 'myjob' 的 job:\n" -"\t\tkubectl edit job.v1.batch/myjob -o json\n" -"\n" -"\t\t# 在 YAML 中编辑名为 'mydeployment' 的 deployment 并在它的注解中保存修改" -"后的配置:\n" -"\t\tkubectl edit deployment/mydeployment -o yaml --save-config" - #: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:46 msgid "" "\n" @@ -203,27 +52,6 @@ msgstr "" "\t\t# 获取资源指定字段的文档\n" "\t\tkubectl explain pods.spec.containers" -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:85 -msgid "" -"\n" -"\t\t# Mark node \"foo\" as schedulable.\n" -"\t\t$ kubectl uncordon foo" -msgstr "" -"\n" -"\t\t# 标记 node \"foo\" 为 schedulable.\n" -"\t\t$ kubectl uncordon foo" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:57 -msgid "" -"\n" -"\t\t# Mark node \"foo\" as unschedulable.\n" -"\t\tkubectl cordon foo" -msgstr "" -"\n" -"\t\t# 标记 node \"foo\" 为 unschedulable.\n" -"\t\tkubectl cordon foo" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/options.go#L37 #: staging/src/k8s.io/kubectl/pkg/cmd/options/options.go:29 msgid "" @@ -256,66 +84,7 @@ msgstr "" "\t\t# 输出支持的 API 版本\n" "\t\tkubectl api-versions" -#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:56 -msgid "" -"\n" -"\t\t# Replace a pod using the data in pod.json.\n" -"\t\tkubectl replace -f ./pod.json\n" -"\n" -"\t\t# Replace a pod based on the JSON passed into stdin.\n" -"\t\tcat pod.json | kubectl replace -f -\n" -"\n" -"\t\t# Update a single-container pod's image version (tag) to v4\n" -"\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' | " -"kubectl replace -f -\n" -"\n" -"\t\t# Force replace, delete and then re-create the resource\n" -"\t\tkubectl replace --force -f ./pod.json" -msgstr "" -"\n" -"\t\t# 使用在 pod.json 中的数据替换一个 pod.\n" -"\t\tkubectl replace -f ./pod.json\n" -"\n" -"\t\t# 基于被重定向到 stdin 中的 JSON 替换一个 pod.\n" -"\t\tcat pod.json | kubectl replace -f -\n" -"\n" -"\t\t# 更新一个单独容器的 pod 的 image 版本 (tag) 到 v4\n" -"\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' | " -"kubectl replace -f -\n" -"\n" -"\t\t# 强制替换, 删除然后重新创建这个 resource\n" -"\t\tkubectl replace --force -f ./pod.json" - -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:75 -msgid "" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml\n" -"\n" -"\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" -"\t\tkubectl apply set-last-applied -f path/\n" -"\n" -"\t\t# Set the last-applied-configuration of a resource to match the contents " -"of a file, will create the annotation if it does not already exist.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" -"\t\t" -msgstr "" -"\n" -"\t\t# 设置一个资源的 last-applied-configuration 去匹配一个文件的内容.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml\n" -"\n" -"\t\t# Execute set-last-applied against each configuration file in a " -"directory.\n" -"\t\tkubectl apply set-last-applied -f path/\n" -"\n" -"\t\t# 设置一个资源的 last-applied-configuration 去匹配一个文件的内容, 如果不" -"存在将会创建一个 annotation.\n" -"\t\tkubectl apply set-last-applied -f deploy.yaml --create-annotation=true\n" -"\t\t" - -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:72 +#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:75 msgid "" "\n" "\t\t# Show metrics for all pods in the default namespace\n" @@ -343,66 +112,6 @@ msgstr "" "\t\t# 显示指定 label 为 name=myLabel 的 pods 的 metrics\n" "\t\tkubectl top pod -l name=myLabel" -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:94 -msgid "" -"\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" -"\t\tkubectl label pods foo unhealthy=true\n" -"\n" -"\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" -"\t\tkubectl label --overwrite pods foo status=unhealthy\n" -"\n" -"\t\t# Update all pods in the namespace\n" -"\t\tkubectl label pods --all status=unhealthy\n" -"\n" -"\t\t# Update a pod identified by the type and name in \"pod.json\"\n" -"\t\tkubectl label -f pod.json status=unhealthy\n" -"\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" -"\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" -"\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" -"\t\tkubectl label pods foo bar-" -msgstr "" -"\n" -"\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" -"\t\tkubectl label pods foo unhealthy=true\n" -"\n" -"\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " -"overwriting any existing value.\n" -"\t\tkubectl label --overwrite pods foo status=unhealthy\n" -"\n" -"\t\t# Update all pods in the namespace\n" -"\t\tkubectl label pods --all status=unhealthy\n" -"\n" -"\t\t# Update a pod identified by the type and name in \"pod.json\"\n" -"\t\tkubectl label -f pod.json status=unhealthy\n" -"\n" -"\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" -"\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" -"\n" -"\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" -"\t\t# Does not require the --overwrite flag.\n" -"\t\tkubectl label pods foo bar-" - -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:53 -msgid "" -"\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" -"\t\tkubectl apply view-last-applied deployment/nginx\n" -"\n" -"\t\t# View the last-applied-configuration annotations by file in JSON\n" -"\t\tkubectl apply view-last-applied -f deploy.yaml -o json" -msgstr "" -"\n" -"\t\t# View the last-applied-configuration annotations by type/name in YAML.\n" -"\t\tkubectl apply view-last-applied deployment/nginx\n" -"\n" -"\t\t# View the last-applied-configuration annotations by file in JSON\n" -"\t\tkubectl apply view-last-applied -f deploy.yaml -o json" - #: pkg/kubectl/cmd/convert/convert.go:40 msgid "" "\n" @@ -431,69 +140,6 @@ msgstr "" "\t\t默认以 YAML 格式输出到 stdout. 可以使用 -o option\n" "\t\t修改目标输出的格式." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L68 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrole.go:38 -msgid "" -"\n" -"\t\tCreate a ClusterRole." -msgstr "" -"\n" -"\t\t创建一个 ClusterRole." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a ClusterRoleBinding for a particular ClusterRole." -msgstr "" -"\n" -"\t\t 为指定的 ClusterRole 创建一个 ClusterRoleBinding." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:40 -msgid "" -"\n" -"\t\tCreate a RoleBinding for a particular Role or ClusterRole." -msgstr "" -"\n" -"\t\t为指定的 Role 或者 ClusterRole 创建一个 RoleBinding." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:46 -msgid "" -"\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " -"value.\n" -"\n" -"\t\tA single configmap may package one or more key/value pairs.\n" -"\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " -"basename of the file, and the value will\n" -"\t\tdefault to the file content. If the basename is an invalid key, you may " -"specify an alternate key.\n" -"\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" -"\t\tsymlinks, devices, pipes, etc)." -msgstr "" -"\n" -"\t\tCreate a configmap based on a file, directory, or specified literal " -"value.\n" -"\n" -"\t\tA single configmap may package one or more key/value pairs.\n" -"\n" -"\t\tWhen creating a configmap based on a file, the key will default to the " -"basename of the file, and the value will\n" -"\t\tdefault to the file content. If the basename is an invalid key, you may " -"specify an alternate key.\n" -"\n" -"\t\tWhen creating a configmap based on a directory, each file whose basename " -"is a valid key in the directory will be\n" -"\t\tpackaged into the configmap. Any directory entries except regular files " -"are ignored (e.g. subdirectories,\n" -"\t\tsymlinks, devices, pipes, etc)." - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_namespace.go#L44 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:39 msgid "" @@ -503,28 +149,6 @@ msgstr "" "\n" "\t\t创建一个 namespace 并指定名称." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:41 -msgid "" -"\n" -"\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" -msgstr "" -"\n" -"\t\tCreate a pod disruption budget with the specified name, selector, and " -"desired minimum available pods" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:41 -msgid "" -"\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" -msgstr "" -"\n" -"\t\tCreate a resourcequota with the specified name, hard limits and optional " -"scopes" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_role.go:43 msgid "" @@ -543,69 +167,8 @@ msgstr "" "\n" "\t\t创建一个指定名称的 service account." -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:30 -msgid "" -"\n" -"\t\tEdit a resource from the default editor.\n" -"\n" -"\t\tThe edit command allows you to directly edit any API resource you can " -"retrieve via the\n" -"\t\tcommand line tools. It will open the editor defined by your KUBE_EDITOR, " -"or EDITOR\n" -"\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' for " -"Windows.\n" -"\t\tYou can edit multiple objects, although changes are applied one at a " -"time. The command\n" -"\t\taccepts filenames as well as command line arguments, although the files " -"you point to must\n" -"\t\tbe previously saved versions of resources.\n" -"\n" -"\t\tEditing is done with the API version used to fetch the resource.\n" -"\t\tTo edit using a specific API version, fully-qualify the resource, " -"version, and group.\n" -"\n" -"\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" -"\n" -"\t\tThe flag --windows-line-endings can be used to force Windows line " -"endings,\n" -"\t\totherwise the default for your operating system will be used.\n" -"\n" -"\t\tIn the event an error occurs while updating, a temporary file will be " -"created on disk\n" -"\t\tthat contains your unapplied changes. The most common error when " -"updating a resource\n" -"\t\tis another editor changing the resource on the server. When this occurs, " -"you will have\n" -"\t\tto apply your changes to the newer version of the resource, or update " -"your temporary\n" -"\t\tsaved copy to include the latest resource version." -msgstr "" -"\n" -"\t\t使用默认的编辑器修改资源.\n" -"\n" -"\t\tedit 命令允许你通过命令行直接修改 API 资源.\n" -"\t\t它会打开你在 KUBE_EDITOR 或者EDITOR 环境变量中定义的编辑器\n" -"\t\t或者回滚到 Linux vi 编辑器或者 Windows notepad.\n" -"\t\t你可以修改多个对象, 虽然每次只能修改一次. 这个命令\n" -"\t\t同时也接受文件名作为命令行参数, 尽管这些文件你指出必须是\n" -"\t\t你之前保存的资源版本.\n" -"\n" -"\t\tEditing 是通过用于获取资源的API版本完成的.\n" -"\t\t为了能通过指定的 API 版本修改, 请完全限定 resource, version 和 group.\n" -"\n" -"\t\t默认是 YAML 格式. 想在 JSON 中修改, 指定 \"-o json\".\n" -"\n" -"\t\t--windows-line-endings 命令行参数可以用来强制使用 Windows line endings,\n" -"\t\t否则会使用你操作系统的默认值.\n" -"\n" -"\t\t如果更新时发生错误,将在磁盘上创建一个临时文件\n" -"\t\t里面包含您未应用的更改. 更新资源时最常见的错误\n" -"\t\t是另一个编辑器也在服务器中修改这个资源. 当发生这种情况时, 你将\n" -"\t\t需要应用你的修改到资源的最新版本, 或者更新你被保存的临时文件\n" -"\t\t复制它并使用最新的版本." - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L127 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:84 msgid "" "\n" "\t\tMark node as schedulable." @@ -614,7 +177,7 @@ msgstr "" "\t\t标记 node 为 schedulable." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:54 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:55 msgid "" "\n" "\t\tMark node as unschedulable." @@ -638,36 +201,6 @@ msgstr "" "'kubectl apply -f ' was run,\n" "\t\twithout updating any other parts of the object." -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:47 -msgid "" -"\n" -"\t\tView the latest last-applied-configuration annotations by type/name or " -"file.\n" -"\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." -msgstr "" -"\n" -"\t\tView the latest last-applied-configuration annotations by type/name or " -"file.\n" -"\n" -"\t\tThe default output will be printed to stdout in YAML format. One can use " -"-o option\n" -"\t\tto change output format." - -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:47 -msgid "" -"\n" -"\t # Create a new TLS secret named tls-secret with the given key pair:\n" -"\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" -"to/tls.key" -msgstr "" -"\n" -"\t # 使用提供的 key pair 名称为tls-secret 的 secret:\n" -"\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/" -"to/tls.key" - #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:42 msgid "" "\n" @@ -754,62 +287,6 @@ msgstr "" " kubectl cluster-info dump --namespaces default,kube-system --output-" "directory=/path/to/cluster-state" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:94 -msgid "" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend'.\n" -" # If the same annotation is set multiple times, only the last value will " -"be applied\n" -" kubectl annotate pods foo description='my frontend'\n" -"\n" -" # Update a pod identified by type and name in \"pod.json\"\n" -" kubectl annotate -f pod.json description='my frontend'\n" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend running nginx', overwriting any existing value.\n" -" kubectl annotate --overwrite pods foo description='my frontend running " -"nginx'\n" -"\n" -" # Update all pods in the namespace\n" -" kubectl annotate pods --all description='my frontend running nginx'\n" -"\n" -" # Update pod 'foo' only if the resource is unchanged from version 1.\n" -" kubectl annotate pods foo description='my frontend running nginx' --" -"resource-version=1\n" -"\n" -" # Update pod 'foo' by removing an annotation named 'description' if it " -"exists.\n" -" # Does not require the --overwrite flag.\n" -" kubectl annotate pods foo description-" -msgstr "" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend'.\n" -" # If the same annotation is set multiple times, only the last value will " -"be applied\n" -" kubectl annotate pods foo description='my frontend'\n" -"\n" -" # Update a pod identified by type and name in \"pod.json\"\n" -" kubectl annotate -f pod.json description='my frontend'\n" -"\n" -" # Update pod 'foo' with the annotation 'description' and the value 'my " -"frontend running nginx', overwriting any existing value.\n" -" kubectl annotate --overwrite pods foo description='my frontend running " -"nginx'\n" -"\n" -" # Update all pods in the namespace\n" -" kubectl annotate pods --all description='my frontend running nginx'\n" -"\n" -" # Update pod 'foo' only if the resource is unchanged from version 1.\n" -" kubectl annotate pods foo description='my frontend running nginx' --" -"resource-version=1\n" -"\n" -" # 更新名称为 'foo' 的 pod, 删除一个名称为 'description' 的 annotation 如" -"果它存在. \n" -" # 不要求使用 --overwrite flag.\n" -" kubectl annotate pods foo description-" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_namespace.go#L44 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:308 msgid "" @@ -878,10 +355,6 @@ msgstr "" "is used to override the generated object. Requires that the object supply a " "valid apiVersion field." -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173 -msgid "Apply a configuration to a resource by filename or stdin" -msgstr "通过文件名或标准输入流(stdin)对资源进行配置" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/certificates.go#L71 #: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:125 msgid "Approve a certificate signing request" @@ -897,7 +370,7 @@ msgstr "" "loadbalancing)." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/attach.go#L64 -#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:104 +#: staging/src/k8s.io/kubectl/pkg/cmd/attach/attach.go:105 msgid "Attach to a running container" msgstr "Attach 到一个运行中的 container" @@ -911,7 +384,7 @@ msgstr "" "set to 'None' to create a headless service." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L55 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:100 +#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:101 msgid "ClusterRole this ClusterRoleBinding should reference" msgstr "ClusterRoleBinding 应该指定 ClusterRole" @@ -926,67 +399,26 @@ msgid "Convert config files between different API versions" msgstr "在不同的 API versions 转换配置文件" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/cp.go#L64 -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:104 -#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:105 +#: staging/src/k8s.io/kubectl/pkg/cmd/cp/cp.go:106 msgid "Copy files and directories to and from containers." msgstr "" "复制 files 和 directories 到 containers 和从容器中复制 files 和 directories." -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_clusterrolebinding.go:86 -msgid "Create a ClusterRoleBinding for a particular ClusterRole" -msgstr "为一个指定的 ClusterRole 创建一个 ClusterRoleBinding" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L181 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:323 -msgid "Create a LoadBalancer service." -msgstr "创建一个 LoadBalancer service." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L124 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:286 -msgid "Create a NodePort service." -msgstr "创建一个 NodePort service." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_rolebinding.go:89 -msgid "Create a RoleBinding for a particular Role or ClusterRole" -msgstr "为一个指定的 Role 或者 ClusterRole创建一个 RoleBinding" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L214 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_tls.go:94 msgid "Create a TLS secret" msgstr "创建一个 TLS secret" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_configmap.go#L59 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_configmap.go:124 -msgid "Create a configmap from a local file, directory or literal value" -msgstr "从本地 file, directory 或者 literal value 创建一个 configmap" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_namespace.go#L44 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_namespace.go:83 msgid "Create a namespace with the specified name" msgstr "创建一个指定名称的 namespace" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_pdb.go:95 -msgid "Create a pod disruption budget with the specified name." -msgstr "创建一个指定名称的 pod disruption budget." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_quota.go:91 -msgid "Create a quota with the specified name." -msgstr "创建一个指定名称的 quota." - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L143 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret_docker.go:134 msgid "Create a secret for use with a Docker registry" msgstr "创建一个给 Docker registry 使用的 secret" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L73 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:137 -msgid "Create a secret from a local file, directory or literal value" -msgstr "从本地 file, directory 或者 literal value 创建一个 secret" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L34 #: staging/src/k8s.io/kubectl/pkg/cmd/create/create_secret.go:49 msgid "Create a secret using specified subcommand" @@ -997,40 +429,18 @@ msgstr "使用指定的 subcommand 创建一个 secret" msgid "Create a service account with the specified name" msgstr "创建一个指定名称的 service account" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L36 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:48 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:49 -msgid "Create a service using specified subcommand." -msgstr "使用指定的 subcommand 创建一个 service." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L240 -#: staging/src/k8s.io/kubectl/pkg/cmd/create/create_service.go:363 -msgid "Create an ExternalName service." -msgstr "Create an ExternalName service." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/delete.go#L130 -#: staging/src/k8s.io/kubectl/pkg/cmd/delete/delete.go:135 -msgid "" -"Delete resources by filenames, stdin, resources and names, or by resources " -"and label selector" -msgstr "" -"Delete resources by filenames, stdin, resources and names, or by resources " -"and label selector" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_cluster.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42 msgid "Delete the specified cluster from the kubeconfig" msgstr "删除 kubeconfig 文件中指定的集群" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_context.go#L38 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42 msgid "Delete the specified context from the kubeconfig" msgstr "删除 kubeconfig 文件中指定的 context" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/certificates.go#L121 -#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:170 +#: staging/src/k8s.io/kubectl/pkg/cmd/certificates/certificates.go:174 msgid "Deny a certificate signing request" msgstr "拒绝一个自签证书请求" @@ -1039,26 +449,6 @@ msgstr "拒绝一个自签证书请求" msgid "Describe one or many contexts" msgstr "描述一个或多个 contexts" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_node.go#L77 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_node.go:80 -msgid "Display Resource (CPU/Memory) usage of nodes" -msgstr "显示 nodes 的 Resource (CPU/Memory) 使用" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_pod.go#L79 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top_pod.go:96 -msgid "Display Resource (CPU/Memory) usage of pods" -msgstr "显示 pods 的 Resource (CPU/Memory) 使用" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top.go#L43 -#: staging/src/k8s.io/kubectl/pkg/cmd/top/top.go:50 -msgid "Display Resource (CPU/Memory) usage." -msgstr "显示 Resource (CPU/Memory) 使用." - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo.go#L49 -#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo.go:65 -msgid "Display cluster info" -msgstr "显示集群信息" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/get_clusters.go#L40 #: staging/src/k8s.io/kubectl/pkg/cmd/config/get_clusters.go:41 msgid "Display clusters defined in the kubeconfig" @@ -1070,32 +460,17 @@ msgid "Display merged kubeconfig settings or a specified kubeconfig file" msgstr "显示合并的 kubeconfig 配置或一个指定的 kubeconfig 文件" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/get.go#L107 -#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:161 +#: staging/src/k8s.io/kubectl/pkg/cmd/get/get.go:165 msgid "Display one or many resources" msgstr "显示一个或更多 resources" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/current_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 -msgid "Displays the current-context" -msgstr "显示当前的 context" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/explain.go#L50 -#: staging/src/k8s.io/kubectl/pkg/cmd/explain/explain.go:79 -msgid "Documentation of resources" -msgstr "查看资源的文档" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L176 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:181 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:184 msgid "Drain node in preparation for maintenance" msgstr "Drain node in preparation for maintenance" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo_dump.go#L37 -#: staging/src/k8s.io/kubectl/pkg/cmd/clusterinfo/clusterinfo_dump.go:74 -msgid "Dump lots of relevant info for debugging and diagnosis" -msgstr "Dump lots of relevant info for debugging and diagnosis" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/edit.go#L100 -#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:76 +#: staging/src/k8s.io/kubectl/pkg/cmd/edit/edit.go:77 msgid "Edit a resource on the server" msgstr "在服务器上编辑一个资源" @@ -1105,7 +480,7 @@ msgid "Email for Docker registry" msgstr "Email for Docker registry" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/exec.go#L68 -#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:88 +#: staging/src/k8s.io/kubectl/pkg/cmd/exec/exec.go:89 msgid "Execute a command in a container" msgstr "在一个 container 中执行一个命令" @@ -1129,7 +504,7 @@ msgstr "" "values: 'None', 'ClientIP'" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/annotate.go#L135 -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:155 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:157 msgid "" "If non-empty, the annotation update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -1140,7 +515,7 @@ msgstr "" "resource." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/label.go#L132 -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:152 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:154 msgid "" "If non-empty, the labels update will only succeed if this is the current " "resource-version for the object. Only valid when specifying a single " @@ -1151,17 +526,17 @@ msgstr "" "resource." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L127 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:96 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:98 msgid "Mark node as schedulable" msgstr "标记 node 为 schedulable" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 -#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:68 +#: staging/src/k8s.io/kubectl/pkg/cmd/drain/drain.go:69 msgid "Mark node as unschedulable" msgstr "标记 node 为 unschedulable" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_pause.go#L73 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_pause.go:83 msgid "Mark the provided resource as paused" msgstr "标记提供的 resource 为中止状态" @@ -1186,7 +561,7 @@ msgstr "" "traffic to. Optional." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/logs.go#L108 -#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:173 +#: staging/src/k8s.io/kubectl/pkg/cmd/logs/logs.go:174 msgid "" "Only return logs after a specific date (RFC3339). Defaults to all logs. Only " "one of since-time / since may be used." @@ -1195,7 +570,7 @@ msgstr "" "one of since-time / since may be used." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/completion.go#L97 -#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:113 +#: staging/src/k8s.io/kubectl/pkg/cmd/completion/completion.go:112 msgid "Output shell completion code for the specified shell (bash or zsh)" msgstr "Output shell completion code for the specified shell (bash or zsh)" @@ -1215,7 +590,7 @@ msgid "Path to private key associated with given certificate." msgstr "Path to private key associated with given certificate." # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/scale.go#L82 -#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:129 +#: staging/src/k8s.io/kubectl/pkg/cmd/scale/scale.go:130 msgid "" "Precondition for resource version. Requires that the current resource " "version match this value in order to scale." @@ -1239,13 +614,8 @@ msgstr "输出所有命令的层级关系" msgid "Print the logs for a container in a pod" msgstr "输出容器在 pod 中的日志" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/replace.go#L70 -#: staging/src/k8s.io/kubectl/pkg/cmd/replace/replace.go:115 -msgid "Replace a resource by filename or stdin" -msgstr "通过 filename 或者 stdin替换一个资源" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_resume.go#L71 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_resume.go:87 msgid "Resume a paused resource" msgstr "继续一个停止的 resource" @@ -1274,51 +644,18 @@ msgstr "Server location for Docker registry" msgid "Set specific features on objects" msgstr "为 objects 设置一个指定的特征" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_set_last_applied.go:101 -msgid "" -"Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." -msgstr "" -"Set the last-applied-configuration annotation on a live object to match the " -"contents of a file." - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_selector.go#L81 #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_selector.go:104 msgid "Set the selector on a resource" msgstr "设置 resource 的 selector" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_cluster.go#L67 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 -msgid "Sets a cluster entry in kubeconfig" -msgstr "设置 kubeconfig 文件中的一个集群条目" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_context.go#L57 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 -msgid "Sets a context entry in kubeconfig" -msgstr "设置 kubeconfig 文件中的一个 context 条目" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_authinfo.go#L103 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 -msgid "Sets a user entry in kubeconfig" -msgstr "设置 kubeconfig 文件中的一个用户条目" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/set.go#L59 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 -msgid "Sets an individual value in a kubeconfig file" -msgstr "设置 kubeconfig 文件中的一个单个值" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/use_context.go#L48 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:51 -msgid "Sets the current-context in a kubeconfig file" -msgstr "设置 kubeconfig 文件中的当前上下文" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/describe.go#L80 -#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:106 +#: staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go:107 msgid "Show details of a specific resource or group of resources" msgstr "显示一个指定 resource 或者 group 的 resources 详情" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_status.go#L57 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:101 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_status.go:102 msgid "Show the status of the rollout" msgstr "显示 rollout 的状态" @@ -1327,15 +664,6 @@ msgstr "显示 rollout 的状态" msgid "Synonym for --target-port" msgstr "Synonym for --target-port" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L87 -#: staging/src/k8s.io/kubectl/pkg/cmd/expose/expose.go:134 -msgid "" -"Take a replication controller, service, deployment or pod and expose it as a " -"new Kubernetes Service" -msgstr "" -"使用 replication controller, service, deployment 或者 pod 并暴露它作为一个 新" -"的 Kubernetes Service" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L114 #: staging/src/k8s.io/kubectl/pkg/cmd/run/run.go:174 msgid "The image for the container to run." @@ -1419,36 +747,26 @@ msgid "The type of secret to create" msgstr "创建 secret 类型资源" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_undo.go#L71 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:86 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_undo.go:87 msgid "Undo a previous rollout" msgstr "撤销上一次的 rollout" -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/unset.go#L47 -#: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:59 -msgid "Unsets an individual value in a kubeconfig file" -msgstr "取消设置 kubeconfig 文件中的一个单个值" - -# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_image.go#L94 -#: staging/src/k8s.io/kubectl/pkg/cmd/set/set_image.go:110 -msgid "Update image of a pod template" -msgstr "更新一个 pod template 的镜像" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_resources.go#L101 #: staging/src/k8s.io/kubectl/pkg/cmd/set/set_resources.go:116 msgid "Update resource requests/limits on objects with pod templates" msgstr "在对象的 pod templates 上更新资源的 requests/limits" -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:134 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:135 msgid "Update the annotations on a resource" msgstr "更新一个资源的注解" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/label.go#L109 -#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:132 +#: staging/src/k8s.io/kubectl/pkg/cmd/label/label.go:133 msgid "Update the labels on a resource" msgstr "更新在这个资源上的 labels" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/taint.go#L88 -#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:108 +#: staging/src/k8s.io/kubectl/pkg/cmd/taint/taint.go:109 msgid "Update the taints on one or more nodes" msgstr "更新一个或者多个 node 上的 taints" @@ -1457,12 +775,8 @@ msgstr "更新一个或者多个 node 上的 taints" msgid "Username for Docker registry authentication" msgstr "Username 为 Docker registry authentication" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply_view_last_applied.go:77 -msgid "View latest last-applied-configuration annotations of a resource/object" -msgstr "显示最后的 resource/object 的 last-applied-configuration annotations" - # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_history.go#L51 -#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:82 +#: staging/src/k8s.io/kubectl/pkg/cmd/rollout/rollout_history.go:83 msgid "View rollout history" msgstr "显示 rollout 历史" @@ -1480,10 +794,36 @@ msgid "dummy restart flag)" msgstr "dummy restart flag)" # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/cmd.go#L217 -#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:478 +#: staging/src/k8s.io/kubectl/pkg/cmd/cmd.go:227 msgid "kubectl controls the Kubernetes cluster manager" msgstr "kubectl 控制 Kubernetes cluster 管理" +#~ msgid "" +#~ "\n" +#~ "\t\t # Create a ClusterRoleBinding for user1, user2, and group1 using " +#~ "the cluster-admin ClusterRole\n" +#~ "\t\t kubectl create clusterrolebinding cluster-admin --" +#~ "clusterrole=cluster-admin --user=user1 --user=user2 --group=group1" +#~ msgstr "" +#~ "\n" +#~ "\t\t # 使用 cluster-admin ClusterRole 为 user1, user2, and group1 创建一" +#~ "个 ClusterRoleBinding\n" +#~ "\t\t kubectl create clusterrolebinding cluster-admin --" +#~ "clusterrole=cluster-admin --user=user1 --user=user2 --group=group1" + +#~ msgid "" +#~ "\n" +#~ "\t\t # Create a RoleBinding for user1, user2, and group1 using the admin " +#~ "ClusterRole\n" +#~ "\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +#~ "user=user2 --group=group1" +#~ msgstr "" +#~ "\n" +#~ "\t\t # 使用 admin ClusterRole 为 user1, user2, and group1 创建一个 " +#~ "RoleBinding\n" +#~ "\t\t kubectl create rolebinding admin --clusterrole=admin --user=user1 --" +#~ "user=user2 --group=group1" + #~ msgid "" #~ "\n" #~ "\t\t # Create a new configmap named my-config based on folder bar\n" @@ -1631,6 +971,53 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\t\tkubectl create clusterrole pod-reader --verb=get,list,watch --" #~ "resource=pods --resource-name=readablepod" +#~ msgid "" +#~ "\n" +#~ "\t\t# Create a new resourcequota named my-quota\n" +#~ "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2," +#~ "services=3,replicationcontrollers=2,resourcequotas=1,secrets=5," +#~ "persistentvolumeclaims=10\n" +#~ "\n" +#~ "\t\t# Create a new resourcequota named best-effort\n" +#~ "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" +#~ msgstr "" +#~ "\n" +#~ "\t\t# 创建一个名为 my-quota 的 resourcequota\n" +#~ "\t\tkubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2," +#~ "services=3,replicationcontrollers=2,resourcequotas=1,secrets=5," +#~ "persistentvolumeclaims=10\n" +#~ "\n" +#~ "\t\t# 创建一个名为 best-effort 的 resourcequota\n" +#~ "\t\tkubectl create quota best-effort --hard=pods=100 --scopes=BestEffort" + +#, c-format +#~ msgid "" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=rails label\n" +#~ "\t\t# and require at least one of them being available at any point in " +#~ "time.\n" +#~ "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" +#~ "available=1\n" +#~ "\n" +#~ "\t\t# Create a pod disruption budget named my-pdb that will select all " +#~ "pods with the app=nginx label\n" +#~ "\t\t# and require at least half of the pods selected to be available at " +#~ "any point in time.\n" +#~ "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" +#~ msgstr "" +#~ "\n" +#~ "\t\t# 创建一个名称为 my-pdb 的 pod disruption budget 并将会选择所有 " +#~ "app=rails 标签的 pods\n" +#~ "\t\t# 并要求他们在同一时间中最少有一个可用. \n" +#~ "\t\tkubectl create poddisruptionbudget my-pdb --selector=app=rails --min-" +#~ "available=1\n" +#~ "\n" +#~ "\t\t# 创建一个名称为 my-pdb 的 pod disruption budget 并将会选择所有 " +#~ "app=rails 标签的 pods\n" +#~ "\t\t# 并要求他们在同一时间中最少有一半可用.\n" +#~ "\t\tkubectl create pdb my-pdb --selector=app=nginx --min-available=50%" + #~ msgid "" #~ "\n" #~ "\t\t# Create a pod using the data in pod.json.\n" @@ -1767,6 +1154,49 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\t\t# 删除所有 pods\n" #~ "\t\tkubectl delete pods --all" +#~ msgid "" +#~ "\n" +#~ "\t\t# Describe a node\n" +#~ "\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" +#~ "\n" +#~ "\t\t# Describe a pod\n" +#~ "\t\tkubectl describe pods/nginx\n" +#~ "\n" +#~ "\t\t# Describe a pod identified by type and name in \"pod.json\"\n" +#~ "\t\tkubectl describe -f pod.json\n" +#~ "\n" +#~ "\t\t# Describe all pods\n" +#~ "\t\tkubectl describe pods\n" +#~ "\n" +#~ "\t\t# Describe pods by label name=myLabel\n" +#~ "\t\tkubectl describe po -l name=myLabel\n" +#~ "\n" +#~ "\t\t# Describe all pods managed by the 'frontend' replication controller " +#~ "(rc-created pods\n" +#~ "\t\t# get the name of the rc as a prefix in the pod the name).\n" +#~ "\t\tkubectl describe pods frontend" +#~ msgstr "" +#~ "\n" +#~ "\t\t# 描述一个 node\n" +#~ "\t\tkubectl describe nodes kubernetes-node-emt8.c.myproject.internal\n" +#~ "\n" +#~ "\t\t# 描述一个 pod\n" +#~ "\t\tkubectl describe pods/nginx\n" +#~ "\n" +#~ "\t\t# 描述一个被 \"pod.json\" 中的类型和名称标识的 pod\n" +#~ "\t\tkubectl describe -f pod.json\n" +#~ "\n" +#~ "\t\t# 描述所有 pods\n" +#~ "\t\tkubectl describe pods\n" +#~ "\n" +#~ "\t\t# 描述标签为 name=myLabel 的 pods\n" +#~ "\t\tkubectl describe po -l name=myLabel\n" +#~ "\n" +#~ "\t\t# 描述所有被名称为 'frontend' 的 replication controller 管理的 " +#~ "pods(rc-创建 pods\n" +#~ "\t\t# 并使用 rc 的名称作为 pod 的前缀).\n" +#~ "\t\tkubectl describe pods frontend" + #~ msgid "" #~ "\n" #~ "\t\t# Drain node \"foo\", even if there are pods not managed by a " @@ -1787,6 +1217,35 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "Job, DaemonSet 或者 StatefulSet 管理超过 15 分钟则退出.\n" #~ "\t\t$ kubectl drain foo --grace-period=900" +#~ msgid "" +#~ "\n" +#~ "\t\t# Edit the service named 'docker-registry':\n" +#~ "\t\tkubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Use an alternative editor\n" +#~ "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# Edit the job 'myjob' in JSON using the v1 API format:\n" +#~ "\t\tkubectl edit job.v1.batch/myjob -o json\n" +#~ "\n" +#~ "\t\t# Edit the deployment 'mydeployment' in YAML and save the modified " +#~ "config in its annotation:\n" +#~ "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" +#~ msgstr "" +#~ "\n" +#~ "\t\t# 编辑名为 'docker-registry' 的 service:\n" +#~ "\t\tkubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# 使用一个可选择的编辑器\n" +#~ "\t\tKUBE_EDITOR=\"nano\" kubectl edit svc/docker-registry\n" +#~ "\n" +#~ "\t\t# 使用 v1 API 格式的 JSON 编辑名为 'myjob' 的 job:\n" +#~ "\t\tkubectl edit job.v1.batch/myjob -o json\n" +#~ "\n" +#~ "\t\t# 在 YAML 中编辑名为 'mydeployment' 的 deployment 并在它的注解中保存修" +#~ "改后的配置:\n" +#~ "\t\tkubectl edit deployment/mydeployment -o yaml --save-config" + #~ msgid "" #~ "\n" #~ "\t\t# Get output from running 'date' from pod 123456-7890, using the " @@ -1989,6 +1448,25 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\t\t# 在本地随机监听一个端口 , forwarding 到 pod 的 5000端口\n" #~ "\t\tkubectl port-forward mypod 0:5000" +#~ msgid "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as schedulable.\n" +#~ "\t\t$ kubectl uncordon foo" +#~ msgstr "" +#~ "\n" +#~ "\t\t# 标记 node \"foo\" 为 schedulable.\n" +#~ "\t\t$ kubectl uncordon foo" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102 +#~ msgid "" +#~ "\n" +#~ "\t\t# Mark node \"foo\" as unschedulable.\n" +#~ "\t\tkubectl cordon foo" +#~ msgstr "" +#~ "\n" +#~ "\t\t# 标记 node \"foo\" 为 unschedulable.\n" +#~ "\t\tkubectl cordon foo" + #~ msgid "" #~ "\n" #~ "\t\t# Partially update a node using strategic merge patch\n" @@ -2036,6 +1514,35 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\t\t# 输出 master 和 cluster services 的地址\n" #~ "\t\tkubectl cluster-info" +#~ msgid "" +#~ "\n" +#~ "\t\t# Replace a pod using the data in pod.json.\n" +#~ "\t\tkubectl replace -f ./pod.json\n" +#~ "\n" +#~ "\t\t# Replace a pod based on the JSON passed into stdin.\n" +#~ "\t\tcat pod.json | kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Update a single-container pod's image version (tag) to v4\n" +#~ "\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' " +#~ "| kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# Force replace, delete and then re-create the resource\n" +#~ "\t\tkubectl replace --force -f ./pod.json" +#~ msgstr "" +#~ "\n" +#~ "\t\t# 使用在 pod.json 中的数据替换一个 pod.\n" +#~ "\t\tkubectl replace -f ./pod.json\n" +#~ "\n" +#~ "\t\t# 基于被重定向到 stdin 中的 JSON 替换一个 pod.\n" +#~ "\t\tcat pod.json | kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# 更新一个单独容器的 pod 的 image 版本 (tag) 到 v4\n" +#~ "\t\tkubectl get pod mypod -o yaml | sed 's/\\(image: myimage\\):.*$/:v4/' " +#~ "| kubectl replace -f -\n" +#~ "\n" +#~ "\t\t# 强制替换, 删除然后重新创建这个 resource\n" +#~ "\t\tkubectl replace --force -f ./pod.json" + #~ msgid "" #~ "\n" #~ "\t\t# Return snapshot logs from pod nginx with only one container\n" @@ -2157,6 +1664,37 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\t\t# Scale 名称为 ’cron’ 的 job 副本数量为 3.\n" #~ "\t\tkubectl scale --replicas=3 job/cron" +#~ msgid "" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml\n" +#~ "\n" +#~ "\t\t# Execute set-last-applied against each configuration file in a " +#~ "directory.\n" +#~ "\t\tkubectl apply set-last-applied -f path/\n" +#~ "\n" +#~ "\t\t# Set the last-applied-configuration of a resource to match the " +#~ "contents of a file, will create the annotation if it does not already " +#~ "exist.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml --create-" +#~ "annotation=true\n" +#~ "\t\t" +#~ msgstr "" +#~ "\n" +#~ "\t\t# 设置一个资源的 last-applied-configuration 去匹配一个文件的内容.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml\n" +#~ "\n" +#~ "\t\t# Execute set-last-applied against each configuration file in a " +#~ "directory.\n" +#~ "\t\tkubectl apply set-last-applied -f path/\n" +#~ "\n" +#~ "\t\t# 设置一个资源的 last-applied-configuration 去匹配一个文件的内容, 如果" +#~ "不存在将会创建一个 annotation.\n" +#~ "\t\tkubectl apply set-last-applied -f deploy.yaml --create-" +#~ "annotation=true\n" +#~ "\t\t" + #~ msgid "" #~ "\n" #~ "\t\t# Shut down foo.\n" @@ -2308,6 +1846,49 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\t\t# Remove from node 'foo' all the taints with key 'dedicated'\n" #~ "\t\tkubectl taint nodes foo dedicated-" +#~ msgid "" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +#~ "\t\tkubectl label pods foo unhealthy=true\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " +#~ "overwriting any existing value.\n" +#~ "\t\tkubectl label --overwrite pods foo status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update all pods in the namespace\n" +#~ "\t\tkubectl label pods --all status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" +#~ "\t\tkubectl label -f pod.json status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" +#~ "\t\t# Does not require the --overwrite flag.\n" +#~ "\t\tkubectl label pods foo bar-" +#~ msgstr "" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'unhealthy' and the value 'true'.\n" +#~ "\t\tkubectl label pods foo unhealthy=true\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' with the label 'status' and the value 'unhealthy', " +#~ "overwriting any existing value.\n" +#~ "\t\tkubectl label --overwrite pods foo status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update all pods in the namespace\n" +#~ "\t\tkubectl label pods --all status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update a pod identified by the type and name in \"pod.json\"\n" +#~ "\t\tkubectl label -f pod.json status=unhealthy\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ "\t\tkubectl label pods foo status=unhealthy --resource-version=1\n" +#~ "\n" +#~ "\t\t# Update pod 'foo' by removing a label named 'bar' if it exists.\n" +#~ "\t\t# Does not require the --overwrite flag.\n" +#~ "\t\tkubectl label pods foo bar-" + #~ msgid "" #~ "\n" #~ "\t\t# Update pods of frontend-v1 using new replication controller data in " @@ -2351,6 +1932,23 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "to frontend-v2).\n" #~ "\t\tkubectl rolling-update frontend-v1 frontend-v2 --rollback" +#~ msgid "" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by type/name in " +#~ "YAML.\n" +#~ "\t\tkubectl apply view-last-applied deployment/nginx\n" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by file in JSON\n" +#~ "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" +#~ msgstr "" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by type/name in " +#~ "YAML.\n" +#~ "\t\tkubectl apply view-last-applied deployment/nginx\n" +#~ "\n" +#~ "\t\t# View the last-applied-configuration annotations by file in JSON\n" +#~ "\t\tkubectl apply view-last-applied -f deploy.yaml -o json" + #~ msgid "" #~ "\n" #~ "\t\tApply a configuration to a resource by filename or stdin.\n" @@ -2376,6 +1974,30 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "not use unless you are aware of what the current state is. See https://" #~ "issues.k8s.io/34274." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L68 +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\t创建一个 ClusterRole." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a ClusterRoleBinding for a particular ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\t 为指定的 ClusterRole 创建一个 ClusterRoleBinding." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a RoleBinding for a particular Role or ClusterRole." +#~ msgstr "" +#~ "\n" +#~ "\t\t为指定的 Role 或者 ClusterRole 创建一个 RoleBinding." + #~ msgid "" #~ "\n" #~ "\t\tCreate a TLS secret from the given public/private key pair.\n" @@ -2389,6 +2011,41 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\t\tpublic/private key pair 必须在传递前存在. public key certificate 必须" #~ "以 .PEM 被编码且匹配指定的 private key." +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a configmap based on a file, directory, or specified literal " +#~ "value.\n" +#~ "\n" +#~ "\t\tA single configmap may package one or more key/value pairs.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a file, the key will default to " +#~ "the basename of the file, and the value will\n" +#~ "\t\tdefault to the file content. If the basename is an invalid key, you " +#~ "may specify an alternate key.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a directory, each file whose " +#~ "basename is a valid key in the directory will be\n" +#~ "\t\tpackaged into the configmap. Any directory entries except regular " +#~ "files are ignored (e.g. subdirectories,\n" +#~ "\t\tsymlinks, devices, pipes, etc)." +#~ msgstr "" +#~ "\n" +#~ "\t\tCreate a configmap based on a file, directory, or specified literal " +#~ "value.\n" +#~ "\n" +#~ "\t\tA single configmap may package one or more key/value pairs.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a file, the key will default to " +#~ "the basename of the file, and the value will\n" +#~ "\t\tdefault to the file content. If the basename is an invalid key, you " +#~ "may specify an alternate key.\n" +#~ "\n" +#~ "\t\tWhen creating a configmap based on a directory, each file whose " +#~ "basename is a valid key in the directory will be\n" +#~ "\t\tpackaged into the configmap. Any directory entries except regular " +#~ "files are ignored (e.g. subdirectories,\n" +#~ "\t\tsymlinks, devices, pipes, etc)." + #~ msgid "" #~ "\n" #~ "\t\tCreate a new secret for use with Docker registries.\n" @@ -2436,6 +2093,16 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\t\tby creating a dockercfg secret and attaching it to your service " #~ "account." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a pod disruption budget with the specified name, selector, and " +#~ "desired minimum available pods" +#~ msgstr "" +#~ "\n" +#~ "\t\tCreate a pod disruption budget with the specified name, selector, and " +#~ "desired minimum available pods" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create.go#L56 #~ msgid "" #~ "\n" @@ -2448,6 +2115,16 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\n" #~ "\t\tJSON and YAML formats are accepted." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 +#~ msgid "" +#~ "\n" +#~ "\t\tCreate a resourcequota with the specified name, hard limits and " +#~ "optional scopes" +#~ msgstr "" +#~ "\n" +#~ "\t\tCreate a resourcequota with the specified name, hard limits and " +#~ "optional scopes" + #~ msgid "" #~ "\n" #~ "\t\tCreate a secret based on a file, directory, or specified literal " @@ -2757,6 +2434,68 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\n" #~ "\t\t![Workflow](http://kubernetes.io/images/docs/kubectl_drain.svg)" +#~ msgid "" +#~ "\n" +#~ "\t\tEdit a resource from the default editor.\n" +#~ "\n" +#~ "\t\tThe edit command allows you to directly edit any API resource you can " +#~ "retrieve via the\n" +#~ "\t\tcommand line tools. It will open the editor defined by your " +#~ "KUBE_EDITOR, or EDITOR\n" +#~ "\t\tenvironment variables, or fall back to 'vi' for Linux or 'notepad' " +#~ "for Windows.\n" +#~ "\t\tYou can edit multiple objects, although changes are applied one at a " +#~ "time. The command\n" +#~ "\t\taccepts filenames as well as command line arguments, although the " +#~ "files you point to must\n" +#~ "\t\tbe previously saved versions of resources.\n" +#~ "\n" +#~ "\t\tEditing is done with the API version used to fetch the resource.\n" +#~ "\t\tTo edit using a specific API version, fully-qualify the resource, " +#~ "version, and group.\n" +#~ "\n" +#~ "\t\tThe default format is YAML. To edit in JSON, specify \"-o json\".\n" +#~ "\n" +#~ "\t\tThe flag --windows-line-endings can be used to force Windows line " +#~ "endings,\n" +#~ "\t\totherwise the default for your operating system will be used.\n" +#~ "\n" +#~ "\t\tIn the event an error occurs while updating, a temporary file will be " +#~ "created on disk\n" +#~ "\t\tthat contains your unapplied changes. The most common error when " +#~ "updating a resource\n" +#~ "\t\tis another editor changing the resource on the server. When this " +#~ "occurs, you will have\n" +#~ "\t\tto apply your changes to the newer version of the resource, or update " +#~ "your temporary\n" +#~ "\t\tsaved copy to include the latest resource version." +#~ msgstr "" +#~ "\n" +#~ "\t\t使用默认的编辑器修改资源.\n" +#~ "\n" +#~ "\t\tedit 命令允许你通过命令行直接修改 API 资源.\n" +#~ "\t\t它会打开你在 KUBE_EDITOR 或者EDITOR 环境变量中定义的编辑器\n" +#~ "\t\t或者回滚到 Linux vi 编辑器或者 Windows notepad.\n" +#~ "\t\t你可以修改多个对象, 虽然每次只能修改一次. 这个命令\n" +#~ "\t\t同时也接受文件名作为命令行参数, 尽管这些文件你指出必须是\n" +#~ "\t\t你之前保存的资源版本.\n" +#~ "\n" +#~ "\t\tEditing 是通过用于获取资源的API版本完成的.\n" +#~ "\t\t为了能通过指定的 API 版本修改, 请完全限定 resource, version 和 " +#~ "group.\n" +#~ "\n" +#~ "\t\t默认是 YAML 格式. 想在 JSON 中修改, 指定 \"-o json\".\n" +#~ "\n" +#~ "\t\t--windows-line-endings 命令行参数可以用来强制使用 Windows line " +#~ "endings,\n" +#~ "\t\t否则会使用你操作系统的默认值.\n" +#~ "\n" +#~ "\t\t如果更新时发生错误,将在磁盘上创建一个临时文件\n" +#~ "\t\t里面包含您未应用的更改. 更新资源时最常见的错误\n" +#~ "\t\t是另一个编辑器也在服务器中修改这个资源. 当发生这种情况时, 你将\n" +#~ "\t\t需要应用你的修改到资源的最新版本, 或者更新你被保存的临时文件\n" +#~ "\t\t复制它并使用最新的版本." + #~ msgid "" #~ "\n" #~ "\t\tOutput shell completion code for the specified shell (bash or zsh).\n" @@ -2977,6 +2716,23 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\t\t* The effect must be NoSchedule, PreferNoSchedule or NoExecute.\n" #~ "\t\t* Currently taint can only apply to node." +#~ msgid "" +#~ "\n" +#~ "\t\tView the latest last-applied-configuration annotations by type/name " +#~ "or file.\n" +#~ "\n" +#~ "\t\tThe default output will be printed to stdout in YAML format. One can " +#~ "use -o option\n" +#~ "\t\tto change output format." +#~ msgstr "" +#~ "\n" +#~ "\t\tView the latest last-applied-configuration annotations by type/name " +#~ "or file.\n" +#~ "\n" +#~ "\t\tThe default output will be printed to stdout in YAML format. One can " +#~ "use -o option\n" +#~ "\t\tto change output format." + #~ msgid "" #~ "\n" #~ "\t # !!!Important Note!!!\n" @@ -3018,6 +2774,17 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "\t\t# 从一个远程的 pod 的 /tmp/foo 路径复制到本地 /tmp/bar 路径\n" #~ "\t\tkubectl cp /:/tmp/foo /tmp/bar" +#~ msgid "" +#~ "\n" +#~ "\t # Create a new TLS secret named tls-secret with the given key pair:\n" +#~ "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --" +#~ "key=path/to/tls.key" +#~ msgstr "" +#~ "\n" +#~ "\t # 使用提供的 key pair 名称为tls-secret 的 secret:\n" +#~ "\t kubectl create secret tls tls-secret --cert=path/to/tls.cert --" +#~ "key=path/to/tls.key" + #~ msgid "" #~ "\n" #~ "\t # Create a new secret named my-secret with keys for each file in " @@ -3091,6 +2858,61 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ " # 创建一个名称为 my-ns 的 nodeport service\n" #~ " kubectl create service nodeport my-ns --tcp=5678:8080" +#~ msgid "" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend'.\n" +#~ " # If the same annotation is set multiple times, only the last value " +#~ "will be applied\n" +#~ " kubectl annotate pods foo description='my frontend'\n" +#~ "\n" +#~ " # Update a pod identified by type and name in \"pod.json\"\n" +#~ " kubectl annotate -f pod.json description='my frontend'\n" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend running nginx', overwriting any existing value.\n" +#~ " kubectl annotate --overwrite pods foo description='my frontend " +#~ "running nginx'\n" +#~ "\n" +#~ " # Update all pods in the namespace\n" +#~ " kubectl annotate pods --all description='my frontend running nginx'\n" +#~ "\n" +#~ " # Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ " kubectl annotate pods foo description='my frontend running nginx' --" +#~ "resource-version=1\n" +#~ "\n" +#~ " # Update pod 'foo' by removing an annotation named 'description' if " +#~ "it exists.\n" +#~ " # Does not require the --overwrite flag.\n" +#~ " kubectl annotate pods foo description-" +#~ msgstr "" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend'.\n" +#~ " # If the same annotation is set multiple times, only the last value " +#~ "will be applied\n" +#~ " kubectl annotate pods foo description='my frontend'\n" +#~ "\n" +#~ " # Update a pod identified by type and name in \"pod.json\"\n" +#~ " kubectl annotate -f pod.json description='my frontend'\n" +#~ "\n" +#~ " # Update pod 'foo' with the annotation 'description' and the value " +#~ "'my frontend running nginx', overwriting any existing value.\n" +#~ " kubectl annotate --overwrite pods foo description='my frontend " +#~ "running nginx'\n" +#~ "\n" +#~ " # Update all pods in the namespace\n" +#~ " kubectl annotate pods --all description='my frontend running nginx'\n" +#~ "\n" +#~ " # Update pod 'foo' only if the resource is unchanged from version 1.\n" +#~ " kubectl annotate pods foo description='my frontend running nginx' --" +#~ "resource-version=1\n" +#~ "\n" +#~ " # 更新名称为 'foo' 的 pod, 删除一个名称为 'description' 的 annotation " +#~ "如果它存在. \n" +#~ " # 不要求使用 --overwrite flag.\n" +#~ " kubectl annotate pods foo description-" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_serviceaccount.go#L44 #~ msgid "" #~ "\n" @@ -3171,6 +2993,9 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "empty, it is used to override the generated object. Requires that the " #~ "object supply a valid apiVersion field. Only used if --expose is true." +#~ msgid "Apply a configuration to a resource by filename or stdin" +#~ msgstr "通过文件名或标准输入流(stdin)对资源进行配置" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/autoscale.go#L55 #~ msgid "Auto-scale a Deployment, ReplicaSet, or ReplicationController" #~ msgstr "" @@ -3186,22 +3011,98 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "image is specified, ignored otherwise. Required when using --image on a " #~ "multi-container pod" +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43 +#~ msgid "Create a ClusterRoleBinding for a particular ClusterRole" +#~ msgstr "为一个指定的 ClusterRole 创建一个 ClusterRoleBinding" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L181 +#~ msgid "Create a LoadBalancer service." +#~ msgstr "创建一个 LoadBalancer service." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L124 +#~ msgid "Create a NodePort service." +#~ msgstr "创建一个 NodePort service." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43 +#~ msgid "Create a RoleBinding for a particular Role or ClusterRole" +#~ msgstr "为一个指定的 Role 或者 ClusterRole创建一个 RoleBinding" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L68 #~ msgid "Create a clusterIP service." #~ msgstr "创建一个 clusterIP service." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_configmap.go#L59 +#~ msgid "Create a configmap from a local file, directory or literal value" +#~ msgstr "从本地 file, directory 或者 literal value 创建一个 configmap" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_deployment.go#L44 #~ msgid "Create a deployment with the specified name." #~ msgstr "创建一个指定名称的 deployment." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49 +#~ msgid "Create a pod disruption budget with the specified name." +#~ msgstr "创建一个指定名称的 pod disruption budget." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47 +#~ msgid "Create a quota with the specified name." +#~ msgstr "创建一个指定名称的 quota." + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create.go#L56 #~ msgid "Create a resource by filename or stdin" #~ msgstr "通过文件名或者标准输入流(stdin)创建一个资源" +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L73 +#~ msgid "Create a secret from a local file, directory or literal value" +#~ msgstr "从本地 file, directory 或者 literal value 创建一个 secret" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L36 +#~ msgid "Create a service using specified subcommand." +#~ msgstr "使用指定的 subcommand 创建一个 service." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L240 +#~ msgid "Create an ExternalName service." +#~ msgstr "Create an ExternalName service." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/delete.go#L130 +#~ msgid "" +#~ "Delete resources by filenames, stdin, resources and names, or by " +#~ "resources and label selector" +#~ msgstr "" +#~ "Delete resources by filenames, stdin, resources and names, or by " +#~ "resources and label selector" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/stop.go#L58 #~ msgid "Deprecated: Gracefully shut down a resource by name or filename" #~ msgstr "Deprecated: Gracefully shut down a resource by name or filename" +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_node.go#L77 +#~ msgid "Display Resource (CPU/Memory) usage of nodes" +#~ msgstr "显示 nodes 的 Resource (CPU/Memory) 使用" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_pod.go#L79 +#~ msgid "Display Resource (CPU/Memory) usage of pods" +#~ msgstr "显示 pods 的 Resource (CPU/Memory) 使用" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top.go#L43 +#~ msgid "Display Resource (CPU/Memory) usage." +#~ msgstr "显示 Resource (CPU/Memory) 使用." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo.go#L49 +#~ msgid "Display cluster info" +#~ msgstr "显示集群信息" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/current_context.go#L48 +#~ msgid "Displays the current-context" +#~ msgstr "显示当前的 context" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/explain.go#L50 +#~ msgid "Documentation of resources" +#~ msgstr "查看资源的文档" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo_dump.go#L37 +#~ msgid "Dump lots of relevant info for debugging and diagnosis" +#~ msgstr "Dump lots of relevant info for debugging and diagnosis" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollingupdate.go#L102 #~ msgid "" #~ "Explicit policy for when to pull container images. Required when --image " @@ -3244,6 +3145,10 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ msgid "Perform a rolling update of the given ReplicationController" #~ msgstr "完成指定的 ReplicationController 的滚动升级" +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/replace.go#L70 +#~ msgid "Replace a resource by filename or stdin" +#~ msgstr "通过 filename 或者 stdin替换一个资源" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/scale.go#L71 #~ msgid "" #~ "Set a new size for a Deployment, ReplicaSet, Replication Controller, or " @@ -3252,6 +3157,41 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "为 Deployment, ReplicaSet, Replication Controller 或者 Job 设置一个新的副" #~ "本数量" +#~ msgid "" +#~ "Set the last-applied-configuration annotation on a live object to match " +#~ "the contents of a file." +#~ msgstr "" +#~ "Set the last-applied-configuration annotation on a live object to match " +#~ "the contents of a file." + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_cluster.go#L67 +#~ msgid "Sets a cluster entry in kubeconfig" +#~ msgstr "设置 kubeconfig 文件中的一个集群条目" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_context.go#L57 +#~ msgid "Sets a context entry in kubeconfig" +#~ msgstr "设置 kubeconfig 文件中的一个 context 条目" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_authinfo.go#L103 +#~ msgid "Sets a user entry in kubeconfig" +#~ msgstr "设置 kubeconfig 文件中的一个用户条目" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/set.go#L59 +#~ msgid "Sets an individual value in a kubeconfig file" +#~ msgstr "设置 kubeconfig 文件中的一个单个值" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/use_context.go#L48 +#~ msgid "Sets the current-context in a kubeconfig file" +#~ msgstr "设置 kubeconfig 文件中的当前上下文" + +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L87 +#~ msgid "" +#~ "Take a replication controller, service, deployment or pod and expose it " +#~ "as a new Kubernetes Service" +#~ msgstr "" +#~ "使用 replication controller, service, deployment 或者 pod 并暴露它作为一" +#~ "个 新的 Kubernetes Service" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollingupdate.go#L100 #~ msgid "" #~ "The key to use to differentiate between two different controllers, " @@ -3310,10 +3250,23 @@ msgstr "kubectl 控制 Kubernetes cluster 管理" #~ "对于服务的类型: ClusterIP, NodePort, 或者 LoadBalancer. 默认是 " #~ "'ClusterIP’." +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/unset.go#L47 +#~ msgid "Unsets an individual value in a kubeconfig file" +#~ msgstr "取消设置 kubeconfig 文件中的一个单个值" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/patch.go#L91 #~ msgid "Update field(s) of a resource using strategic merge patch" #~ msgstr "使用 strategic merge patch 更新一个资源的 field(s)" +# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_image.go#L94 +#~ msgid "Update image of a pod template" +#~ msgstr "更新一个 pod template 的镜像" + +#~ msgid "" +#~ "View latest last-applied-configuration annotations of a resource/object" +#~ msgstr "" +#~ "显示最后的 resource/object 的 last-applied-configuration annotations" + # https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L253 #~ msgid "external name of service" #~ msgstr "服务的外部名称" diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_TW/LC_MESSAGES/k8s.mo b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_TW/LC_MESSAGES/k8s.mo index 6d4e82f08cf..9be9a30d324 100644 Binary files a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_TW/LC_MESSAGES/k8s.mo and b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_TW/LC_MESSAGES/k8s.mo differ diff --git a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_TW/LC_MESSAGES/k8s.po b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_TW/LC_MESSAGES/k8s.po index 9a1a1574755..58fd63a9ffd 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_TW/LC_MESSAGES/k8s.po +++ b/staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/zh_TW/LC_MESSAGES/k8s.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: hello-world\n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2021-05-17 15:40+0200\n" +"POT-Creation-Date: 2021-07-07 20:15+0200\n" "PO-Revision-Date: 2017-06-02 09:13+0800\n" "Last-Translator: William Chang \n" "Language-Team: \n" @@ -19,16 +19,10 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: staging/src/k8s.io/kubectl/pkg/cmd/apply/apply.go:173 -msgid "Apply a configuration to a resource by filename or stdin" -msgstr "通過檔案名或標準輸入流(stdin)對資源進行配置" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_cluster.go:42 msgid "Delete the specified cluster from the kubeconfig" msgstr "刪除 kubeconfig 檔案中指定的叢集(cluster)" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:41 #: staging/src/k8s.io/kubectl/pkg/cmd/config/delete_context.go:42 msgid "Delete the specified context from the kubeconfig" msgstr "刪除 kubeconfig 檔案中指定的 context" @@ -45,42 +39,38 @@ msgstr "顯示 kubeconfig 檔案中定義的叢集(cluster)" msgid "Display merged kubeconfig settings or a specified kubeconfig file" msgstr "顯示合併的 kubeconfig 配置或一個指定的 kubeconfig 檔案" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/current_context.go:51 -msgid "Displays the current-context" -msgstr "顯示目前的 context" - #: staging/src/k8s.io/kubectl/pkg/cmd/config/config.go:42 msgid "Modify kubeconfig files" msgstr "修改 kubeconfig 檔案" -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_cluster.go:73 -msgid "Sets a cluster entry in kubeconfig" -msgstr "設置 kubeconfig 檔案中的一個叢集(cluster)條目" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_context.go:61 -msgid "Sets a context entry in kubeconfig" -msgstr "設置 kubeconfig 檔案中的一個 context 條目" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/create_authinfo.go:152 -msgid "Sets a user entry in kubeconfig" -msgstr "設置 kubeconfig 檔案中的一個使用者條目" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/set.go:74 -msgid "Sets an individual value in a kubeconfig file" -msgstr "設置 kubeconfig 檔案中的一個值" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/use_context.go:51 -msgid "Sets the current-context in a kubeconfig file" -msgstr "設置 kubeconfig 檔案中的目前 context" - -#: staging/src/k8s.io/kubectl/pkg/cmd/config/unset.go:59 -msgid "Unsets an individual value in a kubeconfig file" -msgstr "取消設置 kubeconfig 檔案中的一個值" - -#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:134 +#: staging/src/k8s.io/kubectl/pkg/cmd/annotate/annotate.go:135 msgid "Update the annotations on a resource" msgstr "更新一個資源的注解(annotations)" +#~ msgid "Apply a configuration to a resource by filename or stdin" +#~ msgstr "通過檔案名或標準輸入流(stdin)對資源進行配置" + +#~ msgid "Displays the current-context" +#~ msgstr "顯示目前的 context" + +#~ msgid "Sets a cluster entry in kubeconfig" +#~ msgstr "設置 kubeconfig 檔案中的一個叢集(cluster)條目" + +#~ msgid "Sets a context entry in kubeconfig" +#~ msgstr "設置 kubeconfig 檔案中的一個 context 條目" + +#~ msgid "Sets a user entry in kubeconfig" +#~ msgstr "設置 kubeconfig 檔案中的一個使用者條目" + +#~ msgid "Sets an individual value in a kubeconfig file" +#~ msgstr "設置 kubeconfig 檔案中的一個值" + +#~ msgid "Sets the current-context in a kubeconfig file" +#~ msgstr "設置 kubeconfig 檔案中的目前 context" + +#~ msgid "Unsets an individual value in a kubeconfig file" +#~ msgstr "取消設置 kubeconfig 檔案中的一個值" + #~ msgid "" #~ "watch is only supported on individual resources and resource collections " #~ "- %d resources were found"