You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/tutorials/hello-minikube.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,22 @@ If you installed minikube locally, run `minikube start`.
59
59
60
60
4. Katacoda environment only: Type `30000`, and then click **Display Port**.
61
61
62
+
{{< note >}}
63
+
The `dashboard`command enables the dashboard add-on and opens the proxy in the default web browser. You can create Kubernetes resources on the dashboard such as Deployment and Service.
64
+
65
+
If you are running in an environment as root, see [Open Dashboard with URL](/docs/tutorials/hello-minikube#open-dashboard-with-url).
66
+
67
+
To stop the proxy, run `Ctrl+C` to exit the process. The dashboard remains running.
68
+
{{< /note >}}
69
+
70
+
## Open Dashboard with URL
71
+
72
+
If you don't want to open a web browser, run the dashboard command with the url flag to emit a URL:
73
+
74
+
```shell
75
+
minikube dashboard --url
76
+
```
77
+
62
78
## Create a Deployment
63
79
64
80
A Kubernetes [*Pod*](/docs/concepts/workloads/pods/) is a group of one or more Containers,
0 commit comments