David
David

Reputation: 673

Spring Boot Microservices Deployment

Has anyone deployed multiple instances of the same microservice? If so, how are you managing such deployments?

Upvotes: 0

Views: 856

Answers (3)

aksss
aksss

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

daniel.eichten
daniel.eichten

Reputation: 2555

We are wrapping up everything in docker containers using Kubernetes to manage multiple instances of those.

Upvotes: 1

Related Questions