Continuous Delivery to Amazon ECS - AWS August Webinar Series

Preview:

Citation preview

© 2015, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2015, Amazon Web Services, Inc. or its Affiliates. All rights reserved.

Jeremy Cowan, Solutions Architect

August 30th, 2016

Continuous Delivery to Amazon EC2 Container Service

What is continuous delivery?

• Software development practice where code changes are automatically built, tested, and prepared for a release to production.

• Extends continuous integration by deploying all code changes to a testing environment and/or a production environment after the build stage.

• Developers approve the update to production when they are ready.• Different from continuous deployment, where the push to  production

happens automatically without explicit approval.• Continuous delivery lets developers automate testing beyond just

unit tests to verify application updates across multiple dimensions before deploying.

Why use containers?

• Process isolation• Portable• Fast• Efficient

Why use containers for continuous delivery?

• Roll out features as quickly as possible• Predictable and reproducible environment• Fast feedback

Development and deployment workflow

Code repository

Build environment

Test environment

Deployment environment

Source

Stage 1 - Source

Development environment

Code repository

Source

Docker and Docker Toolbox

• Docker (Linux > 3.10) • Docker Toolbox or Docker Beta (OS X, Windows)• Define app environment with Dockerfile

Dockerfile

FROM ruby:2.2.2RUN apt-get update -qq && apt-get install -y build-essential libpq-devRUN mkdir -p /opt/webWORKDIR /tmpADD Gemfile /tmp/ADD Gemfile.lock /tmp/RUN bundle installADD . /opt/webWORKDIR /opt/web

Docker Compose

Define and run multi-container applications:1. Define app environment with Dockerfile2. Define services that make up your app in docker-

compose.yml3. Run docker-compose up to start and run entire app

docker-compose.yml

proxy: build: ./proxy ports: - "80:80" links: - webweb: build: ./web command: bundle exec rails server -b 0.0.0.0 environment: - SECRET_KEY_BASE=secretkey expose: - "3000"

Stage 2 - Build

Build environment

Build environment

Build environment

Containers can be used in two ways: • Execution environment for the build jobs • Output of the build process itself

Containers as build execution environment

Containers as build artifacts

Amazon EC2 Container Registry

• Security• IAM Resource-based Policies• CloudTrail Audit Logs• Images encrypted at transit and at rest

• Easily Manage & Deploy Images• Tight Integration with ECS• Integration with Docker Toolset• Management Console & AWS CLI

• Reliability & Performance• S3 Backed

Stage 3 - Test

Test environment

Test environment

Running test inside a container

Usual Docker commands available within your test environmentRun the container with the commands necessary to execute your tests, e.g.:docker run web bundle exec rake test

Running test against a container

Start a container running in detached mode with an exposed port serving your appRun browser tests or other black box tests against the container, e.g. headless browser tests

Stage 4 - Deploy

Deployment environment

Deployment environment

Amazon EC2 Container Service

• Highly scalable container management service• Easily manage clusters for any scale• Flexible container placement• Integrated with other AWS services• Extensible

• Amazon ECS concepts• Cluster and container instances• Task definition and task

Recent Enhancements to ECS

• Task Roles• Dynamic Port Mapping and path based routing• Auto-scaling policies for services• Network modes for Docker

AWS Elastic Beanstalk

• Deploy and manage applications without worrying about the infrastructure

• AWS Elastic Beanstalk manages your database, Elastic Load Balancing (ELB), Amazon ECS cluster, monitoring and logging

• Docker support• Single container (on Amazon EC2)• Multi container (on Amazon ECS)

Amazon ECS CLI

• Easily create Amazon ECS clusters & supporting resources such as EC2 instances

• Run Docker Compose configuration files on Amazon ECS

• Available today – http://amzn.to/1jBf45a

Configuring the ECS CLI

# Configure the CLI using environment variables> export AWS_ACCESS_KEY_ID=<my_access_key>> export AWS_SECRET_ACCESS_KEY=<my_secret_key> > ecs-cli configure --region us-east-1 --access-key $AWS_ACCESS_KEY_ID --secret-key $AWS_SECRET_ACCESS_KEY --cluster ecs-cli-demo

# Configure the CLI using an existing AWS CLI profile> ecs-cli configure --region us-west-2 --profile ecs-profile --cluster ecs-cli-demo

Deploy and scale Compose app with ECS CLI

# Deploy a Compose app as a Task or as a Service> ecs-cli compose up> ecs-cli compose ps > ecs-cli compose service create> ecs-cli compose service start

# Scale a Compose app deployed as a Task or as a Service> ecs-cli compose scale n> ecs-cli compose service scale n

Continuous Delivery Workflows

Continuous delivery to ECS with Jenkins

4. Push image to Docker registry

2. Build image from sources 3. Run test on image

1. Code push triggers build

5. Update Service

6. Pull image

Continuous delivery to ECS with Jenkins

Easy DeploymentDevelopers – Merge into master, done!

Jenkins Build StepsTrigger via Webhooks, Monitoring, LambdaBuild Docker image via Build and Publish plugin Push Docker image into RegistryRegister Updated Job with ECS API

Continuous delivery to ECS with CodePipeline

1. Code push triggers pipeline

2. Lambda function creates EC2 instance

3. Image is built and pushed to ECR

4. Lambda function terminates EC2 instance

5. Lambda function deploy new task revision to ECS

Continuous delivery to ECS with CodePipeline

• Lambda custom actions• Create and terminate EC2 instance• Update ECS service

• EC2 instance uses user data to build an image and push it to Amazon ECR

Amazon ECS continuous delivery partners

Continuous delivery to ECS with Shippable

Demo

Thank you!

Recommended