Scaling: Manual
Basic Syntax Usage
kubectl scale <resource-type> <resource-name> --replicas=<number>Scaling Deployment
β kubectl create deployment my-nginx --image=nginx
deployment.apps/my-nginx createdβ kubectl get deployment my-nginx
NAME READY UP-TO-DATE AVAILABLE AGE
my-nginx 1/1 1 1 32sOthers
References
Last updated