2022-10-06 15:00:24 +02:00
|
|
|
# helm
|
|
|
|
|
|
|
|
> Helm è un gestore di pacchetti per Kubernetes.
|
2024-10-05 10:32:33 +02:00
|
|
|
> Alcuni comandi aggiuntivi, come `install`, hanno la propria documentazione.
|
2022-10-06 15:00:24 +02:00
|
|
|
> 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`
|