Bamboo is a web daemon that automatically configures HAProxy for web services deployed on Apache Mesos and Marathon.
It features:
- User interface for configuring DNS mapping to Marathon ID
- Rest API for configuring DNS mapping; when application deployment in Marathon is automated and work with other DNS managing services, API is handy
- Auto configure HAProxy configuration file based your template; you can provision your own template in production to enable ssl and HAProxy stats interface, or configuring different load balance strategy
- Optionally hanldes health check endpoint if Marathon app is configured with Healthchecks
- Daemon itself is stateless; enables horizontal replication and scalability
- Developed in Golang, deployment on HAProxy instance has no additional dependency
- Optionally integrates with StatsD to monitor configuration reload event
If you have very small scale web services to manage, UI is useful to manage and visualize current state of DNS mapping. You can find out if DNS is assigned or missing from the interface. Of course, you can configure HAProxy template to load balance Bamboo.
Bamboo binary accepts -config
option to specify application configuration JSON file location. Type -help
to get current available options.
Example configuration and HAProxy template can be found under config/production.example.json and config/haproxy_template.cfg This section tries to explain usage in code comment style:
{
// Marathon instance configuration
"Marathon": {
// Marathon service HTTP endpoint
"Endpoint": "http://localhost:8080",
// Same configuration as Marathon Zookeeper
"Zookeeper": {
"Host": "zk01.example.com:2812,zk02.example.com:2812",
// Marathon Zookeeper state
// Marathon default set to /marathon/state
"Path": "/marathon/state",
// Number of seconds to delay the reload event
"ReportingDelay": 5
}
},
// DNS mapping information is stored in Zookeeper
// Make sure the Path is pre-created; Bamboo does not create the missing Path.
"DomainMapping": {
"Zookeeper": {
// Use the same ZK setting if you run on the same ZK cluster
"Host": "zk01.example.com:2812,zk02.example.com:2812",
"Path": "/marathon-haproxy/state",
"ReportingDelay": 5
}
},
// Make sure using absolute path on production
"HAProxy": {
"TemplatePath": "/var/bamboo/haproxy_template.cfg",
"OutputPath": "/etc/haproxy/haproxy.cfg",
"ReloadCommand": "haproxy -f /etc/haproxy/haproxy.cfg -p /var/run/haproxy.pid -sf $(cat /var/run/haproxy.pid)"
},
// Enable or disable StatsD event tracking
"StatsD": {
"Enabled": false,
// StatsD or Graphite server host
"Host": "localhost:8125",
// StatsD namespace prefix
// If you have multiple Bamboo instances, you might want to label each node
// by bamboo-server.production.n1.
"Prefix": "bamboo-server.production."
}
}
POST /api/state/domains
Creates mapping from Marathon application ID to a DNS
curl -i -X POST -d '{"id":"app-1","value":"app1.example.com"}' http://localhost:8000/api/state/domains
PUT /api/state/domains/:id
Updates mapping of an existing Marathon application ID to a new DNS
curl -i -X PUT -d '{"id":"app-1","value":"app1-beta.example.com"}' http://localhost:8000/api/state/domains/app-1
DELETE /api/state/domains/:id
Deletes mapping of an existing Marathon ID DNS mapping
curl -i -X DELETE http://localhost:8000/api/state/domains/app-1
We recommend installing binary with Debian deb or rpm package. The repository includes examples of a Jenkins build script and a deb packages build script. Read comment in the script to customize your build distribution workflow.
In short, install fpm and run the following command:
go build bamboo.go
./builder/build.sh
A deb package will be generated in ./builder
directory. You can copy to server or publish to your own apt repository.
The example deb package deploys:
- Upstart job
bamboo-server
, e.g. upstart assumes/var/bamboo/production.json
is configured correctly. - Application directory is under
/opt/bamboo/
- Configuration and logs is under
/var/bamboo/
- Log file is rotated automatically
We use godep managing Go package dependencies; Goconvey for unit testing; CommonJS and SASS for frontend development and build distribution.
- Golang 1.3
- Node.js 0.10.x+
Golang:
# Pakcage manager
go get github.com/tools/godep
go get -t github.com/smartystreets/goconvey
cd $GOPATH/github.com/QubitProducts/bamboo
godep restore
# Build your binary
go build
# Run test
goconvey
Node.js UI dependencies:
# Global
npm install -g grunt-cli napa browserify node-static foreman karma-cli
# Local
npm install && napa
# Start a foreman configured with Procfile for building SASS and JavaScript
nf start
Bamboo is released under Apache License 2.0