helm: add Italian translation (#8766)

* helm: add Italian translation

Added Italian translation

* helm: fix typo
pull/1/head
Franz 2022-10-06 15:00:24 +02:00 committed by GitHub
parent 422901e496
commit 70a18ec1f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 37 additions and 0 deletions

37
pages.it/common/helm.md Normal file
View File

@ -0,0 +1,37 @@
# helm
> Helm è un gestore di pacchetti per Kubernetes.
> Alcuni comandi aggiuntivi, come `helm install`, hanno la propria documentazione.
> Maggiori informazioni: <https://helm.sh/>.
- 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`