File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
content/en/docs/tasks/run-application Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ a Deployment that runs the nginx:1.14.2 Docker image:
80
80
NewReplicaSet: nginx-deployment-1771418926 (2/2 replicas created)
81
81
No events.
82
82
83
- 1 . List the pods created by the deployment:
83
+ 1 . List the Pods created by the deployment:
84
84
85
85
kubectl get pods -l app=nginx
86
86
@@ -113,17 +113,17 @@ specifies that the deployment should be updated to use nginx 1.16.1.
113
113
114
114
## Scaling the application by increasing the replica count
115
115
116
- You can increase the number of pods in your Deployment by applying a new YAML
116
+ You can increase the number of Pods in your Deployment by applying a new YAML
117
117
file. This YAML file sets ` replicas ` to 4, which specifies that the Deployment
118
- should have four pods :
118
+ should have four Pods :
119
119
120
120
{{< codenew file="application/deployment-scale.yaml" >}}
121
121
122
122
1 . Apply the new YAML file:
123
123
124
124
kubectl apply -f https://k8s.io/examples/application/deployment-scale.yaml
125
125
126
- 1 . Verify that the Deployment has four pods :
126
+ 1 . Verify that the Deployment has four Pods :
127
127
128
128
kubectl get pods -l app=nginx
129
129
You can’t perform that action at this time.
0 commit comments