Kubernetes UI is not working

12/7/2016

I have a Kubernetes cluster set up. I tried to install UI from this URL but when I try to access the UI from my browser I get following Error:

{
  "kind": "Status",
  "apiVersion": "v1",
  "metadata": {},
  "status": "Failure",
  "message": "endpoints \"kube-ui\" not found",
  "reason": "NotFound",
  "details": {
    "name": "kube-ui",
    "kind": "endpoints"
  },
  "code": 404
}
-- chandu
kubernetes

1 Answer

8/22/2017

Run: kubectl proxy

And you must going to http://127.0.0.1:8001/ui/

It's better?

-- Julien
Source: StackOverflow