Kubernetes

How to scale an application (deplyoment) so it runs more than one instance of the application?

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

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.