Reflect current state for addons in addons.md
parent
e73844c303
commit
83a50d99ac
|
@ -3,11 +3,17 @@
|
||||||
Minikube has a set of built in addons that can be used enabled, disabled, and opened inside of the local k8s environment. Below is an example of this functionality for the `heapster` addon:
|
Minikube has a set of built in addons that can be used enabled, disabled, and opened inside of the local k8s environment. Below is an example of this functionality for the `heapster` addon:
|
||||||
```shell
|
```shell
|
||||||
$ minikube addons list
|
$ minikube addons list
|
||||||
- addon-manager: enabled
|
- storage-provisioner: enabled
|
||||||
- dashboard: enabled
|
|
||||||
- kube-dns: enabled
|
- kube-dns: enabled
|
||||||
- heapster: disabled
|
- registry: disabled
|
||||||
- registry-creds: disabled
|
- registry-creds: disabled
|
||||||
|
- addon-manager: enabled
|
||||||
|
- dashboard: disabled
|
||||||
|
- default-storageclass: enabled
|
||||||
|
- coredns: disabled
|
||||||
|
- heapster: disabled
|
||||||
|
- efk: disabled
|
||||||
|
- ingress: disabled
|
||||||
|
|
||||||
# minikube must be running for these commands to take effect
|
# minikube must be running for these commands to take effect
|
||||||
$ minikube addons enable heapster
|
$ minikube addons enable heapster
|
||||||
|
@ -24,7 +30,10 @@ The currently supported addons include:
|
||||||
* [Kube-dns](https://github.com/kubernetes/kubernetes/tree/master/cluster/addons/dns)
|
* [Kube-dns](https://github.com/kubernetes/kubernetes/tree/master/cluster/addons/dns)
|
||||||
* [Heapster](https://github.com/kubernetes/heapster): [Troubleshooting Guide](https://github.com/kubernetes/heapster/blob/master/docs/influxdb.md) Note:You will need to login to Grafana as admin/admin in order to access the console
|
* [Heapster](https://github.com/kubernetes/heapster): [Troubleshooting Guide](https://github.com/kubernetes/heapster/blob/master/docs/influxdb.md) Note:You will need to login to Grafana as admin/admin in order to access the console
|
||||||
* [EFK](https://github.com/kubernetes/kubernetes/tree/master/cluster/addons/fluentd-elasticsearch)
|
* [EFK](https://github.com/kubernetes/kubernetes/tree/master/cluster/addons/fluentd-elasticsearch)
|
||||||
|
* [Registry](https://github.com/kubernetes/kubernetes/tree/master/cluster/addons/registry)
|
||||||
* [Registry Credentials](https://github.com/upmc-enterprises/registry-creds)
|
* [Registry Credentials](https://github.com/upmc-enterprises/registry-creds)
|
||||||
|
* [CoreDNS](https://github.com/coredns/deployment/tree/master/kubernetes)
|
||||||
|
* [Ingress](https://github.com/kubernetes/ingress-nginx)
|
||||||
|
|
||||||
If you would like to have minikube properly start/restart custom addons, place the addon(s) you wish to be launched with minikube in the `.minikube/addons` directory. Addons in this folder will be moved to the minikube VM and launched each time minikube is started/restarted.
|
If you would like to have minikube properly start/restart custom addons, place the addon(s) you wish to be launched with minikube in the `.minikube/addons` directory. Addons in this folder will be moved to the minikube VM and launched each time minikube is started/restarted.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue