We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the ecs handler starts a fixed number of 1 tasks (desired count). Yet, in many cases, a variable number of tasks needs to be started.
Proposal: Add new environment variable (e.g. ECS_TASK_DESIRED_COUNT) which defaults to 1, but may be set excplicitly to any number > 1
function start (ecs_handlyer.py) passes desiredCount=1 to update_service()
start
ecs_handlyer.py
desiredCount=1
update_service()
... def start(self, aws_tags: List[Dict]) -> None: ... self.ecs.update_service( cluster=cluster_name, service=service_name, desiredCount=1 ) ...
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
SUMMARY
Currently, the ecs handler starts a fixed number of 1 tasks (desired count).
Yet, in many cases, a variable number of tasks needs to be started.
Proposal:
Add new environment variable (e.g. ECS_TASK_DESIRED_COUNT) which defaults to 1, but may be set excplicitly to any number > 1
ISSUE TYPE
Additional context
function
start
(ecs_handlyer.py
) passesdesiredCount=1
toupdate_service()
The text was updated successfully, but these errors were encountered: