Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update auto-generated docs and translations #17500

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions site/content/en/docs/commands/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ minikube start [flags]
--cert-expiration duration Duration until minikube certificate expiration, defaults to three years (26280h). (default 26280h0m0s)
--cni string CNI plug-in to use. Valid options: auto, bridge, calico, cilium, flannel, kindnet, or path to a CNI manifest (default: auto)
--container-runtime string The container runtime to be used. Valid options: docker, cri-o, containerd (default: auto)
--cpus string Number of CPUs allocated to Kubernetes. Use "max" to use the maximum number of CPUs. (default "2")
--cpus string Number of CPUs allocated to Kubernetes. Use "max" to use the maximum number of CPUs. Use "no-limit" to not specify a limit (Docker/Podman only) (default "2")
--cri-socket string The cri socket path to be used.
--delete-on-failure If set, delete the current cluster if start fails and try again. Defaults to false.
--disable-driver-mounts Disables the filesystem mounts provided by the hypervisors
Expand Down Expand Up @@ -80,7 +80,7 @@ minikube start [flags]
--kvm-numa-count int Simulate numa node count in minikube, supported numa node count range is 1-8 (kvm2 driver only) (default 1)
--kvm-qemu-uri string The KVM QEMU connection URI. (kvm2 driver only) (default "qemu:///system")
--listen-address string IP Address to use to expose ports (docker and podman driver only)
--memory string Amount of RAM to allocate to Kubernetes (format: <number>[<unit>], where unit = b, k, m or g). Use "max" to use the maximum amount of memory.
--memory string Amount of RAM to allocate to Kubernetes (format: <number>[<unit>], where unit = b, k, m or g). Use "max" to use the maximum amount of memory. Use "no-limit" to not specify a limit (Docker/Podman only)
--mount This will start the mount daemon and automatically mount files into minikube.
--mount-9p-version string Specify the 9p version that the mount should use (default "9p2000.L")
--mount-gid string Default group id used for the mount (default "docker")
Expand Down
3 changes: 3 additions & 0 deletions translations/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@
"Creating mount {{.name}} ...": "Bereitstellung {{.name}} wird erstellt...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB) ...": "Erstelle {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Speicher={{.memory_size}}MB) ...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "Erstelle {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Speicher={{.memory_size}}MB, Disk={{.disk_size}}MB ...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{if not .number_of_cpus}}no-limit{{else}}{{.number_of_cpus}}{{end}}, Memory={{if not .memory_size}}no-limit{{else}}{{.memory_size}}MB{{end}}) ...": "",
"Current context is \"{{.context}}\"": "Der aktuelle Kontext ist \"{{.context}}\"",
"DEPRECATED, use `driver` instead.": "Veraltet, benuzten Sie `driver` stattdessen.",
"DEPRECATED: Replaced by --cni": "DEPRECATED: Ersetzt durch --cni",
Expand Down Expand Up @@ -690,6 +691,8 @@
"The '{{.name}} driver does not support multiple profiles: https://minikube.sigs.k8s.io/docs/reference/drivers/none/": "Der Treiber '{{.name}} unterstützt keine mehrfach Profile: https://minikube.sigs.k8s.io/docs/reference/drivers/none/",
"The '{{.name}}' driver does not respect the --cpus flag": "Der {{.name}} Treiber respektiert den Parameter --cpus nicht",
"The '{{.name}}' driver does not respect the --memory flag": "Der {{.name}} Treiber respektiert den Parameter --memory nicht",
"The '{{.name}}' driver does not support --cpus=no-limit": "",
"The '{{.name}}' driver does not support --memory=no-limit": "",
"The --image-repository flag you provided contains Scheme: {{.scheme}}, which will be removed automatically": "",
"The --image-repository flag your provided contains Scheme: {{.scheme}}, which will be removed automatically": "Der angegebene Wert von --image-repository enthält das Schema {{.scheme}}, welches automatisch entfernt wird",
"The --image-repository flag your provided ended with a trailing / that could cause conflict in kuberentes, removed automatically": "Der angegebene Wert von --image-repository endete mit einem /, dies könnte zu Konflikten in Kubernetes führen, automatisch entfernt",
Expand Down
3 changes: 3 additions & 0 deletions translations/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
"Creating mount {{.name}} ...": "Montando {{.name}}...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB) ...": "Creando {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB) ...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "Creando {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{if not .number_of_cpus}}no-limit{{else}}{{.number_of_cpus}}{{end}}, Memory={{if not .memory_size}}no-limit{{else}}{{.memory_size}}MB{{end}}) ...": "",
"Current context is \"{{.context}}\"": "Contexto actual \"{{.context}}\"",
"DEPRECATED, use `driver` instead.": "OBSOLETO, usa `driver` en su lugar",
"DEPRECATED: Replaced by --cni": "",
Expand Down Expand Up @@ -690,6 +691,8 @@
"The '{{.name}} driver does not support multiple profiles: https://minikube.sigs.k8s.io/docs/reference/drivers/none/": "",
"The '{{.name}}' driver does not respect the --cpus flag": "",
"The '{{.name}}' driver does not respect the --memory flag": "",
"The '{{.name}}' driver does not support --cpus=no-limit": "",
"The '{{.name}}' driver does not support --memory=no-limit": "",
"The --image-repository flag you provided contains Scheme: {{.scheme}}, which will be removed automatically": "",
"The --image-repository flag your provided ended with a trailing / that could cause conflict in kubernetes, removed automatically": "",
"The CIDR to be used for service cluster IPs.": "El CIDR de las IP del clúster de servicio.",
Expand Down
3 changes: 3 additions & 0 deletions translations/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@
"Creating mount {{.name}} ...": "Création de l'installation {{.name}}…",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB) ...": "Création de {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}Mo) ...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "Création de {{.machine_type}} {{.driver_name}} (CPUs={{.number_of_cpus}}, Mémoire={{.memory_size}}MB, Disque={{.disk_size}}MB)...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{if not .number_of_cpus}}no-limit{{else}}{{.number_of_cpus}}{{end}}, Memory={{if not .memory_size}}no-limit{{else}}{{.memory_size}}MB{{end}}) ...": "",
"Current context is \"{{.context}}\"": "Le contexte courant est \"{{.context}}\"",
"DEPRECATED, use `driver` instead.": "DÉPRÉCIÉ, utilisez plutôt `driver`.",
"DEPRECATED: Replaced by --cni": "Déprécié: remplacé par --cni",
Expand Down Expand Up @@ -681,6 +682,8 @@
"The '{{.name}} driver does not support multiple profiles: https://minikube.sigs.k8s.io/docs/reference/drivers/none/": "Le pilote '{{.name}}' ne prend pas en charge plusieurs profils : https://minikube.sigs.k8s.io/docs/reference/drivers/none/",
"The '{{.name}}' driver does not respect the --cpus flag": "Le pilote '{{.name}}' ne respecte pas l'indicateur --cpus",
"The '{{.name}}' driver does not respect the --memory flag": "Le pilote '{{.name}}' ne respecte pas l'indicateur --memory",
"The '{{.name}}' driver does not support --cpus=no-limit": "",
"The '{{.name}}' driver does not support --memory=no-limit": "",
"The --image-repository flag you provided contains Scheme: {{.scheme}}, which will be removed automatically": "L'indicateur --image-repository que vous avez fourni contient le schéma : {{.scheme}}, qui sera automatiquement supprimé",
"The --image-repository flag your provided contains Scheme: {{.scheme}}, which will be removed automatically": "L'indicateur --image-repository que vous avez fourni contient le schéma: {{.scheme}}, qui sera automatiquement supprimé",
"The --image-repository flag your provided ended with a trailing / that could cause conflict in kuberentes, removed automatically": "L'indicateur --image-repository que vous avez fourni s'est terminé par un / qui pourrait provoquer un conflit dans kubernetes, supprimé automatiquement",
Expand Down
3 changes: 3 additions & 0 deletions translations/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
"Creating mount {{.name}} ...": "マウント {{.name}} を作成しています...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB) ...": "{{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB) を作成しています...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "{{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) を作成しています...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{if not .number_of_cpus}}no-limit{{else}}{{.number_of_cpus}}{{end}}, Memory={{if not .memory_size}}no-limit{{else}}{{.memory_size}}MB{{end}}) ...": "",
"Current context is \"{{.context}}\"": "現在のコンテキストは「{{.context}}」です",
"DEPRECATED, use `driver` instead.": "非推奨。代わりに `driver` を使用してください。",
"DEPRECATED: Replaced by --cni": "非推奨: --cniに置き換えられました",
Expand Down Expand Up @@ -655,6 +656,8 @@
"The '{{.name}} driver does not support multiple profiles: https://minikube.sigs.k8s.io/docs/reference/drivers/none/": "'{{.name}} ドライバーは複数のプロファイルをサポートしていません: https://minikube.sigs.k8s.io/docs/reference/drivers/none/",
"The '{{.name}}' driver does not respect the --cpus flag": "'{{.name}}' ドライバーは --cpus フラグを無視します",
"The '{{.name}}' driver does not respect the --memory flag": "'{{.name}}' ドライバーは --memory フラグを無視します",
"The '{{.name}}' driver does not support --cpus=no-limit": "",
"The '{{.name}}' driver does not support --memory=no-limit": "",
"The --image-repository flag you provided contains Scheme: {{.scheme}}, which will be removed automatically": "指定された --image-repository フラグは {{.scheme}} スキームを含んでいますので、自動的に削除されます",
"The --image-repository flag your provided ended with a trailing / that could cause conflict in kubernetes, removed automatically": "指定された --image-repository フラグは kubernetes で競合の原因となりうる / が末尾に付いていますので、自動的に削除されます",
"The CIDR to be used for service cluster IPs.": "サービスクラスター IP に使用される CIDR。",
Expand Down
4 changes: 3 additions & 1 deletion translations/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@
"Creating Kubernetes in {{.driver_name}} {{.machine_type}} with (CPUs={{.number_of_cpus}}) ({{.number_of_host_cpus}} available), Memory={{.memory_size}}MB ({{.host_memory_size}}MB available) ...": "{{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}} ({{.number_of_host_cpus}}MB 유효한), Memory={{.memory_size}}MB ({{.host_memory_size}}MB 유효한) ...",
"Creating mount {{.name}} ...": "",
"Creating {{.driver_name}} VM (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "{{.driver_name}} VM (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) 를 생성하는 중 ...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB) ...": "",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "{{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) 를 생성하는 중 ...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{if not .number_of_cpus}}no-limit{{else}}{{.number_of_cpus}}{{end}}, Memory={{if not .memory_size}}no-limit{{else}}{{.memory_size}}MB{{end}}) ...": "",
"Current context is \"{{.context}}\"": "",
"DEPRECATED, use `driver` instead.": "DEPRECATED 되었습니다, 'driver' 를 사용하세요",
"DEPRECATED: Replaced by --cni": "",
Expand Down Expand Up @@ -701,6 +701,8 @@
"The '{{.name}} driver does not support multiple profiles: https://minikube.sigs.k8s.io/docs/reference/drivers/none/": "",
"The '{{.name}}' driver does not respect the --cpus flag": "",
"The '{{.name}}' driver does not respect the --memory flag": "",
"The '{{.name}}' driver does not support --cpus=no-limit": "",
"The '{{.name}}' driver does not support --memory=no-limit": "",
"The --image-repository flag you provided contains Scheme: {{.scheme}}, which will be removed automatically": "",
"The --image-repository flag your provided ended with a trailing / that could cause conflict in kubernetes, removed automatically": "",
"The CIDR to be used for service cluster IPs.": "",
Expand Down
4 changes: 3 additions & 1 deletion translations/pl.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@
"Creating a new profile failed": "Tworzenie nowego profilu nie powiodło się",
"Creating mount {{.name}} ...": "",
"Creating {{.driver_name}} VM (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "Tworzenie {{.driver_name}} (CPUs={{.number_of_cpus}}, Pamięć={{.memory_size}}MB, Dysk={{.disk_size}}MB)...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB) ...": "",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{if not .number_of_cpus}}no-limit{{else}}{{.number_of_cpus}}{{end}}, Memory={{if not .memory_size}}no-limit{{else}}{{.memory_size}}MB{{end}}) ...": "",
"Current context is \"{{.context}}\"": "Obecny kontekst to \"{{.context}}\"",
"DEPRECATED, use `driver` instead.": "PRZESTARZAŁE, użyj zamiast tego `driver`",
"DEPRECATED: Replaced by --cni": "",
Expand Down Expand Up @@ -705,6 +705,8 @@
"The '{{.name}} driver does not support multiple profiles: https://minikube.sigs.k8s.io/docs/reference/drivers/none/": "",
"The '{{.name}}' driver does not respect the --cpus flag": "",
"The '{{.name}}' driver does not respect the --memory flag": "",
"The '{{.name}}' driver does not support --cpus=no-limit": "",
"The '{{.name}}' driver does not support --memory=no-limit": "",
"The --image-repository flag you provided contains Scheme: {{.scheme}}, which will be removed automatically": "",
"The --image-repository flag your provided ended with a trailing / that could cause conflict in kubernetes, removed automatically": "",
"The CIDR to be used for service cluster IPs.": "",
Expand Down
4 changes: 3 additions & 1 deletion translations/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@
"Could not resolve IP address": "",
"Country code of the image mirror to be used. Leave empty to use the global one. For Chinese mainland users, set it to cn.": "",
"Creating mount {{.name}} ...": "",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB) ...": "",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{if not .number_of_cpus}}no-limit{{else}}{{.number_of_cpus}}{{end}}, Memory={{if not .memory_size}}no-limit{{else}}{{.memory_size}}MB{{end}}) ...": "",
"Current context is \"{{.context}}\"": "",
"DEPRECATED, use `driver` instead.": "",
"DEPRECATED: Replaced by --cni": "",
Expand Down Expand Up @@ -643,6 +643,8 @@
"The '{{.name}} driver does not support multiple profiles: https://minikube.sigs.k8s.io/docs/reference/drivers/none/": "",
"The '{{.name}}' driver does not respect the --cpus flag": "",
"The '{{.name}}' driver does not respect the --memory flag": "",
"The '{{.name}}' driver does not support --cpus=no-limit": "",
"The '{{.name}}' driver does not support --memory=no-limit": "",
"The --image-repository flag you provided contains Scheme: {{.scheme}}, which will be removed automatically": "",
"The --image-repository flag your provided ended with a trailing / that could cause conflict in kubernetes, removed automatically": "",
"The CIDR to be used for service cluster IPs.": "",
Expand Down
4 changes: 3 additions & 1 deletion translations/strings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@
"Could not resolve IP address": "",
"Country code of the image mirror to be used. Leave empty to use the global one. For Chinese mainland users, set it to cn.": "",
"Creating mount {{.name}} ...": "",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB) ...": "",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{if not .number_of_cpus}}no-limit{{else}}{{.number_of_cpus}}{{end}}, Memory={{if not .memory_size}}no-limit{{else}}{{.memory_size}}MB{{end}}) ...": "",
"Current context is \"{{.context}}\"": "",
"DEPRECATED, use `driver` instead.": "",
"DEPRECATED: Replaced by --cni": "",
Expand Down Expand Up @@ -643,6 +643,8 @@
"The '{{.name}} driver does not support multiple profiles: https://minikube.sigs.k8s.io/docs/reference/drivers/none/": "",
"The '{{.name}}' driver does not respect the --cpus flag": "",
"The '{{.name}}' driver does not respect the --memory flag": "",
"The '{{.name}}' driver does not support --cpus=no-limit": "",
"The '{{.name}}' driver does not support --memory=no-limit": "",
"The --image-repository flag you provided contains Scheme: {{.scheme}}, which will be removed automatically": "",
"The --image-repository flag your provided ended with a trailing / that could cause conflict in kubernetes, removed automatically": "",
"The CIDR to be used for service cluster IPs.": "",
Expand Down
3 changes: 3 additions & 0 deletions translations/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@
"Creating {{.driver_name}} VM (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "正在创建 {{.driver_name}} 虚拟机(CPUs={{.number_of_cpus}},Memory={{.memory_size}}MB, Disk={{.disk_size}}MB)...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB) ...": "正在创建 {{.driver_name}} {{.machine_type}}(CPUs={{.number_of_cpus}},内存={{.memory_size}}MB)...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "正在创建 {{.driver_name}} {{.machine_type}}(CPUs={{.number_of_cpus}},内存={{.memory_size}}MB,磁盘={{.disk_size}}MB)...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{if not .number_of_cpus}}no-limit{{else}}{{.number_of_cpus}}{{end}}, Memory={{if not .memory_size}}no-limit{{else}}{{.memory_size}}MB{{end}}) ...": "",
"Current context is \"{{.context}}\"": "当前的上下文为 \"{{.context}}\"",
"DEPRECATED, use `driver` instead.": "已弃用,请改用 `driver`。",
"DEPRECATED: Replaced by --cni": "已弃用,改用 --cni 来代替",
Expand Down Expand Up @@ -795,6 +796,8 @@
"The '{{.name}} driver does not support multiple profiles: https://minikube.sigs.k8s.io/docs/reference/drivers/none/": "",
"The '{{.name}}' driver does not respect the --cpus flag": "'{{.name}}' 驱动程序不支持 --cpus 标志",
"The '{{.name}}' driver does not respect the --memory flag": "",
"The '{{.name}}' driver does not support --cpus=no-limit": "",
"The '{{.name}}' driver does not support --memory=no-limit": "",
"The --image-repository flag you provided contains Scheme: {{.scheme}}, which will be removed automatically": "您提供的 --image-repository 标志包含方案:{{.scheme}},这将自动移除",
"The --image-repository flag your provided ended with a trailing / that could cause conflict in kubernetes, removed automatically": "您提供的 --image-repository 标志以尾随 / 结束,可能会在 Kubernetes 中引起冲突,已自动移除",
"The CIDR to be used for service cluster IPs.": "需要用于服务集群 IP 的 CIDR。",
Expand Down