Skip to content

Commit 8e4951c

Browse files
authored
Merge pull request #23898 from varadaprasanth/patch-2
Update run-stateless-application-deployment.md
2 parents 87e2300 + 42f23e7 commit 8e4951c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/en/docs/tasks/run-application/run-stateless-application-deployment.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ a Deployment that runs the nginx:1.14.2 Docker image:
8080
NewReplicaSet: nginx-deployment-1771418926 (2/2 replicas created)
8181
No events.
8282

83-
1. List the pods created by the deployment:
83+
1. List the Pods created by the deployment:
8484

8585
kubectl get pods -l app=nginx
8686

@@ -113,17 +113,17 @@ specifies that the deployment should be updated to use nginx 1.16.1.
113113

114114
## Scaling the application by increasing the replica count
115115

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
117117
file. This YAML file sets `replicas` to 4, which specifies that the Deployment
118-
should have four pods:
118+
should have four Pods:
119119

120120
{{< codenew file="application/deployment-scale.yaml" >}}
121121

122122
1. Apply the new YAML file:
123123

124124
kubectl apply -f https://k8s.io/examples/application/deployment-scale.yaml
125125

126-
1. Verify that the Deployment has four pods:
126+
1. Verify that the Deployment has four Pods:
127127

128128
kubectl get pods -l app=nginx
129129

0 commit comments

Comments
 (0)