Helm workshop
- Start cluster
minikube start
- Check if cluster is ready
kubectl get pods -A
- Install helm chart
helm install app charts/take-the-helm -n custom --create-namespace --dry-run
helm install app charts/take-the-helm -n custom --create-namespace
- Check deployments
kubectl get services --all-namespaces
kubectl get deployments --all-namespaces
kubectl get pods --all-namespaces
kubectl describe pods <pod-name> -n custom
- Uninstall helm chart
helm uninstall app -n custom
helm lint charts/take-the-helm
helm template app charts/take-the-helm