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
@@ -37,116 +37,151 @@ See [Installing Minikube](/docs/tasks/tools/install-minikube/).
37
37
This brief demo guides you on how to start, use, and delete Minikube locally. Follow the steps given below to start and explore Minikube.
38
38
39
39
1. Start Minikube and create a cluster:
40
-
```shell
40
+
41
+
```shell
41
42
minikube start
42
-
```
43
-
The output is similar to this:
43
+
```
44
44
45
-
```
46
-
Starting local Kubernetes cluster...
47
-
Running pre-create checks...
48
-
Creating machine...
49
-
Starting local Kubernetes cluster...
50
-
```
51
-
For more information on starting your cluster on a specific Kubernetes version, VM, or container runtime, see [Starting a Cluster](#starting-a-cluster).
45
+
The output is similar to this:
46
+
47
+
```
48
+
Starting local Kubernetes cluster...
49
+
Running pre-create checks...
50
+
Creating machine...
51
+
Starting local Kubernetes cluster...
52
+
```
53
+
54
+
For more information on starting your cluster on a specific Kubernetes version, VM, or container runtime, see [Starting a Cluster](#starting-a-cluster).
52
55
53
56
2. Now, you can interact with your cluster using kubectl. For more information, see [Interacting with Your Cluster](#interacting-with-your-cluster).
54
57
55
-
Let’s create a Kubernetes Deployment using an existing image named `echoserver`, which is a simple HTTP server and expose it on port 8080 using `--port`.
Let’s create a Kubernetes Deployment using an existing image named `echoserver`, which is a simple HTTP server and expose it on port 8080 using `--port`.
0 commit comments