How to scale an application (deplyoment) so it runs more than one instance of the application?
Answer
To run two instances of the applicaation?
kubectl scale deployment --replicas=2
You can specify any other number, given that your application knows how to scale.