A tool for easily deploying Concourse in a single command.
$ AWS_ACCESS_KEY_ID=<access-key-id> \
AWS_SECRET_ACCESS_KEY=<secret-access-key> \
AWS_DEFAULT_REGION=<default-region> \
concourse-up deploy <your-project-name>
Concourse is easy to get started with, but as soon as you want your team to use it you've
previously had to learn BOSH. Teams who just want great CI shouldn't need to think about this.
The goal of concourse-up
is to hide the complexity of BOSH, while giving you all the benefits,
providing you with a single command for getting your Concourse up and keeping it running. You can read more about the rationale for this tool in this blog post.
- Deploys the latest version of Concourse CI on AWS, without you having to know anything about BOSH
- Idempotent deployment and simple upgrade (get the latest release and just deploy again)
- Supports https access by default using a user-provided certificate or auto-generating a self-signed one
- Supports custom domains for your Concourse URL
- Uses cost effective AWS spot instances where possible (BOSH will take care of the service)
- Uses precompiled BOSH packages to minimise install time
- Horizontal and vertical worker scaling
- Easy destroy and cleanup
- Deploy to any AWS region (note that internal configuration is always saved to an S3 bucket in
eu-west-1
)
- An authenticated AWS environment. This can be done by doing one of:
- Installing the AWS CLI and running
aws configure
- Exporting the following environment variables before running
concourse-up
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
AWS_DEFAULT_REGION
- Installing the AWS CLI and running
- Terraform 0.9.3 or newer
Download the latest release and install it into your $PATH:
Deploy a new Concourse with:
$ concourse-up deploy <your-project-name>
eg:
$ concourse-up deploy ci
...
DEPLOY SUCCESSFUL. Log in with:
fly --target ci login --concourse-url http://ci-concourse-up-1420669447.eu-west-1.elb.amazonaws.com --username admin --password abc123def456
A new deploy from scratch takes approximately 12 minutes.
To fetch information about your concourse-up
deployment:
$ concourse-up info <your-project-name>
To destroy a Concourse:
$ concourse-up destroy <your-project-name>
That's it!
By default concourse-up
deploys the BOSH director and Concourse VMs into eu-west-1
region. To change the region, use the --region
flag eg:
$ concourse-up deploy chimichanga --region us-east-1
Note that concourse-up
stores some internal configuration in an S3 bucket in eu-west-1
. This internal configuration is always stored in eu-west-1
regardless of the --region
flag.
By default concourse-up
deploys a single worker instance of the m3.xlarge
type. To increase the number of workers pass in the --workers
flag eg:
$ concourse-up deploy chimichanga --workers 3
You can also change the size of each worker instance using the --worker-size
flag. eg:
$ concourse-up deploy chimichanga --worker-size xlarge
The following table shows the allowed worker sizes and the corresponding AWS instance types
--worker-size | AWS Instance type |
---|---|
medium | m3.medium |
large | m3.large |
xlarge | m3.xlarge |
You can use a custom domain using the --domain
flag eg:
$ concourse-up deploy chimichanga --domain chimichanga.engineerbetter.com
In the example above concourse-up
will search for a Route 53 hosted zone that matches chimichanga.engineerbetter.com
or engineerbetter.com
and add a record to the longest match (chimichanga.engineerbetter.com
in this example).
By default concourse-up
will generate a self-signed cert using the given domain. If you'd like to provide your own certificate instead, pass the cert and private key as strings using the --tls-cert
and --tls-key
flags respectively. eg:
$ concourse-up deploy chimichanga \
--domain chimichanga.engineerbetter.com \
--tls-cert "$(cat chimichanga.engineerbetter.com.crt)" \
--tls-key "$(cat chimichanga.engineerbetter.com.key)"
Patch releases of concourse-up
are compiled, tested and released automatically whenever a new stemcell or component release appears on bosh.io.
To upgrade your Concourse, grab the latest release and run concourse-up deploy <your-project-name>
again.
By default, concourse-up
deploys to the AWS eu-west-1 (Ireland) region, and uses spot instances for the Concourse VMs. The estimated monthly cost is as follows:
Component | Size | Count | Price (USD) |
---|---|---|---|
BOSH director | t2.medium | 1 | 36.50 |
Web Server | m3.medium (spot) | 1 | 10.80 |
Worker | m3.xlarge (spot) | 1 | 48.47 |
RDS instance | db.t2.small | 1 | 28.47 |
Load balancer | - | 1 | 20.44 |
Total | 144.68 |
concourse-up
first creates an S3 bucket to store its own configuration and saves a config.json
file there.
It then uses Terraform to deploy the following infrastructure:
- A VPC, with subnets and routing
- A load balancer
- An S3 bucket which BOSH uses as a blobstore
- An IAM user that can access the blobstore
- An IAM user that can deploy EC2 instances and update load balancers
- An AWS keypair for BOSH to use when deploying VMs
- An RDS instance (default: db.t2.small) for BOSH and Concourse to use
- A security group to allow access to the BOSH director from your local IP
- A security group for BOSH-deployed VMs
- A security group to allow access to the Concourse web server from the internet
- A security group to allow access to the RDS database from BOSH and it's VMs
Once the terraform step is complete, concourse-up
deploys a BOSH director on an t2.medium instance, and then uses that to deploy a Concourse with the following settings:
- One m3.medium spot for the Concourse web server
- One m3.xlarge spot instance used as a Concourse worker
- Access via a load balancer over HTTP and HTTPS using a user-provided certificate, or an auto-generated self-signed certificate if one isn't provided.
If you'd like to run concourse-up with it's own IAM account, create a user with the following permissions:
Tests use the Ginkgo Go testing framework. The tests require you to have set up AWS authentication locally.
Install ginkgo and run the tests with:
$ go get github.com/onsi/ginkgo/ginkgo
$ ginkgo -r
CI Pipeline (deployed with Concourse Up!)