mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 00:05:59 +02:00
helm: add pt_BR translation
This commit is contained in:
parent
61cd51518c
commit
a3eaa9532f
1 changed files with 36 additions and 0 deletions
36
pages.pt_BR/common/helm.md
Normal file
36
pages.pt_BR/common/helm.md
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# helm
|
||||||
|
|
||||||
|
> Helm é um gerenciador de pacores para Kubernetes.
|
||||||
|
> Mais informações: <https://helm.sh/>.
|
||||||
|
|
||||||
|
- Cria um chart do helm:
|
||||||
|
|
||||||
|
`helm create {{chart_name}}`
|
||||||
|
|
||||||
|
- Adiciona um novo repositório helm:
|
||||||
|
|
||||||
|
`helm repo add {{repo_name}}`
|
||||||
|
|
||||||
|
- Lista os repositórios helm:
|
||||||
|
|
||||||
|
`helm repo list`
|
||||||
|
|
||||||
|
- Atualiza os repositórios helm:
|
||||||
|
|
||||||
|
`helm repo update`
|
||||||
|
|
||||||
|
- Remova um repositório helm:
|
||||||
|
|
||||||
|
`helm repo remove {{repo_name}}`
|
||||||
|
|
||||||
|
- Instala um chart helm:
|
||||||
|
|
||||||
|
`helm install {{repo_name}}/{{chart_name}}`
|
||||||
|
|
||||||
|
- Obtém um chart helm chart como um arquivo tar:
|
||||||
|
|
||||||
|
`helm get {{chart_release_name}}`
|
||||||
|
|
||||||
|
- Atualiza as dependências helm:
|
||||||
|
|
||||||
|
`helm dependency update`
|
Loading…
Add table
Reference in a new issue