File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
content/en/docs/tutorials Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -92,15 +92,15 @@ recommended way to manage the creation and scaling of Pods.
92
92
93
93
1. Katacoda environment only: At the top of the terminal pane, click the plus sign, and then click open a new terminal.
94
94
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
96
96
Pod runs a Container based on the provided Docker image.
97
97
98
98
99
99
` ` ` shell
100
100
kubectl create deployment hello-node --image=registry.k8s.io/e2e-test-images/agnhost:2.39 -- /agnhost netexec --http-port=8080
101
101
` ` `
102
102
103
- 3 . View the Deployment:
103
+ 1 . View the Deployment:
104
104
105
105
` ` ` shell
106
106
kubectl get deployments
@@ -113,7 +113,7 @@ Pod runs a Container based on the provided Docker image.
113
113
hello-node 1/1 1 1 1m
114
114
` ` `
115
115
116
- 4 . View the Pod:
116
+ 1 . View the Pod:
117
117
118
118
` ` ` shell
119
119
kubectl get pods
@@ -126,13 +126,13 @@ Pod runs a Container based on the provided Docker image.
126
126
hello-node-5f76cf6ccf-br9b5 1/1 Running 0 1m
127
127
` ` `
128
128
129
- 5 . View cluster events:
129
+ 1 . View cluster events:
130
130
131
131
` ` ` shell
132
132
kubectl get events
133
133
` ` `
134
134
135
- 6 . View the ` kubectl` configuration:
135
+ 1 . View the ` kubectl` configuration:
136
136
137
137
` ` ` shell
138
138
kubectl config view
You can’t perform that action at this time.
0 commit comments