Real-world CodePipeline CI/CD examples
AWS CodePipeline helps us to orchestrate CI/CD pipelines. To implement real-world pipelines, CodePipeline calls additional AWS services to do the work. E.g., CodeBuild to run arbitrary scripts, CloudFormation to create or update stacks, or CodeDeploy to deploy software to running EC2 instances. A pipeline is connected to sources such as a git repository (Bitbucket, GitHub, and GitHub Enterprise Server, CodeCommit), an S3 bucket, or an ECR repository. If a source changes, the pipeline executes.
But how do real-world pipelines look like? In this post, I share pipelines with you, from simple to complex.
Simple but bold pipeline
The following pipeline connects to a GitHub repository. CodeBuild is used to build a Docker image, and CodeBuild is used to push the Docker image and deploy it into production.
This pipeline comes with several disadvantages:
- It runs no unit tests
- It runs no acceptance tests in a pre-prod environment
Manual acceptance testing
The following pipeline excerpt shows a pipeline where manual acceptance tests prevent bugs from reaching production. Not perfect, but better than before!
We could still do better by running automated acceptance tests, right?
The following video goes into details and includes demos:
- CodePipeline 101
- Real-world CodePipeline examples
- Demo: marbot pipeline
- Pitfall: Update pipeline in pipeline
Phased rollout
My last example shows a pipeline excerpt that AWS uses to deploy parts of CodePipeline itself. You can see how new changes are rolled out in phases—starting with a single region to lower the risk.
I used a similar approach in a pipeline to deploy an environment per customer (the application was missing multi-tenant capabilities).
Summary
CodePipeline is the pipeline orchestrator. CodePipeline calls other AWS services to implement a CI/CD pipeline.