Deploying to Amazon ECS
Components
The deployment of Docker containers to the Amazon Elastic Container Service (ECS) involves several major components as follows:
Cluster – a logical grouping of container instances that you can place tasks on (see the next three), see Scheduling Amazon ECS Tasks
Task Definition – a description of an application that contains one or more container definitions, see Amazon ECS Task Definitions
Task – an instantiation of a task definition that is running on a container instance, see Amazon ECS Tasks
Service – a scheduler that ensures that the specified number of tasks are constantly running and rescheduled on failure, and optionally registered against an Elastic Load Balancing load balancer, see Amazon ECS Services
On this page:
Related Pages:
Workflow
The typical deployment workflow comprises two optional and one mandatory phases:
(Optional) Create an ECS Cluster and ECS Container Instances
An ECS cluster is the target environment to deploy Docker containers to. If you have explored ECS already, you might have a Default cluster available already in your AWS account. If you do not have one ore more clusters provisioned already, or if you want to isolate the additional containers in a separate cluster, you might need to create one first, which can be achieved in various ways, for example:
You can Launch one or more Amazon ECS Container Instances via the AWS Management Console
By default, your container instance launches into your default cluster. If you want to launch into your own cluster instead of the default, choose the Advanced Details list and paste the following script into the User data field, replacing your_cluster_name with the name of your cluster.
You can create the ECS Cluster and ECS Container Instances with Tasks for AWS
Create an ECS Cluster with the Amazon ECS Cluster task.
Create the ECS Container Instances with an appropriate AWS CloudFormation stack via the AWS CloudFormation Stack task - AWS provides two reference architectures as a starting point:
(Optional) Build and push a Docker image to a Docker registry
Your are going to deploy a Docker container based on a Docker image. This image might exist already, or you might want to create it during the build. The latter can be achieved with the Docker task in Bamboo (available as of Bamboo 5.8), which allows you to:
Run a Docker container
While useful to facilitate Docker within the build itself, running a Docker on the Bamboo agent by means of this action is usually not reasonable for production scenarios - you most likely want to deploy either a single Docker container or an entire service comprised of Docker containers by means of e.g. Tasks for AWS instead, see below.Push a Docker image to a Docker registry
You can also use the Amazon ECR Credentials task to push a Docker image to the Amazon Elastic Container Registry (Amazon ECR) with the native Bamboo Docker task - refer to How to push a Docker image to a repository in your Amazon ECR registry with the Bamboo Docker task for details.
Deploy a Docker image to ECS
This is the main and mandatory activity for using Amazon ECS. The three main options for deploying Docker containers to ECS are described in Scheduling Amazon ECS Tasks and available within Tasks for AWS accordingly:
Register a task definition
All three of the following task scheduling options require an available Amazon ECS Task Definition, which can be registered with the Amazon ECS Task Definition task.
Schedule a service
This is provided by the Create Service action of the Amazon ECS Service task.
Ideally suited for long running stateless services and applications
The service scheduler is ideally suited for long running stateless services and applications. The service scheduler ensures that the specified number of tasks are constantly running and reschedules tasks when a task fails (for example, if the underlying container instance fails for some reason). The service scheduler optionally also makes sure that tasks are registered against an Elastic Load Balancing load balancer. You can update your services that are maintained by the service scheduler, such as deploying a new task definition, or changing the running number of desired tasks. For more information, see Services.
Run a task
This is provided by the Run Task action of the Amazon ECS Task task.