From f4fc62a4ef6325935866f847a37ee9bc0de9b76a Mon Sep 17 00:00:00 2001 From: "Mr. Erlison" Date: Fri, 22 Apr 2022 08:18:28 -0300 Subject: [PATCH 1/5] Add pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md --- .../setup-tools/kubeadm/kubeadm-config.md | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md b/content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md new file mode 100644 index 00000000000..41768fc0e1a --- /dev/null +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md @@ -0,0 +1,52 @@ +--- +title: kubeadm config +content_type: conceito +weight: 50 +--- + + +Durante o `kubeadm init`, o kubeadm carrega o objeto `ClusterConfiguration` para o seu cluster em um ConfigMap chamado `kubeadm-config` no namespace do `kube-system`. Essa configuração é então lida durante `kubeadm join`, `kubeadm reset` e `kubeadm upgrade`. + +Você pode usar o `kubeadm config print` para exibir a configuração estática padrão que o kubeadm usa para o `kubeadm init` e `kubeadm join`. + +{{< note >}} +A saída do comando deve servir de exemplo. Você deve editar manualmente a saída deste comando para adaptar à sua configuração. Remova os campos sobre os quais você não tem certeza e o kubeadm tentará usá-los como padrão, examinando o host durante a execução. +{{< /note >}} + +Para obter mais informações sobre `init` e `join`, navegue até [Usando o init do kubeadm com um arquivo de configuração](/docs/reference/setup-tools/kubeadm/kubeadm-init/#config-file) ou [Usando o kubeadm join com um arquivo de configuração](/docs/reference/setup-tools/kubeadm/kubeadm-join/#config-file). + +Para obter mais informações sobre como usar a API de configuração do kubeadm, navegue até [Personalizando componentes com a API do kubeadm.](/docs/setup/production-environment/tools/kubeadm/control-plane-flags). + +Você pode usar o `kubeadm config migrate` para converter seus arquivos de configuração antigos que contêm uma versão obsoleta da API para uma versão mais recente e suportada da API. + +`kubeadm config images list` e `kubeadm config images pull` podem ser usadas para listar e puxar as imagens que o kubeadm precisa. + + + +## kubeadm config print {#cmd-config-print} + +{{< include "generated/kubeadm_config_print.md" >}} + +## kubeadm config print init-defaults {#cmd-config-print-init-defaults} + +{{< include "generated/kubeadm_config_print_init-defaults.md" >}} + +## kubeadm config print join-defaults {#cmd-config-print-join-defaults} + +{{< include "generated/kubeadm_config_print_join-defaults.md" >}} + +## kubeadm config migrate {#cmd-config-migrate} + +{{< include "generated/kubeadm_config_migrate.md" >}} + +## kubeadm config images list {#cmd-config-images-list} + +{{< include "generated/kubeadm_config_images_list.md" >}} + +## kubeadm config images pull {#cmd-config-images-pull} + +{{< include "generated/kubeadm_config_images_pull.md" >}} + +## {{% heading "O que vem a seguir?" %}} + +* [kubeadm upgrade](/docs/reference/setup-tools/kubeadm/kubeadm-upgrade) para atualizar um cluster Kubernetes para uma versão mais recente From 4d0ec9454e34faf766e4bdee644b81dfa825e097 Mon Sep 17 00:00:00 2001 From: "Mr. Erlison" Date: Sat, 4 Jun 2022 13:42:34 -0300 Subject: [PATCH 2/5] Add generated/kubeadm-config*.md --- .../kubeadm/generated/kubeadm_config.md | 77 +++++++++++ .../generated/kubeadm_config_images.md | 72 +++++++++++ .../generated/kubeadm_config_images_list.md | 121 ++++++++++++++++++ .../generated/kubeadm_config_images_pull.md | 107 ++++++++++++++++ .../generated/kubeadm_config_migrate.md | 99 ++++++++++++++ .../kubeadm/generated/kubeadm_config_print.md | 74 +++++++++++ .../kubeadm_config_print_init-defaults.md | 84 ++++++++++++ .../kubeadm_config_print_join-defaults.md | 84 ++++++++++++ 8 files changed, 718 insertions(+) create mode 100644 content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config.md create mode 100644 content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images.md create mode 100644 content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md create mode 100644 content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md create mode 100644 content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md create mode 100644 content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md create mode 100644 content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md create mode 100644 content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config.md new file mode 100644 index 00000000000..50cb9f63b9e --- /dev/null +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config.md @@ -0,0 +1,77 @@ + + + +Manage configuration for a kubeadm cluster persisted in a ConfigMap in the cluster + +### Synopsis + + + +There is a ConfigMap in the kube-system namespace called "kubeadm-config" that kubeadm uses to store internal configuration about the +cluster. kubeadm CLI v1.8.0+ automatically creates this ConfigMap with the config used with 'kubeadm init', but if you +initialized your cluster using kubeadm v1.7.x or lower, you must use the 'config upload' command to create this +ConfigMap. This is required so that 'kubeadm upgrade' can configure your upgraded cluster correctly. + + +``` +kubeadm config [flags] +``` + +### Options + + ++++ + + + + + + + + + + + + + + + + + +
-h, --help

help for config

--kubeconfig string     Default: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

+ + + +### Options inherited from parent commands + + ++++ + + + + + + + + + + +
--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

+ + + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images.md new file mode 100644 index 00000000000..0f85b4fbc21 --- /dev/null +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images.md @@ -0,0 +1,72 @@ + + + +Interact with container images used by kubeadm + +### Synopsis + + +Interact with container images used by kubeadm + +``` +kubeadm config images [flags] +``` + +### Options + + ++++ + + + + + + + + + + +
-h, --help

help for images

+ + + +### Options inherited from parent commands + + ++++ + + + + + + + + + + + + + + + + + +
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

+ + + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md new file mode 100644 index 00000000000..0700538f567 --- /dev/null +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md @@ -0,0 +1,121 @@ + + + +Print a list of images kubeadm will use. The configuration file is used in case any images or image repositories are customized + +### Synopsis + + +Print a list of images kubeadm will use. The configuration file is used in case any images or image repositories are customized + +``` +kubeadm config images list [flags] +``` + +### Options + + ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
--allow-missing-template-keys     Default: true

If true, ignore any errors in templates when a field or map key is missing in the template. Only applies to golang and jsonpath output formats.

--config string

Path to a kubeadm configuration file.

-o, --experimental-output string     Default: "text"

Output format. One of: text|json|yaml|go-template|go-template-file|template|templatefile|jsonpath|jsonpath-as-json|jsonpath-file.

--feature-gates string

A set of key=value pairs that describe feature gates for various features. Options are:
PublicKeysECDSA=true|false (ALPHA - default=false)
RootlessControlPlane=true|false (ALPHA - default=false)
UnversionedKubeletConfigMap=true|false (ALPHA - default=false)

-h, --help

help for list

--image-repository string     Default: "k8s.gcr.io"

Choose a container registry to pull control plane images from

--kubernetes-version string     Default: "stable-1"

Choose a specific Kubernetes version for the control plane.

--show-managed-fields

If true, keep the managedFields when printing objects in JSON or YAML format.

+ + + +### Options inherited from parent commands + + ++++ + + + + + + + + + + + + + + + + + +
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

+ + + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md new file mode 100644 index 00000000000..7423ad1934b --- /dev/null +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md @@ -0,0 +1,107 @@ + + + +Pull images used by kubeadm + +### Synopsis + + +Pull images used by kubeadm + +``` +kubeadm config images pull [flags] +``` + +### Options + + ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
--config string

Path to a kubeadm configuration file.

--cri-socket string

Path to the CRI socket to connect. If empty kubeadm will try to auto-detect this value; use this option only if you have more than one CRI installed or if you have non-standard CRI socket.

--feature-gates string

A set of key=value pairs that describe feature gates for various features. Options are:
PublicKeysECDSA=true|false (ALPHA - default=false)
RootlessControlPlane=true|false (ALPHA - default=false)
UnversionedKubeletConfigMap=true|false (ALPHA - default=false)

-h, --help

help for pull

--image-repository string     Default: "k8s.gcr.io"

Choose a container registry to pull control plane images from

--kubernetes-version string     Default: "stable-1"

Choose a specific Kubernetes version for the control plane.

+ + + +### Options inherited from parent commands + + ++++ + + + + + + + + + + + + + + + + + +
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

+ + + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md new file mode 100644 index 00000000000..8aa2f6f1d22 --- /dev/null +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md @@ -0,0 +1,99 @@ + + + +Read an older version of the kubeadm configuration API types from a file, and output the similar config object for the newer version + +### Synopsis + + + +This command lets you convert configuration objects of older versions to the latest supported version, +locally in the CLI tool without ever touching anything in the cluster. +In this version of kubeadm, the following API versions are supported: +- kubeadm.k8s.io/v1beta3 + +Further, kubeadm can only write out config of version "kubeadm.k8s.io/v1beta3", but read both types. +So regardless of what version you pass to the --old-config parameter here, the API object will be +read, deserialized, defaulted, converted, validated, and re-serialized when written to stdout or +--new-config if specified. + +In other words, the output of this command is what kubeadm actually would read internally if you +submitted this file to "kubeadm init" + + +``` +kubeadm config migrate [flags] +``` + +### Options + + ++++ + + + + + + + + + + + + + + + + + + + + + + + + +
-h, --help

help for migrate

--new-config string

Path to the resulting equivalent kubeadm config file using the new API version. Optional, if not specified output will be sent to STDOUT.

--old-config string

Path to the kubeadm config file that is using an old API version and should be converted. This flag is mandatory.

+ + + +### Options inherited from parent commands + + ++++ + + + + + + + + + + + + + + + + + +
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

+ + + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md new file mode 100644 index 00000000000..e8aa81abf69 --- /dev/null +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md @@ -0,0 +1,74 @@ + + + +Print configuration + +### Synopsis + + + +This command prints configurations for subcommands provided. +For details, see: https://pkg.go.dev/k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm#section-directories + +``` +kubeadm config print [flags] +``` + +### Options + + ++++ + + + + + + + + + + +
-h, --help

help for print

+ + + +### Options inherited from parent commands + + ++++ + + + + + + + + + + + + + + + + + +
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

+ + + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md new file mode 100644 index 00000000000..f8200dfd528 --- /dev/null +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md @@ -0,0 +1,84 @@ + + + +Print default init configuration, that can be used for 'kubeadm init' + +### Synopsis + + + +This command prints objects such as the default init configuration that is used for 'kubeadm init'. + +Note that sensitive values like the Bootstrap Token fields are replaced with placeholder values like "abcdef.0123456789abcdef" in order to pass validation but +not perform the real computation for creating a token. + + +``` +kubeadm config print init-defaults [flags] +``` + +### Options + + ++++ + + + + + + + + + + + + + + + + + +
--component-configs strings

A comma-separated list for component config API objects to print the default values for. Available values: [KubeProxyConfiguration KubeletConfiguration]. If this flag is not set, no component configs will be printed.

-h, --help

help for init-defaults

+ + + +### Options inherited from parent commands + + ++++ + + + + + + + + + + + + + + + + + +
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

+ + + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md new file mode 100644 index 00000000000..1c634871eb2 --- /dev/null +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md @@ -0,0 +1,84 @@ + + + +Print default join configuration, that can be used for 'kubeadm join' + +### Synopsis + + + +This command prints objects such as the default join configuration that is used for 'kubeadm join'. + +Note that sensitive values like the Bootstrap Token fields are replaced with placeholder values like "abcdef.0123456789abcdef" in order to pass validation but +not perform the real computation for creating a token. + + +``` +kubeadm config print join-defaults [flags] +``` + +### Options + + ++++ + + + + + + + + + + + + + + + + + +
--component-configs strings

A comma-separated list for component config API objects to print the default values for. Available values: [KubeProxyConfiguration KubeletConfiguration]. If this flag is not set, no component configs will be printed.

-h, --help

help for join-defaults

+ + + +### Options inherited from parent commands + + ++++ + + + + + + + + + + + + + + + + + +
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

+ + + From 96bd6b4c918875aff5b3b0d4fc8a5bc8e5ed1f93 Mon Sep 17 00:00:00 2001 From: "Mr. Erlison" Date: Sat, 11 Jun 2022 09:42:35 -0300 Subject: [PATCH 3/5] Translate include files --- .../kubeadm/generated/kubeadm_config.md | 77 ------------------- .../generated/kubeadm_config_images.md | 72 ----------------- .../generated/kubeadm_config_images_list.md | 41 +++++----- .../generated/kubeadm_config_images_pull.md | 32 ++++---- .../generated/kubeadm_config_migrate.md | 37 ++++----- .../kubeadm/generated/kubeadm_config_print.md | 22 +++--- .../kubeadm_config_print_init-defaults.md | 27 +++---- .../kubeadm_config_print_join-defaults.md | 26 +++---- 8 files changed, 82 insertions(+), 252 deletions(-) delete mode 100644 content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config.md delete mode 100644 content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images.md diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config.md deleted file mode 100644 index 50cb9f63b9e..00000000000 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config.md +++ /dev/null @@ -1,77 +0,0 @@ - - - -Manage configuration for a kubeadm cluster persisted in a ConfigMap in the cluster - -### Synopsis - - - -There is a ConfigMap in the kube-system namespace called "kubeadm-config" that kubeadm uses to store internal configuration about the -cluster. kubeadm CLI v1.8.0+ automatically creates this ConfigMap with the config used with 'kubeadm init', but if you -initialized your cluster using kubeadm v1.7.x or lower, you must use the 'config upload' command to create this -ConfigMap. This is required so that 'kubeadm upgrade' can configure your upgraded cluster correctly. - - -``` -kubeadm config [flags] -``` - -### Options - - ---- - - - - - - - - - - - - - - - - - -
-h, --help

help for config

--kubeconfig string     Default: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

- - - -### Options inherited from parent commands - - ---- - - - - - - - - - - -
--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

- - - diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images.md deleted file mode 100644 index 0f85b4fbc21..00000000000 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images.md +++ /dev/null @@ -1,72 +0,0 @@ - - - -Interact with container images used by kubeadm - -### Synopsis - - -Interact with container images used by kubeadm - -``` -kubeadm config images [flags] -``` - -### Options - - ---- - - - - - - - - - - -
-h, --help

help for images

- - - -### Options inherited from parent commands - - ---- - - - - - - - - - - - - - - - - - -
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

- - - diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md index 0700538f567..0a4311cddcd 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md @@ -10,18 +10,17 @@ guide. You can file document formatting bugs against the --> -Print a list of images kubeadm will use. The configuration file is used in case any images or image repositories are customized +Exibe uma lista de imagens que o kubeadm usará. O arquivo de configuração é usado caso quaisquer imagens ou repositórios de imagens sejam personalizados. -### Synopsis +### Sinopse - -Print a list of images kubeadm will use. The configuration file is used in case any images or image repositories are customized +Exibe uma lista de imagens que o kubeadm usará. O arquivo de configuração é usado caso quaisquer imagens ou repositórios de imagens sejam personalizados. ``` kubeadm config images list [flags] ``` -### Options +### Opções @@ -31,59 +30,59 @@ kubeadm config images list [flags] - + - + - + - + - + - + - + - + - + - + - + - + @@ -91,7 +90,7 @@ kubeadm config images list [flags] -### Options inherited from parent commands +### Opções herdadas do comando superior
--allow-missing-template-keys     Default: true--allow-missing-template-keys     Padrão: true

If true, ignore any errors in templates when a field or map key is missing in the template. Only applies to golang and jsonpath output formats.

Se verdadeiro (true), ignore quaisquer erros nos modelos quando um campo ou chave de mapa estiver faltando no modelo. Aplica-se apenas aos formatos de saída golang e jsonpath.

--config string

Path to a kubeadm configuration file.

Caminho para um arquivo de configuração kubeadm.

-o, --experimental-output string     Default: "text"-o, --experimental-output string     Padrão: "text"

Output format. One of: text|json|yaml|go-template|go-template-file|template|templatefile|jsonpath|jsonpath-as-json|jsonpath-file.

Formato de saída. Um dos: text|json|yaml|go-template|go-template-file|template|templatefile|jsonpath|jsonpath-as-json|jsonpath-file.

--feature-gates string

A set of key=value pairs that describe feature gates for various features. Options are:
PublicKeysECDSA=true|false (ALPHA - default=false)
RootlessControlPlane=true|false (ALPHA - default=false)
UnversionedKubeletConfigMap=true|false (ALPHA - default=false)

Um conjunto de pares chave=valor que descrevem opções para vários recursos. As opções são:
PublicKeysECDSA=true|false (ALPHA - padrão=false)
RootlessControlPlane=true|false (ALPHA - padrão=false)
UnversionedKubeletConfigMap=true|false (ALPHA - padrão=false)

-h, --help

help for list

ajuda para list

--image-repository string     Default: "k8s.gcr.io"--image-repository string     Padrão: "k8s.gcr.io"

Choose a container registry to pull control plane images from

Escolha um registro de contêineres para extrair imagens da camada de gerenciamento

--kubernetes-version string     Default: "stable-1"--kubernetes-version string     Padrão: "stable-1"

Choose a specific Kubernetes version for the control plane.

Escolha uma versão específica do Kubernetes para a camada de gerenciamento.

--show-managed-fields

If true, keep the managedFields when printing objects in JSON or YAML format.

Se verdadeiro, mantém os managedFields ao exibir os objetos no formato JSON ou YAML.

@@ -101,17 +100,17 @@ kubeadm config images list [flags] - + - + - + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md index 7423ad1934b..2fc1e0662b0 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md @@ -10,18 +10,18 @@ guide. You can file document formatting bugs against the --> -Pull images used by kubeadm +Puxe imagens usadas pelo kubeadm -### Synopsis +### Sinopse -Pull images used by kubeadm +Puxe imagens usadas pelo kubeadm ``` kubeadm config images pull [flags] ``` -### Options +### Opções
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

[EXPERIMENTAL] O caminho para o 'real' sistema de arquivos raiz do host.

@@ -34,42 +34,42 @@ kubeadm config images pull [flags] - + - + - + - + - + - + - + - + @@ -77,7 +77,7 @@ kubeadm config images pull [flags] -### Options inherited from parent commands +### Opções herdadas do comando superior
--config string

Path to a kubeadm configuration file.

Caminho para um arquivo de configuração kubeadm.

--cri-socket string

Path to the CRI socket to connect. If empty kubeadm will try to auto-detect this value; use this option only if you have more than one CRI installed or if you have non-standard CRI socket.

Caminho para se conectar ao socket CRI. Se um kubeadm vazio tentar detectar automaticamente esse valor; use essa opção somente se você tiver mais de um CRI instalado ou se tiver um socket CRI não padrão.

--feature-gates string

A set of key=value pairs that describe feature gates for various features. Options are:
PublicKeysECDSA=true|false (ALPHA - default=false)
RootlessControlPlane=true|false (ALPHA - default=false)
UnversionedKubeletConfigMap=true|false (ALPHA - default=false)

Um conjunto de pares chave=valor que descrevem opções para vários recursos. As opções são:
PublicKeysECDSA=true|false (ALPHA - padrão=false)
RootlessControlPlane=true|false (ALPHA - padrão=false)
UnversionedKubeletConfigMap=true|false (ALPHA - padrão=false)

-h, --help

help for pull

ajuda para pull

--image-repository string     Default: "k8s.gcr.io"--image-repository string     Padrão: "k8s.gcr.io"

Choose a container registry to pull control plane images from

Escolha um registro de contêineres para extrair imagens da camada de gerenciamento

--kubernetes-version string     Default: "stable-1"--kubernetes-version string     Padrão: "stable-1"

Choose a specific Kubernetes version for the control plane.

Escolha uma versão específica do Kubernetes para a camada de gerenciamento.

@@ -87,17 +87,17 @@ kubeadm config images pull [flags] - + - + - + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md index 8aa2f6f1d22..524d70e2a3c 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md @@ -10,31 +10,22 @@ guide. You can file document formatting bugs against the --> -Read an older version of the kubeadm configuration API types from a file, and output the similar config object for the newer version +Leia uma versão mais antiga dos tipos de API de configuração do kubeadm a partir de um arquivo e envie o objeto de configuração semelhante para a versão mais recente -### Synopsis +### Sinopse +Esse comando permite converter objetos de configuração de versões mais antigas para a versão mais recente suportada, localmente na ferramenta CLI sem nunca tocar em nada no cluster. Nesta versão do kubeadm, as seguintes versões da API são suportadas: +- Kubeadm.k8s.io/v1beta3 +Além disso, o kubeadm só pode escrever a configuração da versão "kubeadm.k8s.io/v1beta3", mas pode ler os dois tipos. Portanto, independentemente da versão que você passar para o parâmetro --old-config , o objeto API será lido, desserializado, padronizado, convertido, validado e serializado novamente quando escrito no stdout ou --new-config, se especificado. -This command lets you convert configuration objects of older versions to the latest supported version, -locally in the CLI tool without ever touching anything in the cluster. -In this version of kubeadm, the following API versions are supported: -- kubeadm.k8s.io/v1beta3 - -Further, kubeadm can only write out config of version "kubeadm.k8s.io/v1beta3", but read both types. -So regardless of what version you pass to the --old-config parameter here, the API object will be -read, deserialized, defaulted, converted, validated, and re-serialized when written to stdout or ---new-config if specified. - -In other words, the output of this command is what kubeadm actually would read internally if you -submitted this file to "kubeadm init" - +Em outras palavras, a saída deste comando é o que o kubeadm realmente leria internamente se você enviasse este arquivo para "kubeadm init" ``` kubeadm config migrate [flags] ``` -### Options +### Opções
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

[EXPERIMENTAL] O caminho para o 'real' sistema de arquivos raiz do host.

@@ -47,21 +38,21 @@ kubeadm config migrate [flags] - + - + - + @@ -69,7 +60,7 @@ kubeadm config migrate [flags] -### Options inherited from parent commands +### Opções herdadas do comando superior
-h, --help

help for migrate

ajuda para migrate

--new-config string

Path to the resulting equivalent kubeadm config file using the new API version. Optional, if not specified output will be sent to STDOUT.

Caminho para o arquivo de configuração kubeadm equivalente usando a nova versão da API. Opcional, se não for especificado, a saída será enviada para o STDOUT.

--old-config string

Path to the kubeadm config file that is using an old API version and should be converted. This flag is mandatory.

Caminho para o arquivo de configuração do kubeadm que está usando uma versão antiga da API e que deve ser convertido. Essa flag é obrigatória.

@@ -79,17 +70,17 @@ kubeadm config migrate [flags] - + - + - + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md index e8aa81abf69..d422fb910b6 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md @@ -10,20 +10,18 @@ guide. You can file document formatting bugs against the --> -Print configuration +Exibir configurações -### Synopsis +### Sinopse - - -This command prints configurations for subcommands provided. -For details, see: https://pkg.go.dev/k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm#section-directories +Este comando exibe as configurações para subcomandos fornecidos. +Para mais detalhes, consulte: https://pkg.go.dev/k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm#section-directories ``` kubeadm config print [flags] ``` -### Options +### Opções
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

[EXPERIMENTAL] O caminho para o 'real' sistema de arquivos raiz do host.

@@ -36,7 +34,7 @@ kubeadm config print [flags] - + @@ -44,7 +42,7 @@ kubeadm config print [flags] -### Options inherited from parent commands +### Opções herdadas do comando superior
-h, --help

help for print

ajuda para print

@@ -54,17 +52,17 @@ kubeadm config print [flags] - + - + - + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md index f8200dfd528..ae3cd92b87b 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md @@ -9,24 +9,19 @@ guide. You can file document formatting bugs against the [reference-docs](https://github.com/kubernetes-sigs/reference-docs/) project. --> +Exibe a configuração de inicialização padrão, que pode ser usada para 'kubeadm init' -Print default init configuration, that can be used for 'kubeadm init' +### Sinopse -### Synopsis - - - -This command prints objects such as the default init configuration that is used for 'kubeadm init'. - -Note that sensitive values like the Bootstrap Token fields are replaced with placeholder values like "abcdef.0123456789abcdef" in order to pass validation but -not perform the real computation for creating a token. +Este comando exibe os objetos como a configuração de inicialização padrão que é usada para 'kubeadm init'. +Observe que os valores confidenciais, como os campos do Token Bootstrap, são substituídos por valores de espaço reservado como "abcdef.0123456789abcdef", a fim de passar na validação, mas não executar o cálculo real para criar um token. ``` kubeadm config print init-defaults [flags] ``` -### Options +### Opções
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

[EXPERIMENTAL] O caminho para o 'real' sistema de arquivos raiz do host.

@@ -39,14 +34,14 @@ kubeadm config print init-defaults [flags] - + - + @@ -54,7 +49,7 @@ kubeadm config print init-defaults [flags] -### Options inherited from parent commands +### Opções herdadas do comando superior
--component-configs strings

A comma-separated list for component config API objects to print the default values for. Available values: [KubeProxyConfiguration KubeletConfiguration]. If this flag is not set, no component configs will be printed.

Uma lista separada por vírgulas dos objetos da API de configuração exibirá os valores padrão. Valores disponíveis: [KubeProxyConfiguration KubeletConfiguration]. Se essa flag não estiver definida, nenhuma configuração de componente será impressa.

-h, --help

help for init-defaults

ajuda para init-defaults

@@ -64,17 +59,17 @@ kubeadm config print init-defaults [flags] - + - + - + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md index 1c634871eb2..2fec1654df7 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md @@ -10,23 +10,19 @@ guide. You can file document formatting bugs against the --> -Print default join configuration, that can be used for 'kubeadm join' +Exibe a configuração padrão do join, que pode ser usada para 'kubeadm join' -### Synopsis +### Sinopse +Este comando exibe objetos como a configuração padrão de join que é usada para 'kubeadm join'. - -This command prints objects such as the default join configuration that is used for 'kubeadm join'. - -Note that sensitive values like the Bootstrap Token fields are replaced with placeholder values like "abcdef.0123456789abcdef" in order to pass validation but -not perform the real computation for creating a token. - +Observe que valores confidenciais, como os campos do Token Bootstrap, são substituídos por valores de espaço reservado como "abcdef.0123456789abcdef", a fim de passar na validação, mas não executar o cálculo real para criar um token. ``` kubeadm config print join-defaults [flags] ``` -### Options +### Opções
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

[EXPERIMENTAL] O caminho para o 'real' sistema de arquivos raiz do host.

@@ -39,14 +35,14 @@ kubeadm config print join-defaults [flags] - + - + @@ -54,7 +50,7 @@ kubeadm config print join-defaults [flags] -### Options inherited from parent commands +### Opções herdadas do comando superior
--component-configs strings

A comma-separated list for component config API objects to print the default values for. Available values: [KubeProxyConfiguration KubeletConfiguration]. If this flag is not set, no component configs will be printed.

Uma lista separada por vírgulas dos objetos da API de configuração exibirá os valores padrão. Valores disponíveis: [KubeProxyConfiguration KubeletConfiguration]. Se essa flag não estiver definida, nenhuma configuração de componente será impressa.

-h, --help

help for join-defaults

ajuda para join-defaults

@@ -64,17 +60,17 @@ kubeadm config print join-defaults [flags] - + - + - + From 0de317ac5edcc71e3067a7760803f6c9376974df Mon Sep 17 00:00:00 2001 From: "Mr. Erlison" Date: Fri, 22 Jul 2022 08:02:29 -0300 Subject: [PATCH 4/5] Update whatsnext translation Signed-off-by: Mr. Erlison --- .../pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md b/content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md index 41768fc0e1a..45ab8b09611 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md @@ -47,6 +47,6 @@ Você pode usar o `kubeadm config migrate` para converter seus arquivos de confi {{< include "generated/kubeadm_config_images_pull.md" >}} -## {{% heading "O que vem a seguir?" %}} +## {{% heading "whatsnext" %}} * [kubeadm upgrade](/docs/reference/setup-tools/kubeadm/kubeadm-upgrade) para atualizar um cluster Kubernetes para uma versão mais recente From 22a2876cb5dbdef590cebe5cfcf02f59ee0d4395 Mon Sep 17 00:00:00 2001 From: "Mr. Erlison" Date: Sat, 3 Sep 2022 12:19:05 -0300 Subject: [PATCH 5/5] Changes from reviews Signed-off-by: Mr. Erlison --- .../kubeadm/generated/kubeadm_config_images_list.md | 6 +++--- .../kubeadm/generated/kubeadm_config_images_pull.md | 10 +++++----- .../kubeadm/generated/kubeadm_config_migrate.md | 2 +- .../kubeadm/generated/kubeadm_config_print.md | 4 ++-- .../generated/kubeadm_config_print_init-defaults.md | 8 ++++---- .../generated/kubeadm_config_print_join-defaults.md | 6 +++--- .../reference/setup-tools/kubeadm/kubeadm-config.md | 4 ++-- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md index 0a4311cddcd..bebe22b240c 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_list.md @@ -47,7 +47,7 @@ kubeadm config images list [flags] - + @@ -68,7 +68,7 @@ kubeadm config images list [flags] - + @@ -103,7 +103,7 @@ kubeadm config images list [flags] - + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md index 2fc1e0662b0..15b6fd9195c 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_images_pull.md @@ -15,7 +15,7 @@ Puxe imagens usadas pelo kubeadm ### Sinopse -Puxe imagens usadas pelo kubeadm +Baixa imagens usadas pelo kubeadm ``` kubeadm config images pull [flags] @@ -41,14 +41,14 @@ kubeadm config images pull [flags] - + - + @@ -62,7 +62,7 @@ kubeadm config images pull [flags] - + @@ -90,7 +90,7 @@ kubeadm config images pull [flags] - + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md index 524d70e2a3c..11555bc670b 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_migrate.md @@ -73,7 +73,7 @@ kubeadm config migrate [flags] - + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md index d422fb910b6..439dbc5e423 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print.md @@ -10,7 +10,7 @@ guide. You can file document formatting bugs against the --> -Exibir configurações +Exibe configurações ### Sinopse @@ -55,7 +55,7 @@ kubeadm config print [flags] - + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md index ae3cd92b87b..e185740d1b7 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_init-defaults.md @@ -13,9 +13,9 @@ Exibe a configuração de inicialização padrão, que pode ser usada para 'kube ### Sinopse -Este comando exibe os objetos como a configuração de inicialização padrão que é usada para 'kubeadm init'. +Este comando exibe objetos, como a configuração de inicialização padrão que é usada para 'kubeadm init'. -Observe que os valores confidenciais, como os campos do Token Bootstrap, são substituídos por valores de espaço reservado como "abcdef.0123456789abcdef", a fim de passar na validação, mas não executar o cálculo real para criar um token. +Observe que os valores confidenciais, como os campos do Token Bootstrap, são substituídos por valores de exemplo como "abcdef.0123456789abcdef", a fim de passar na validação, mas não executar o cálculo real para criar um token. ``` kubeadm config print init-defaults [flags] @@ -34,7 +34,7 @@ kubeadm config print init-defaults [flags] - + @@ -62,7 +62,7 @@ kubeadm config print init-defaults [flags] - + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md index 2fec1654df7..9a42b7db243 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/generated/kubeadm_config_print_join-defaults.md @@ -16,7 +16,7 @@ Exibe a configuração padrão do join, que pode ser usada para 'kubeadm join' Este comando exibe objetos como a configuração padrão de join que é usada para 'kubeadm join'. -Observe que valores confidenciais, como os campos do Token Bootstrap, são substituídos por valores de espaço reservado como "abcdef.0123456789abcdef", a fim de passar na validação, mas não executar o cálculo real para criar um token. +Observe que valores confidenciais, como os campos do Token Bootstrap, são substituídos por valores de exemplo como "abcdef.0123456789abcdef", a fim de passar na validação, mas não executar o cálculo real para criar um token. ``` kubeadm config print join-defaults [flags] @@ -35,7 +35,7 @@ kubeadm config print join-defaults [flags] - + @@ -63,7 +63,7 @@ kubeadm config print join-defaults [flags] - + diff --git a/content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md b/content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md index 45ab8b09611..7892a0ec19f 100644 --- a/content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md +++ b/content/pt-br/docs/reference/setup-tools/kubeadm/kubeadm-config.md @@ -13,13 +13,13 @@ Você pode usar o `kubeadm config print` para exibir a configuração estática A saída do comando deve servir de exemplo. Você deve editar manualmente a saída deste comando para adaptar à sua configuração. Remova os campos sobre os quais você não tem certeza e o kubeadm tentará usá-los como padrão, examinando o host durante a execução. {{< /note >}} -Para obter mais informações sobre `init` e `join`, navegue até [Usando o init do kubeadm com um arquivo de configuração](/docs/reference/setup-tools/kubeadm/kubeadm-init/#config-file) ou [Usando o kubeadm join com um arquivo de configuração](/docs/reference/setup-tools/kubeadm/kubeadm-join/#config-file). +Para obter mais informações sobre `init` e `join`, navegue até [Usando o kubeadm init com um arquivo de configuração](/docs/reference/setup-tools/kubeadm/kubeadm-init/#config-file) ou [Usando o kubeadm join com um arquivo de configuração](/docs/reference/setup-tools/kubeadm/kubeadm-join/#config-file). Para obter mais informações sobre como usar a API de configuração do kubeadm, navegue até [Personalizando componentes com a API do kubeadm.](/docs/setup/production-environment/tools/kubeadm/control-plane-flags). Você pode usar o `kubeadm config migrate` para converter seus arquivos de configuração antigos que contêm uma versão obsoleta da API para uma versão mais recente e suportada da API. -`kubeadm config images list` e `kubeadm config images pull` podem ser usadas para listar e puxar as imagens que o kubeadm precisa. +`kubeadm config images list` e `kubeadm config images pull` podem ser usadas para listar e baixar as imagens que o kubeadm precisa.
--kubeconfig string     Default: "/etc/kubernetes/admin.conf"--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

--rootfs string

[EXPERIMENTAL] The path to the 'real' host root filesystem.

[EXPERIMENTAL] O caminho para o 'real' sistema de arquivos raiz do host.

-o, --experimental-output string     Padrão: "text"

Formato de saída. Um dos: text|json|yaml|go-template|go-template-file|template|templatefile|jsonpath|jsonpath-as-json|jsonpath-file.

Formato de saída. Valores válidos: text|json|yaml|go-template|go-template-file|template|templatefile|jsonpath|jsonpath-as-json|jsonpath-file.

--image-repository string     Padrão: "k8s.gcr.io"

Escolha um registro de contêineres para extrair imagens da camada de gerenciamento

Escolha um registro de contêineres para baixar imagens da camada de gerenciamento

--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

O arquivo kubeconfig a ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de locais predefinidos pode ser pesquisado por um arquivo kubeconfig existente.

--cri-socket string

Caminho para se conectar ao socket CRI. Se um kubeadm vazio tentar detectar automaticamente esse valor; use essa opção somente se você tiver mais de um CRI instalado ou se tiver um socket CRI não padrão.

Caminho para se conectar ao socket CRI. Se vazio, o kubeadm tentará detectar automaticamente esse valor; use essa opção somente se você tiver mais de um CRI instalado ou se tiver um socket CRI não padrão.

--feature-gates string

Um conjunto de pares chave=valor que descrevem opções para vários recursos. As opções são:
PublicKeysECDSA=true|false (ALPHA - padrão=false)
RootlessControlPlane=true|false (ALPHA - padrão=false)
UnversionedKubeletConfigMap=true|false (ALPHA - padrão=false)

Um conjunto de pares chave=valor que descrevem feature gates para vários recursos. As opções são:
PublicKeysECDSA=true|false (ALPHA - padrão=false)
RootlessControlPlane=true|false (ALPHA - padrão=false)
UnversionedKubeletConfigMap=true|false (ALPHA - padrão=false)

--image-repository string     Padrão: "k8s.gcr.io"

Escolha um registro de contêineres para extrair imagens da camada de gerenciamento

Escolha um registro de contêineres para baixar imagens da camada de gerenciamento

--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

O arquivo kubeconfig a ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de locais predefinidos pode ser pesquisado por um arquivo kubeconfig existente.

--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

O arquivo kubeconfig a ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de locais predefinidos pode ser pesquisado por um arquivo kubeconfig existente.

--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

O arquivo kubeconfig a ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de locais predefinidos pode ser pesquisado por um arquivo kubeconfig existente.

--component-configs strings

Uma lista separada por vírgulas dos objetos da API de configuração exibirá os valores padrão. Valores disponíveis: [KubeProxyConfiguration KubeletConfiguration]. Se essa flag não estiver definida, nenhuma configuração de componente será impressa.

Uma lista dos objetos da API de configuração, separados por vírgulas, exibirá os valores padrão. Valores disponíveis: [KubeProxyConfiguration KubeletConfiguration]. Se essa flag não estiver definida, nenhuma configuração de componente será impressa.

--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

O arquivo kubeconfig a ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de locais predefinidos pode ser pesquisado por um arquivo kubeconfig existente.

--component-configs strings

Uma lista separada por vírgulas dos objetos da API de configuração exibirá os valores padrão. Valores disponíveis: [KubeProxyConfiguration KubeletConfiguration]. Se essa flag não estiver definida, nenhuma configuração de componente será impressa.

Uma lista dos objetos da API de configuração, separados por vírgulas, exibirá os valores padrão. Valores disponíveis: [KubeProxyConfiguration KubeletConfiguration]. Se essa flag não estiver definida, nenhuma configuração de componente será impressa.

--kubeconfig string     Padrão: "/etc/kubernetes/admin.conf"

O arquivo kubeconfig pode ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de padrão local pode ser pesquisado por um arquivo kubeconfig existente.

O arquivo kubeconfig a ser usado para se comunicar com o cluster. Se a flag não estiver definida, um conjunto de locais predefinidos pode ser pesquisado por um arquivo kubeconfig existente.