Merge pull request #26162 from CKchen0726/hello_minikube

add some necessary description after running command 'minikube dashboard'
This commit is contained in:
Kubernetes Prow Robot 2021-03-04 16:26:22 -08:00 committed by GitHub
commit 29196d55c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -59,6 +59,22 @@ If you installed minikube locally, run `minikube start`.
4. Katacoda environment only: Type `30000`, and then click **Display Port**.
{{< note >}}
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.
If you are running in an environment as root, see [Open Dashboard with URL](/docs/tutorials/hello-minikube#open-dashboard-with-url).
To stop the proxy, run `Ctrl+C` to exit the process. The dashboard remains running.
{{< /note >}}
## Open Dashboard with URL
If you don't want to open a web browser, run the dashboard command with the url flag to emit a URL:
```shell
minikube dashboard --url
```
## Create a Deployment
A Kubernetes [*Pod*](/docs/concepts/workloads/pods/) is a group of one or more Containers,