Skip to content
This repository was archived by the owner on Oct 7, 2019. It is now read-only.

Commit ae6b3c7

Browse files
committed
Create step10.md
1 parent 101159e commit ae6b3c7

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

step10.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# 10. Explore the Kubernetes Dashboard (optional)
2+
3+
Estimated time: 7 min remaining
4+
5+
While logged into the cloud console:
6+
7+
Get the admin password
8+
```sh
9+
$ gcloud container clusters describe hello-world | egrep "password"
10+
password: vUYwC5ATJMWa6goh
11+
```
12+
13+
Get the dashboard URL
14+
```sh
15+
$ kubectl cluster-info
16+
kubectl cluster-info
17+
Kubernetes master is running at https://107.39.81.152
18+
GLBCDefaultBackend is running at https://107.39.81.152/api/v1/proxy/namespaces/kube-system/services/default-http-backend
19+
Heapster is running at https://107.39.81.152/api/v1/proxy/namespaces/kube-system/services/heapster
20+
KubeDNS is running at https://107.39.81.152/api/v1/proxy/namespaces/kube-system/services/kube-dns
21+
kubernetes-dashboard is running at https://107.39.81.152/api/v1/proxy/namespaces/kube-system/services/kubernetes-dashboard
22+
```
23+
Navigate to the URL that is shown under after `kubernetes-dashboard is running at` and log in with
24+
username “admin” and the password retrieved above. Then explore the Kubernetes graphical dashboard.
25+
26+
![dashboard](https://cloud.githubusercontent.com/assets/3506071/14579197/55ea61c8-036e-11e6-92ac-f00dc3463536.png)
27+
28+
#### [Go to step 11](step11.md)
29+
#### [Go back to step 9](step9.md)

0 commit comments

Comments
 (0)