Update web-ui-dashboard.md (#8146)

Updated the URL as mentioned in: https://github.com/kubernetes/dashboard/wiki/Accessing-Dashboard---1.7.X-and-above as a fix for https://github.com/kubernetes/website/issues/8119
This commit is contained in:
Rajakavitha1 2018-04-27 02:23:28 +05:30 committed by k8s-ci-robot
parent 0dcf6f1671
commit 751b4af18d
1 changed files with 2 additions and 2 deletions

View File

@ -34,12 +34,12 @@ You can access Dashboard using the kubectl command-line tool by running the foll
kubectl proxy
```
Kubectl will handle authentication with apiserver and make Dashboard available at http://localhost:8001/ui.
Kubectl will handle authentication with apiserver and make Dashboard available at http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/.
The UI can _only_ be accessed from the machine where the command is executed. See `kubectl proxy --help` for more options.
### Master server
You may access the UI directly via the Kubernetes master apiserver. Open a browser and navigate to `https://<kubernetes-master>/ui`, where `<kubernetes-master>` is IP address or domain name of the Kubernetes
You may access the UI directly via the Kubernetes master apiserver. Open a browser and navigate to ``https://<master-ip>:<apiserver-port>/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/``, where `<kubernetes-master>` is IP address or domain name of the Kubernetes
master.
Please note, this works only if the apiserver is set up to allow authentication with username and password. This is not currently the case with some setup tools (e.g., `kubeadm`). Refer to the [authentication admin documentation](/docs/admin/authentication/) for information on how to configure authentication manually.