minikube/deploy/addons/helm-tiller/README.md

24 lines
858 B
Markdown
Raw Normal View History

2019-09-23 18:15:38 +00:00
## helm-tiller Addon
2019-09-16 00:34:16 +00:00
[Kubernetes Helm](https://helm.sh) - The Kubernetes Package Manager
2019-09-23 18:15:38 +00:00
### Enabling helm-tiller
2019-09-16 00:34:16 +00:00
To enable this addon, simply run:
```shell script
2019-09-23 18:15:38 +00:00
minikube addons enable helm-tiller
2019-09-16 00:34:16 +00:00
```
In a minute or so tiller will be installed into your cluster. You could run `helm init` each time you create a new minikube instance or you could just enable this addon.
Each time you start a new minikube instance, tiller will be automatically installed.
2019-09-16 00:34:16 +00:00
### Testing installation
```shell script
helm ls
```
If everything went well you shouldn't get any errors about tiller being installed in your cluster. If you haven't deployed any releases `helm ls` won't return anything.
2019-09-16 00:34:16 +00:00
### Deprecation of Tiller
When tiller is finally deprecated this addon won't be necessary anymore. If your version of helm doesn't use tiller, you don't need this addon.