0

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

3 Answers 3

1

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>
Sign up to request clarification or add additional context in comments.

Comments

1

You can use Spring Cloud and Eureka Server for it.

https://spring.io/blog/2015/01/20/microservice-registration-and-discovery-with-spring-cloud-and-netflix-s-eureka

1 Comment

Thanks, used it before.
1

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

1 Comment

Nope! Not really! At least if you don't use Storage Claims.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.