Helm install and basic commands

Install and basic configuration of helm

– install helm:
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash

– install chartmuseum:
curl https://raw.githubusercontent.com/helm/chartmuseum/main/scripts/get-chartmuseum | bash

– run chartmuseum:

chartmuseum --debug --port=8081 \
--storage="local" \
--storage-local-rootdir="./chartstorage" &

– installing charts into kubernetes:
Add the URL to your ChartMuseum installation to the local repository list:
helm repo add chartmuseum http://localhost:8081

Basic commands

– List the repositories:
helm repo list

– Initialize a Helm Chart Repository:
helm repo add bitnami https://charts.bitnami.com/bitnami

– install a chart:
helm install chartmuseum/mychart --generate-name

– Search charts in repositories::
helm search repo

– Show description of a chart::
helm show chart bitnami/postgresql

– List releases performed in helm::
helm list

Ce contenu a été publié dans Non classé. Vous pouvez le mettre en favoris avec ce permalien.

Laisser un commentaire

Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *