-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
[pt-br] Update docs/tasks/tools/included/verify-kubectl #48056
Open
moreirayokoyama
wants to merge
1
commit into
kubernetes:main
Choose a base branch
from
moreirayokoyama:fix-48020
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+27
−5
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -8,26 +8,48 @@ _build: | |||||
publishResources: false | ||||||
--- | ||||||
|
||||||
Para que o kubectl encontre e acesse um cluster Kubernetes, ele precisa de um [arquivo kubeconfig](/pt-br//docs/concepts/configuration/organize-cluster-access-kubeconfig/), que é criado automaticamente quando você cria um cluster usando [kube-up.sh](https://github.com/kubernetes/kubernetes/blob/master/cluster/kube-up.sh) ou instala com sucesso um cluster Minikube. Por padrão, a configuração kubectl está localizada em `~/.kube/config`. | ||||||
Para que o kubectl encontre e acesse um cluster Kubernetes, ele precisa de um | ||||||
[arquivo kubeconfig](/pt-br/docs/concepts/configuration/organize-cluster-access-kubeconfig/), | ||||||
que é criado automaticamente quando você cria um cluster usando | ||||||
[kube-up.sh](https://github.com/kubernetes/kubernetes/blob/master/cluster/kube-up.sh) ou | ||||||
instala com sucesso um cluster Minikube. | ||||||
Por padrão, a configuração kubectl está localizada em `~/.kube/config`. | ||||||
|
||||||
Verifique se o kubectl está configurado corretamente obtendo o estado do cluster: | ||||||
|
||||||
```shell | ||||||
kubectl cluster-info | ||||||
``` | ||||||
|
||||||
Se você receber uma URL de resposta, o kubectl está configurado corretamente para acessar seu cluster. | ||||||
Se você receber uma URL de resposta, o kubectl está configurado corretamente para acessar | ||||||
seu cluster. | ||||||
|
||||||
Se você receber uma mensagem semelhante à seguinte, o kubectl não está configurado corretamente ou não consegue se conectar a um cluster Kubernetes. | ||||||
Se você receber uma mensagem semelhante à seguinte, o kubectl não está configurado | ||||||
corretamente ou não consegue se conectar a um cluster Kubernetes. | ||||||
|
||||||
``` | ||||||
The connection to the server <server-name:port> was refused - did you specify the right host or port? | ||||||
``` | ||||||
|
||||||
Por exemplo, se você pretende executar um cluster Kubernetes no seu laptop (localmente), precisará que uma ferramenta como o Minikube seja instalada primeiro, para em seguida executar novamente os comandos indicados acima. | ||||||
Por exemplo, se você pretende executar um cluster Kubernetes no seu laptop (localmente), | ||||||
vai precisar de uma ferramenta como o [Minikube](https://minikube.sigs.k8s.io/docs/start/) | ||||||
seja instalada primeiro, para em seguida executar novamente os comandos indicados acima. | ||||||
|
||||||
Se o kubectl cluster-info retornar a URL de resposta, mas você não conseguir acessar seu cluster, para verificar se ele está configurado corretamente, use: | ||||||
Se o comando `kubectl cluster-info` retornar a URL de resposta, mas você não conseguir | ||||||
acessar seu cluster, para verificar se ele está configurado corretamente, use: | ||||||
|
||||||
```shell | ||||||
kubectl cluster-info dump | ||||||
``` | ||||||
|
||||||
### Solução de problemas para a mensagem de erro 'No Auth Provider Found' {#no-auth-provider-found} | ||||||
|
||||||
No Kubernetes 1.26, o kubectl removeu a autenticação incorporada para as serviços de Kubernetes | ||||||
gerenciados ofertados por provedores de nuvem a seguir. Estes provedores lançaram plugins | ||||||
para o kubectl para fornecer a autenticação específica da nuvem. Para instruções, dirija-se à documentação do provedor: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. O que tu achas de usar "verifique a documentação" ao invés de "dirija-se"? Acho uma tradução mais aproximada de "refer".
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1 |
||||||
|
||||||
* Azure AKS: [plugin kubelogin](https://azure.github.io/kubelogin/) (em inglês) | ||||||
* Google Kubernetes Engine (GKE): [gke-cloud-auth-plugin](https://cloud.google.com/kubernetes-engine/docs/how-to/cluster-access-for-kubectl?hl=pt-br#install_plugin) | ||||||
|
||||||
(É possível que existam outras razões para ver a mesma mensagem de erro, não relacionadas | ||||||
com esta mudança.) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sugestão de ajuste pequeno pois achei que a versão original tem excesso de vírgulas aqui:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1