Skip to content

Commit 4129e07

Browse files
authored
Update hello-minikube.md
1 parent 3906c45 commit 4129e07

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

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

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,17 @@ tutorial has only one Container. A Kubernetes
9090
Pod and restarts the Pod's Container if it terminates. Deployments are the
9191
recommended way to manage the creation and scaling of Pods.
9292

93-
1. Use the `kubectl create` command to create a Deployment that manages a Pod. The
93+
1. Katacoda environment only: At the top of the terminal pane, click the plus sign, and then click open a new terminal.
94+
95+
2. Use the `kubectl create` command to create a Deployment that manages a Pod. The
9496
Pod runs a Container based on the provided Docker image.
97+
9598

9699
```shell
97100
kubectl create deployment hello-node --image=registry.k8s.io/e2e-test-images/agnhost:2.39 -- /agnhost netexec --http-port=8080
98101
```
99102

100-
2. View the Deployment:
103+
3. View the Deployment:
101104

102105
```shell
103106
kubectl get deployments
@@ -110,7 +113,7 @@ Pod runs a Container based on the provided Docker image.
110113
hello-node 1/1 1 1 1m
111114
```
112115

113-
3. View the Pod:
116+
4. View the Pod:
114117

115118
```shell
116119
kubectl get pods
@@ -123,13 +126,13 @@ Pod runs a Container based on the provided Docker image.
123126
hello-node-5f76cf6ccf-br9b5 1/1 Running 0 1m
124127
```
125128

126-
4. View cluster events:
129+
5. View cluster events:
127130

128131
```shell
129132
kubectl get events
130133
```
131134

132-
5. View the `kubectl` configuration:
135+
6. View the `kubectl` configuration:
133136

134137
```shell
135138
kubectl config view

0 commit comments

Comments
 (0)