Small fixes for the hello minikube tutorial

Co-authored-by: Tim Bannister <tim@scalefactory.com>
pull/42025/head
Dmitry Shurupov 2023-12-07 11:21:22 +07:00
parent 9508871b5b
commit a76c8e718f
1 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,7 @@ Now, switch back to the terminal where you ran `minikube start`.
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](#open-dashboard-with-url).
To find out how to avoid directly invoking the browser from the terminal and get a URL for the web dashboard, see the "URL copy and paste" tab.
By default, the dashboard is only accessible from within the internal Kubernetes virtual network.
The `dashboard` command creates a temporary proxy to make the dashboard accessible from outside the Kubernetes virtual network.
@ -73,7 +73,7 @@ You can run the `dashboard` command again to create another proxy to access the
{{% /tab %}}
{{% tab name="URL copy and paste" %}}
If you don't want minikube to open a web browser for you, run the dashboard command with the
If you don't want minikube to open a web browser for you, run the `dashboard` subcommand with the
`--url` flag. `minikube` outputs a URL that you can open in the browser you prefer.
Open a **new** terminal, and run:
@ -82,7 +82,7 @@ Open a **new** terminal, and run:
minikube dashboard --url
```
Now, switch back to the terminal where you ran `minikube start`.
Now, you can use this URL and switch back to the terminal where you ran `minikube start`.
{{% /tab %}}
{{< /tabs >}}