5.6 KiB
description | keywords | title | redirect_from | ||
---|---|---|---|---|---|
Setup & Prerequisites | aws, amazon, iaas, tutorial | Docker for AWS Setup & Prerequisites |
|
Prerequisites
- Access to an AWS account with permissions to use CloudFormation and creating the following objects. Full set of required permissions.
- EC2 instances + Auto Scaling groups
- IAM profiles
- DynamoDB Tables
- SQS Queue
- VPC + subnets and security groups
- ELB
- CloudWatch Log Group
- SSH key in AWS in the region where you want to deploy (required to access the completed Docker install)
- AWS account that support EC2-VPC (See the FAQ for details about EC2-Classic)
For more information about adding an SSH key pair to your account, please refer to the Amazon EC2 Key Pairs docs
Configuration
Docker for AWS is installed with a CloudFormation template that configures Docker in swarm-mode, running on instances backed custom AMIs. There are two ways you can deploy Docker for AWS. You can use the AWS Management Console (browser based), or use the AWS CLI. Both have the following configuration options.
Configuration options
KeyName
Pick the SSH key that will be used when you SSH into the manager nodes.
InstanceType
The EC2 instance type for your worker nodes.
ManagerInstanceType
The EC2 instance type for your manager nodes. The larger your swarm, the larger the instance size you should use.
ClusterSize
The number of workers you want in your swarm (0-1000).
ManagerSize
The number of Managers in your swarm. You can pick either 1, 3 or 5 managers. We only recommend 1 manager for testing and dev setups. There are no failover guarantees with 1 manager — if the single manager fails the swarm will go down as well. Additionally, upgrading single-manager swarms is not currently guaranteed to succeed.
We recommend at least 3 managers, and if you have a lot of workers, you should pick 5 managers.
EnableSystemPrune
Enable if you want Docker for AWS to automatically cleanup unused space on your swarm nodes.
When enabled, docker system prune
will run staggered every day, starting at 1:42AM UTC on both workers and managers. The prune times are staggered slightly so that not all nodes will be pruned at the same time. This limits resource spikes on the swarm.
Pruning removes the following:
- All stopped containers
- All volumes not used by at least one container
- All dangling images
- All unused networks
EnableCloudWatchLogs
Enable if you want Docker to send your container logs to CloudWatch. ("yes", "no") Defaults to yes.
WorkerDiskSize
Size of Workers's ephemeral storage volume in GiB (20 - 1024).
WorkerDiskType
Worker ephemeral storage volume type ("standard", "gp2").
ManagerDiskSize
Size of Manager's ephemeral storage volume in GiB (20 - 1024)
ManagerDiskType
Manager ephemeral storage volume type ("standard", "gp2")
Installing with the AWS Management Console
The simplest way to use the template is with the CloudFormation section of the AWS Management Console.
Go to the Release Notes page, and click on the "launch stack" button to start the deployment process.
Installing with the CLI
You can also invoke the Docker for AWS CloudFormation template from the AWS CLI:
Here is an example of how to use the CLI. Make sure you populate all of the parameters and their values:
$ aws cloudformation create-stack --stack-name teststack --template-url <templateurl> --parameters ParameterKey=KeyName,ParameterValue=<keyname> ParameterKey=InstanceType,ParameterValue=t2.micro ParameterKey=ManagerInstanceType,ParameterValue=t2.micro ParameterKey=ClusterSize,ParameterValue=1 --capabilities CAPABILITY_IAM
To fully automate installs, you can use the AWS Cloudformation API.
How it works
Docker for AWS starts with a CloudFormation template that will create everything that you need from scratch. There are only a few prerequisites that are listed above.
The CloudFormation template first creates a new VPC along with subnets and security groups. After the networking set-up completes, two Auto Scaling Groups are created, one for the managers and one for the workers, and the configured capacity setting is applied. Managers start first and create a quorum using Raft, then the workers start and join the swarm one at a time. At this point, the swarm is comprised of X number of managers and Y number of workers, and you can deploy your applications. See the deployment docs for your next steps.
If you increase the number of instances running in your worker Auto Scaling Group (via the AWS console, or updating the CloudFormation configuration), the new nodes that will start up will automatically join the swarm.
Elastic Load Balancers (ELBs) are set up to help with routing traffic to your swarm.
Logging
Docker for AWS automatically configures logging to Cloudwatch for containers you run on Docker for AWS. A Log Group is created for each Docker for AWS install, and a log stream for each container.
docker logs
and docker service logs
are not supported on Docker for AWS. Instead, you should check container in CloudWatch.
System containers
Each node will have a few system containers running on them to help run your swarm cluster. In order for everything to run smoothly, please keep those containers running, and don't make any changes. If you make any changes, Docker for AWS will not work correctly.