Skip to content

Commit f948d81

Browse files
authored
Merge pull request #39190 from Jun10ng/add-reminder
Update hello-minikube.md
2 parents 5e2f1f2 + 62ad84a commit f948d81

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

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

Lines changed: 7 additions & 4 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. Katacoda environment only: At the top of the terminal pane, click the plus sign, and then click open a new terminal.
94+
9395
1. 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+
1. 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+
1. 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+
1. View cluster events:
127130

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

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

134137
```shell
135138
kubectl config view

0 commit comments

Comments
 (0)