Reputation: 673
Has anyone deployed multiple instances of the same microservice? If so, how are you managing such deployments?
Upvotes: 0
Views: 856
Reputation: 333
In cloud foundry, it's quite straightforward to scale an app to multiple instances once you deploy it.
For deploy -
cf push -f <deployment manifest file>
For scaling to multiple instances -
cf scale <your_app_name> -i <number_of_instances>
Upvotes: 1
Reputation: 2555
We are wrapping up everything in docker containers using Kubernetes to manage multiple instances of those.
Upvotes: 1