Reputation: 327
I have created a microservice cluster on AWS ECS with four microservices, each one with its Docker images. But looking in the ESC cli I cannot find a way to scale these images.
My goal is to create an application responsible to scale this microservice, but I could not find a way to execute it, does anyone has any clue how can I scale the images?
Thanks.
Upvotes: 0
Views: 181
Reputation: 200990
You need to change the "desired count" in the ECS service. You would do this programmatically through the UpdateService
API.
Upvotes: 1