Skip to content

Commit 8d6d1c5

Browse files
committed
Set scale state to 2 pods instead of 3
1 parent 5ec151a commit 8d6d1c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

workshop/content/exercises/04-scale.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ Unless the deployment is deleted, app pods will always be created to satisfy the
2323
Scaling an application is very simple. You don't need to think about how many to add or remove.
2424
Instead, you specify the number of instances you want for the Deployment, and Kubernetes will automatically scale the app to the desired state.
2525

26-
Currently, the tce-swag application only has one instance, let's scale the app to have 3 instances.
26+
Currently, the tce-swag application only has one instance, let's scale the app to have 2 instances.
2727
```execute
28-
kubectl scale deployment/tce-swag --replicas=3
28+
kubectl scale deployment/tce-swag --replicas=2
2929
```
30-
This will update the Deployment and scale to 3 pods.
30+
This will update the Deployment and scale to 2 pods.
3131
Let's confirm
3232

3333
```execute

0 commit comments

Comments
 (0)