From 70a18ec1f9ca79f74538e95815630bd94f382c9f Mon Sep 17 00:00:00 2001 From: Franz Date: Thu, 6 Oct 2022 15:00:24 +0200 Subject: [PATCH] helm: add Italian translation (#8766) * helm: add Italian translation Added Italian translation * helm: fix typo --- pages.it/common/helm.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages.it/common/helm.md diff --git a/pages.it/common/helm.md b/pages.it/common/helm.md new file mode 100644 index 0000000000..487a8e1f0b --- /dev/null +++ b/pages.it/common/helm.md @@ -0,0 +1,37 @@ +# helm + +> Helm รจ un gestore di pacchetti per Kubernetes. +> Alcuni comandi aggiuntivi, come `helm install`, hanno la propria documentazione. +> Maggiori informazioni: . + +- Crea una helm chart: + +`helm create {{nome_chart}}` + +- Aggiungi un nuovo repository helm: + +`helm repo add {{nome_repository}}` + +- Elenca i repositories helm: + +`helm repo list` + +- Aggiorna i repositories helm: + +`helm repo update` + +- Cancella un repository helm: + +`helm repo remove {{nome_repository}}` + +- Installa una helm chart: + +`helm install {{nome_chart}} {{nome_repository}}/{{nome_chart}}` + +- Scarica una helm chart sottoforma di archivio tar: + +`helm get {{nome_chart_rilasciata}}` + +- Aggiorna le dipendenze helm: + +`helm dependency update`