Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Charts are easy to create, version, share, and publish — so start using Helm and stop the copy-and-paste madness.


List of stable maintained charts

https://github.com/helm/charts/tree/master/stable


Curated applications for Kubernetes

https://github.com/helm/charts

Installation

Installing Helm Client

...

Let's start by installing the kubernetes dashboard using helm.


Installing a Chart

helm install stable/kubernetes-dashboard --name dashboard


List Releases

> helm list

Code Block
NAME     	REVISION	UPDATED                 	STATUS  	CHART                     	APP VERSION	NAMESPACE
dashboard	1       	Tue Apr  2 08:37:56 2019	DEPLOYED	kubernetes-dashboard-0.8.0	1.10.0     	default


Rolling Back a Release

helm rollback dashboard 1


Deleting a Release

> helm delete dashboard

> helm delete --purge dashboard


References

...