This project highlights the use of StackStorm in a generic, deployable CI/CD pipeline. It is built off of st2-workroom and can be deployed to a local Vagrant environment, deployed to Digital Ocean, or deployed to a local set of servers.
For use on: Debian/Ubuntu systems. If you would like to see this on a different platform, please let us know at [email protected]
This CI/CD Workflow is designed as a generic packaging and deployment pipeline. The aim here is to create a pipeline flexible enough to be able to push code of any type through, and prepare it for rapid deployment and management via StackStorm.
This workflow subscribes to the 'Convention over Configuration' view of the world. Any project should be able to be used by this pipeline, assuming it follows these conventions:
- CI Portion
- A project exists on GitHub, and has its outgoing webhook configured to send to StackStorm
- The project has two scripts designed to ensure the project is setup for CI
script/cisetup
- Prepares the build directory to run CI. Executed prior to CI beginscript/cibuild
- Commands to test the execute the CI build process.
- Project has been configured in on Jenkins Server
- Project has a post-install script (
script/post-inst
) to do any items post-package installation. - (NOTE: Any of the scripts can simply
exit 0
, but they need to exist)
- Consul has been configured to advertise servers with the following tags:
- 'appname::approle'
- 'appname::approle_canary'
- By default, appname is the project name, and approle is
app
The section below is aimed at helping guide new users at understanding how the solution was put designed.
This workflow was designed initially to cover the most generic use-case possible, and attempts to make assumptions about the operating environment that this could be used in. Specifically:
- The application language used should not be relevant to the pipeline
- The deploy mechanism must be native to the operating system
- Deploys should make best-effort at synchronous deployment, and also be eventually consistent
- Load Balancing: HAProxy
- Continuous Delivery
- Asset: OS Packages
- Strategy: Canary
- Continuous Integration Server: Jenkins
- Service Discovery: Consul
- Orchestration Layer: StackStorm
- Configuration Management: Puppet / Consul-Template
- Provisioning: Vagrant / EC2 / DigitalOcean
- User pushes new commit to GitHub
- [GitHub] Fires a webhook to StackStorm
- [StackStorm :: Web Hook] StackStorm receives the webhook, and matches it to an incoming rule to begin a CI Job
- [Jenkins] Clones application from GitHub
- [Jenkins] On build completion, sends a webhook back to StackStorm with Success/Failure
- [Jenkins :: Success] StackStorm kicks off packaging workflow to build an OS package from the application.
- [Package] StackStorm queries Consul for an available host to build a package
- [Package] StackStorm downloads the application from GitHub
- [Package] StackStorm queries the downloaded repository for metadata to build the package
- [Package] StackStorm packages up the repository using FPM
- [Package] StackStorm takes the package and inserts it into Freight (APT Repository), marking it eligible for download
- [Package] StackStorm cleans up all tempfiles and hands off to Deploy Workflow
- [Deploy :: Canary] StackStorm updates the currently advertised version of the application to deploy.
- [Deploy :: Canary] StackStorm queries all hosts that have been tagged as 'canary'
- [Deploy :: Canary] StackStorm tells all canary hosts a package has been updated, and updates the servers.
- User waits for any external alarms to fire (New Relic, Nagios, etc).
- If no failures, user deploys new package to production.
- [Deploy :: Production] StackStorm updates the currently advertised version to the currently deployed canary version
- [Deploy :: Production] StackStorm tells all production hosts a package has been updated, and updates the servers.