Helm
Basic actions
List versions of a chart:
helm search -l stable/$CHART_NAME
List all releases installed:
helm ls --all -d
Get all the informations available on a release:
helm get all $RELEASE_NAME
Get the status of a release:
helm status $RELEASE_NAME
Get the status of a release:
helm upgrade --install --namespace=$NAMESPACE_NAME --values=values.yaml $RELEASE_NAME $CHART_NAME
Delete a release:
helm uninstall --namespace=$NAMESPACE_NAME $RELEASE_NAME