Fix `minikube addons open heapster`
In the default installation I get the same error:
```
$ minikube addons open heapster
💣 This addon does not have an endpoint defined for the 'addons open' command.
You can add one by annotating a service with the label kubernetes.io/minikube-addons-endpoint:heapster
```
This PR is simply implementing the suggested fix by adding the aforementioned label to the heapster service.
pull/3826/head
parent
bf1924a758
commit
a3e652a360
|
|
@ -19,6 +19,7 @@ metadata:
|
|||
kubernetes.io/name: heapster
|
||||
kubernetes.io/minikube-addons: heapster
|
||||
addonmanager.kubernetes.io/mode: Reconcile
|
||||
kubernetes.io/minikube-addons-endpoint: heapster
|
||||
name: heapster
|
||||
namespace: kube-system
|
||||
spec:
|
||||
|
|
|
|||
Loading…
Reference in New Issue