From a3eaa9532f237c9a041520902159bdc2f8895829 Mon Sep 17 00:00:00 2001 From: Carlos Vieira Date: Mon, 26 Oct 2020 11:17:23 -0300 Subject: [PATCH] helm: add pt_BR translation --- pages.pt_BR/common/helm.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages.pt_BR/common/helm.md diff --git a/pages.pt_BR/common/helm.md b/pages.pt_BR/common/helm.md new file mode 100644 index 000000000..826dd5f37 --- /dev/null +++ b/pages.pt_BR/common/helm.md @@ -0,0 +1,36 @@ +# helm + +> Helm é um gerenciador de pacores para Kubernetes. +> Mais informações: . + +- 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`