Helper for registering new task definitions on AWS ECS and updating associated services.
Project description
ecs-task
ecs-task
is an opinionated, but flexible tool for deploying to Amazon Web Service's Elastic Container Service.
It is built on the following premises:
- ECS Services, load balancers, auto-scaling, etc. are managed elsewhere, e.g. Terraform, Cloudformation, etc.
- Deploying to ECS is defined as:
- Update task definition with new image tag
- [Optional] Running any number of one-off Tasks, e.g. Django database migrations.
- [Optional] Updating Services to use the new Task Definition.
- [Optional] Updating Cloudwatch Event Targets to use the new Task Definition.
- Deregister old Task Definitions.
- Applications manage their own Task/Container definitions and can deploy themselves to a pre-defined ECS Cluster.
- The ability to rollback is important and should be as easy as possible.
Installation
pip install ecs-task
(Optionally, just copy ecs_task.py
to your project and install boto3
).
Usage
This module is made up of a single class, ecs_task.ECSTask
which is designed to be extended in your project. A basic example:
#!/usr/bin/env python
from ecs_task import ECSTask
class WebTask(ECSTask):
task_definition = {
"family": "web",
"executionRoleArn": EXECUTION_ROLE_ARN,
"containerDefinitions": [
{
"name": "web",
"image": "my_image:{image_tag}",
"portMappings": [{"containerPort": 8080}],
"cpu": 1024,
"memory": 1024,
}
],
}
update_services = [{"service": "web", "cluster": "my_cluster",}]
if __name__ == "__main__":
WebTask().main()
You could save this as _ecs/web_dev.py
and then execute it with python -m _ecs.web_dev --help
usage: web_dev.py [-h] {deploy,rollback,debug} ...
ECS Task
positional arguments:
{deploy,rollback,debug}
deploy Register new task definitions using `image_tag`.
Update defined ECS Services, Event Targets, and run
defined ECS Tasks
rollback Deactivate current task definitions and rollback all
ECS Services and Event Targets to previous active
definition.
debug Dump JSON generated for class attributes.
optional arguments:
-h, --help show this help message and exit
Class attributes
A sub-class of ECSTask
must include a task_definition
to do anything. Any other attributes are optional. Each attribute is designed to be a 1-to-1 mapping to an AWS API endpoint via boto3
. The values you provide will be passed as keyword arguments to the associated method with the correct Task Definition inserted. Any attribute that takes a list can make multiple calls to the given API.
task_definition
: (dict)ecs.register_task_definition
docsupdate_services
(list)ecs.update_service
docsrun_tasks
(list)ecs.run_task
docsevents__put_targets
(list)events.put_targets
docs
Command Interface
Each class is intended to be "executable" by calling .main()
. Multiple class instances can be called in a given file by using:
if __name__ == "__main__":
for klass in [WebTask, WorkerTask]:
klass().main()
debug
Just prints the value of each class attribute to the console. Useful if you're doing some class inheritance and want to verify what you have before running against AWS.
deploy
The deploy
subcommand accepts an additional argument, image_tag
which is used to update any Container Definitions in the task which have the {image_tag}
placeholder. It will:
- Register a new Task Definition
- Run Tasks (as defined in
run_tasks
) - Update Services (as defined in
update_services
) - Update Event Targets (as defined in
events__put_targets
) - Deregister any active Task Definitions older than
active_task_count
(by default,5
)
rollback
- Deregister the latest active Task Definition
- Update Services (as defined in
update_services
) with the previous active Task Definition - Update Event Targets (as defined in
events__put_targets
) with the previous active Task Definition
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for ecs_task-0.2.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81e1015e11d1d7307422fa8d80d7cb49835ac8d6632714025240332537c989a8 |
|
MD5 | 44c2f6fe43f8909ccad6008a4dbeaa6c |
|
BLAKE2b-256 | a9162bc3e99d9ff1d61d3f23120612c13ee6f1b6fb5a1311aff28a56f8f53ea0 |