Update minikube.md (#14662)

Fix linking in same document for preventing 404 errors because the url parts get duplicated now.
e.g: https://kubernetes.io/docs/setup/minikube/docs/setup/minikube/#interacting-with-your-cluster
fix would be: https://kubernetes.io/docs/setup/minikube/#interacting-with-your-cluster
This commit is contained in:
Mario Groß
2019-06-01 07:54:22 +02:00
committed by Kubernetes Prow Robot
parent 0cb3f4a13e
commit 20f29ca3f0
+4 -4
View File
@@ -47,9 +47,9 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
Creating machine... Creating machine...
Starting local Kubernetes cluster... Starting local Kubernetes cluster...
``` ```
For more information on starting your cluster on a specific Kubernetes version, VM, or container runtime, see [Starting a Cluster](docs/setup/minikube/#starting-a-cluster). For more information on starting your cluster on a specific Kubernetes version, VM, or container runtime, see [Starting a Cluster](#starting-a-cluster).
2. Now, you can interact with your cluster using kubectl. For more information, see [Interacting with Your Cluster](docs/setup/minikube/#interacting-with-your-cluster). 2. Now, you can interact with your cluster using kubectl. For more information, see [Interacting with Your Cluster](#interacting-with-your-cluster).
Lets create a Kubernetes Deployment using an existing image named `echoserver`, which is a simple HTTP server and expose it on port 8080 using `--port`. Lets create a Kubernetes Deployment using an existing image named `echoserver`, which is a simple HTTP server and expose it on port 8080 using `--port`.
```shell ```shell
@@ -144,7 +144,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
Stopping "minikube"... Stopping "minikube"...
"minikube" stopped. "minikube" stopped.
``` ```
For more information, see [Stopping a Cluster](docs/setup/minikube/#stopping-a-cluster). For more information, see [Stopping a Cluster](#stopping-a-cluster).
10. Delete the local Minikube cluster: 10. Delete the local Minikube cluster:
```shell ```shell
minikube delete minikube delete
@@ -154,7 +154,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
Deleting "minikube" ... Deleting "minikube" ...
The "minikube" cluster has been deleted. The "minikube" cluster has been deleted.
``` ```
For more information, see [Deleting a cluster](/docs/setup/minikube/#deleting-a-cluster). For more information, see [Deleting a cluster](#deleting-a-cluster).
## Managing your Cluster ## Managing your Cluster