mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:22:09 +02:00
helm: add Italian translation (#8766)
* helm: add Italian translation Added Italian translation * helm: fix typo
This commit is contained in:
parent
422901e496
commit
70a18ec1f9
1 changed files with 37 additions and 0 deletions
37
pages.it/common/helm.md
Normal file
37
pages.it/common/helm.md
Normal 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`
|
Loading…
Add table
Reference in a new issue