Helm
Install
brew install helmUsing
# update charts repo
helm repo update
# install postgre chart
# helm install --name nginx stable/nginx-ingress
helm install --name pg --namespace default --set postgresPassword=postgres,persistence.size=1Gi stable/postgresql
kubectl get pods -n default
# list installed charts
helm ls
# delete postgre
$ helm delete my-postgre
# delete postgre and purge
$ helm delete --purge my-postgreYou can also create your own Chart by using the scaffolding command
This will create a folder which includes all the files necessary to create your own package :
optionally add helm-secrets plugin
helm-secrets pluginLast updated
Was this helpful?