|
How to scale replicas of a Kubernetes Deployment
Author: Venkata Sudhakar
The below example shows how to scale replicas of a Kubernetes Deployment. You can observe Kubernetes is either terminating existing Pods or creating new Pods depending on the scaling requirements.
01 | $ kubectl get deployments |
02 | NAME READY UP-TO-DATE AVAILABLE AGE |
05 | NAME READY STATUS RESTARTS AGE |
06 | http-774bb756bb-5rrcm 1 / 1 Running 0 104s |
07 | http-774bb756bb-fkm8l 1 / 1 Running 0 7m36s |
08 | http-774bb756bb-g94pf 1 / 1 Running 0 104s |
09 | http-774bb756bb-qrhw8 1 / 1 Running 0 7m36s |
11 | $ kubectl scale --replicas= 2 deployment http |
12 | deployment.apps/http scaled |
15 | NAME READY STATUS RESTARTS AGE |
16 | http-774bb756bb-fkm8l 1 / 1 Running 0 8m3s |
17 | http-774bb756bb-g94pf 0 / 1 Terminating 0 2m11s |
18 | http-774bb756bb-qrhw8 1 / 1 Running 0 8m3s |
21 | NAME READY STATUS RESTARTS AGE |
22 | http-774bb756bb-fkm8l 1 / 1 Running 0 8m8s |
23 | http-774bb756bb-qrhw8 1 / 1 Running 0 8m8s |
24 | $ kubectl scale --replicas= 5 deployment http |
25 | deployment.apps/http scaled |
28 | NAME READY STATUS RESTARTS AGE |
29 | http-774bb756bb-57jfk 0 / 1 ContainerCreating 0 5s |
30 | http-774bb756bb-fkm8l 1 / 1 Running 0 8m31s |
31 | http-774bb756bb-jjgkx 0 / 1 ContainerCreating 0 5s |
32 | http-774bb756bb-phmhd 0 / 1 ContainerCreating 0 5s |
33 | http-774bb756bb-qrhw8 1 / 1 Running 0 8m31s |
36 | NAME READY STATUS RESTARTS AGE |
37 | http-774bb756bb-57jfk 1 / 1 Running 0 22s |
38 | http-774bb756bb-fkm8l 1 / 1 Running 0 8m48s |
39 | http-774bb756bb-jjgkx 1 / 1 Running 0 22s |
40 | http-774bb756bb-phmhd 1 / 1 Running 0 22s |
41 | http-774bb756bb-qrhw8 1 / 1 Running 0 8m48s |
43 | $ kubectl get deployments |
44 | NAME READY UP-TO-DATE AVAILABLE AGE |
|
|