You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Deploy.) helm install example ./mychart --set service.type=NodePort
(List all Helm deployment in all namespaces.) helm list --all-namespaces
(Use Linter to check chats.) helm lint ./mychart
(Uninstall.) helm uninstall example --namespace default
(Package.) helm package ./mychart
(Deploy using a package.) helm install example3 mychart-0.1.0.tgz --set service.type=NodePort
(Update dependencies for any change in requirements.yaml. The dependencies are defined at Chart.yaml, instead of requirements.yaml in Helm 3.) helm dep update ./mychart