Skip to content

Commit f7403f1

Browse files
author
Phillip Wittrock
authored
Merge pull request kubernetes#2422 from wmaintw/patch-1
Add code comment for "replicas"
2 parents 1e3981a + 87eae08 commit f7403f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/tutorials/stateless-application/deployment-scale.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ kind: Deployment
33
metadata:
44
name: nginx-deployment
55
spec:
6-
replicas: 4
6+
replicas: 4 # Update the replicas from 2 to 4
77
template:
88
metadata:
99
labels:
1010
app: nginx
1111
spec:
1212
containers:
1313
- name: nginx
14-
image: nginx:1.8 # Update the version of nginx from 1.7.9 to 1.8
14+
image: nginx:1.8
1515
ports:
1616
- containerPort: 80

0 commit comments

Comments
 (0)