Amazon EC2 Container Service Plugin - Jenkins Wiki

Amazon EC2 Container Service Plugin View Amazon EC2 Container Service plugin on the plugin site for more information. Use Amazon ECS Containers to set...

21 downloads 564 Views 278KB Size
Amazon EC2 Container Service Plugin This plugin is up for adoption. Want to help improve this plugin? Click here to learn more!

Use Amazon ECS Containers to setup (docker-based) elastic build executors.

Jenkins Amazon EC2 Container Service Plugin About Amazon EC2 Container Service (ECS) is AWS' service for Docker container orchestration to let you deploy Docker based applications on a cluster. The Jenkins Amazon EC2 Container Service plugin let you use Amazon ECS Container service to manage Jenkins cloud slaves. Jenkins delegates to Amazon ECS the orchestrations the execution builds on Docker based slaves. Each Jenkins build is executed on a dedicated Docker container that is wiped-out at the end of the build. The ECS cluster is composed of Amazon EC2 virtual machines instantiated within the boundaries the user's account (typically in an Amazon VPC). These virtual machines can be declared statically or can be managed dynamically by AWS ECS thanks to AWS Auto Scaling and AWS CloudFormation. The later Jenkins slaves are connected to the Jenkins master using the JNLP protocol.

Requirements Jenkins version 1.609 or later AWS account with permissions to create an ECS cluster

Installation Navigate to the "Plugin Manager" screen, install the "Amazon EC2 Container Service" plugin and restart Jenkins.

Configuration Amazon ECS cluster As a pre-requisite, you must have created an Amazon ECS cluster with associated ECS instances. These instances can be statically associated with the ECS cluster or can be dynamically created with Amazon Auto Scaling. The Jenkins Amazon EC2 Container Service plugin will use this ECS cluster and will create automatically the required Task Definition.

Jenkins System Configuration Navigate to the "Configure System" screen. In the "Jenkins Location" section, ensure that the "Jenkins URL" is reachable from the the container instances of the Amazon ECS cluster. See the section "Network and firewalls" for more details.

If the global Jenkins URL configuration does not fit your needs (e.g. if your ECS slaves must reach Jenkins through some kind of tunnel) you can also override the Jenkins URL in the Advanced Configuration of the ECS cloud.

At the bottom of the screen, click on "Add a new Cloud" and select "Amazon EC2 Container Service Cloud".

Amazon EC2 Container Service Cloud Then enter the configuration details of the Amazon EC2 Container Service Cloud: Name: name for your ECS cloud (e.g. `ecs-cloud`) Amazon ECS Credentials: Amazon IAM Access Key with privileges to create Task Definitions and Tasks on the desired ECS cluster ECS Cluster: desired ECS cluster on which Jenkins will send builds as ECS tasks ECS Template: click on "Add" to create the desired ECS template or templates

Advanced Configuration Tunnel connection through: tunnelling options (when Jenkins runs behind a load balancer...). Alternative Jenkins URL: The URL used as the Jenkins URL within the ECS containers of the configured cloud. Can be used to override the default Jenkins URL from global configuration if needed.

ECS Slave Templates One or several ECS slave template can be defined for the Amazon EC2 Container Service Cloud. The main reason to create more than one ECS slave template is to use several Docker image to perform build (e.g. java-build-tools, php-build-tools...) Template name is used (prefixed with the cloud's name) for the task definition in ECS. Label: slave labels used in conjunction with the job level configuration "Restrict where the project can be run / Label expression". ECS slave label could identify the Docker image used for the slave (e.g. `docker` for the jenkinsci/jnlp-slave). Docker image: identifier of the Docker image to use to create the slaves Filesystem root: working directory used by Jenkins (e.g. `/home/jenkins/`). Memory: number of MiB of memory reserved for the container. If your container attempts to exceed the memory allocated here, the container is killed. The number of cpu units to reserve for the container. A container instance has 1,024 cpu units for every CPU core. Advanced Configuration Override entrypoint: overwritten Docker image entrypoint. Container command can't be overriden as it is used to pass jenkins slave connection parameters.

JVM arguments: additional arguments for the JVM, such as `-XX:MaxPermSize` or GC options.

Network and firewalls Running the Jenkins master and the ECS container instances in the same Amazon VPC and in the same subnet is the simplest setup and default settings will work out-of-the-box.

Firewalls If you enable network restrictions between the Jenkins master and the ECS cluster container instances, Fix the TCP listen port for JNLP slaves of the Jenkins master (e.g. `5000`) navigating in the "Manage Jenkins / Configure Global Security" screen Allow TCP traffic from the ECS cluster container instances to the Jenkins master on the listen port for JNLP slaves (see above) and the HTTP(S) port.

Network Address Translation and Reverse Proxies In case of Network Address Translation rules between the ECS cluster container instances and the Jenkins master, ensure that the JNLP slaves will use the proper hostname to connect to the Jenkins master doing on of the following: Define the proper hostname of the Jenkins master defining the system property `hudson.TcpSlaveAgentListener.hostName` in the launch command Use the advanced configuration option "Tunnel connection through" in the configuration of the Jenkins Amazon EC2 Container Service Cloud (see above).

IAM role We recommend you create a dedicated amazon IAM role to delegate Jenkins access to your ECS cluster. ecs:DescribeTaskDefinition Effect

Action

Resource

Allow

ecs:ListClusters

*

Allow

ecs:DescribeContainerInstances

*

Allow

ecs:RegisterTaskDefinition

*

Allow

ecs:ListTaskDefinitions

*

Allow

ecs:DescribeTaskDefinition

*

Allow

ecs:RunTask

arn:aws:ecs:::task-definition/-