Brigade: Event-based Scripting for Kubernetes
Script simple and complex workflows using JavaScript. Chain together containers, running them in parallel or serially. Fire scripts based on times, GitHub events, Docker pushes, or any other trigger. Brigade is the tool for creating pipelines for Kubernetes.
- JavaScript scripting
- Project-based management
- Configurable event hooks
- Easy construction of pipelines
- Check out the docs to get started.
The Brigade Technology Stack
- Brigade
❤️ JavaScript: Writing Brigade pipelines is as easy as writing a few lines of JavaScript. - Brigade
❤️ Kubernetes: Brigade is Kubernetes-native. Your builds are translated into pods, secrets, and services - Brigade
❤️ Docker: No need for special plugins or elaborate extensions. Brigade uses off-the-shelf Docker images to run your jobs. And Brigade also supports DockerHub webhooks. - Brigade
❤️ GitHub: Brigade comes with built-in support for GitHub, DockerHub, and other popular web services. And it can be easily extended to support your own services.
The design introduction introduces Brigade concepts and architecture.
Quickstart
- Install Brigade
- Create a Brigade project
- Write a Brigade script
- Execute the script
The easiest way to install Brigade into your Kubernetes cluster is to install it using Helm.
$ git clone https://github.com/Azure/brigade.git
$ cd brigade
$ helm install --name brigade ./chart/brigade
You will now have Brigade installed.
To create new projects, use the brigade-project
Helm chart. While inside the Git
repository cloned above, run these commands:
$ helm inspect values ./chart/brigade-project > myvalues.yaml
$ # edit myvalues.yaml
$ helm install --name my-project ./chart/brigade-project -f myvalues.yaml
When editing myvalues.yaml
, follow the instructions in that file for configuring
your new project. Once you have customized that file, you can install the project
based on your new configuration by passing it with -f myvalues.yaml
.
Now creating your first brigade.js
is as easy as this:
const { events } = require('brigadier')
events.on("exec", (brigadeEvent, project) => {
console.log("Hello world!")
})
Check out the tutorial for more on creating scripts.
In the future, Brigade will provide prebuilt
brig
binaries. But currently you need to build your own. Take a look at the Developer's Guide to learn more.
Assuming you named your project deis/empty-testbed
, you can run a brigade.js
file like this:
$ brig run -f brigade.js deis/empty-testbed
This will show you the detailed output of running your brigade.js
script's
exec
hook.
(To see the names of your projects, run brig project list
.)
❤️ Developers
Brigade To get started head to the developer's guide
Brigade is well-tested on Minikube and Azure Container Services.
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.