0 votes
in Kubernetes K8s by
Command to scale deploayment named foobardeployment to 2 replicas

1 Answer

0 votes
by

kubectl scale deployment foobardeployment --replicas=2 # scale that to 2 replicas  

...