Skip to content

Commit 62ad84a

Browse files
authored
Update hello-minikube.md
1 parent 4129e07 commit 62ad84a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/en/docs/tutorials/hello-minikube.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,15 @@ recommended way to manage the creation and scaling of Pods.
9292

9393
1. Katacoda environment only: At the top of the terminal pane, click the plus sign, and then click open a new terminal.
9494

95-
2. Use the `kubectl create` command to create a Deployment that manages a Pod. The
95+
1. Use the `kubectl create` command to create a Deployment that manages a Pod. The
9696
Pod runs a Container based on the provided Docker image.
9797

9898

9999
```shell
100100
kubectl create deployment hello-node --image=registry.k8s.io/e2e-test-images/agnhost:2.39 -- /agnhost netexec --http-port=8080
101101
```
102102

103-
3. View the Deployment:
103+
1. View the Deployment:
104104

105105
```shell
106106
kubectl get deployments
@@ -113,7 +113,7 @@ Pod runs a Container based on the provided Docker image.
113113
hello-node 1/1 1 1 1m
114114
```
115115

116-
4. View the Pod:
116+
1. View the Pod:
117117

118118
```shell
119119
kubectl get pods
@@ -126,13 +126,13 @@ Pod runs a Container based on the provided Docker image.
126126
hello-node-5f76cf6ccf-br9b5 1/1 Running 0 1m
127127
```
128128

129-
5. View cluster events:
129+
1. View cluster events:
130130

131131
```shell
132132
kubectl get events
133133
```
134134

135-
6. View the `kubectl` configuration:
135+
1. View the `kubectl` configuration:
136136

137137
```shell
138138
kubectl config view

0 commit comments

Comments
 (0)