This article explains how to set up a development environment and get involved with Ansible Service Broker development.
Before anything else, fork the ansible service broker project.
Fedora/RHEL/CENTOS
You are going to need git, docker, golang, and make.
# Fedora
$ sudo dnf install git docker-latest golang make
# RHEL/CENTOS
$ sudo yum install git docker-latest golang make
Our dependencies currently require development headers for btrfs and dev-mapper.
# Fedora
$ sudo dnf install device-mapper-devel btrfs-progs-devel
# RHEL/CENTOS
$ sudo yum install device-mapper-devel btrfs-progs-devel
Dependency management is handled using glide and binaries are available on the releases page.
The broker relies heavily on services provided by OpenShift Origin and it's tools.
You will need to setup your system for local
OpenShift Origin Cluster Management.
Your OpenShift Client binary (oc
) must be >=
v3.6.0-rc.0.
At this point you should have dependencies installed (git, docker, golang, etc.). Golang.org has excellent documentation to get you started developing in Go.
Next, you will want to clone the repository.
mkdir -p $GOPATH/src/github.com/openshift
git clone https://github.com/openshift/ansible-service-broker.git $GOPATH/src/github.com/openshift/ansible-service-broker
cd $GOPATH/src/github.com/openshift/ansible-service-broker
# Install or update project dependencies
make vendor
At some point, when contributing to the Ansible Service Broker project (or just checking it out), you are going to want to have a cluster to integrate with. There are two primary methods for starting an OpenShift Origin Cluster with the Ansible Service Broker:
-
Use run_latest_build.sh to create a cluster with the service catalog enabled and the Ansible Service Broker running. We covered this before in "Getting Started with the Ansible Service Broker".
cd $GOPATH/src/github.com/openshift/ansible-service-broker ./scripts/run_latest_build.sh
Congratulations, you now have a running OpenShift Origin Cluster with the Service Catalog and Ansible Service Broker running inside. If you are having issues, have a look at fusor/catasb for some troubleshooting steps.
NOTE if you ever want to reset your environment, look at fusor/catasb
because that project makes it as easy as ./reset_environment.sh
, or take the cluster down and run_latest_build.sh
again:
oc cluster down
cd $GOPATH/src/github.com/openshift/ansible-service-broker
./scripts/run_latest_build.sh
Building the Ansible Service Broker is as simple as running make build
from the root
of the project:
cd $GOPATH/src/github.com/openshift/ansible-service-broker
make build
Now you can run your broker locally with make run
or
package your broker using docker with make build-image
.
As stated above, you can also package your built Ansible Service Broker binary
into a Docker image with make build-image
.
cd $GOPATH/src/github.com/openshift/ansible-service-broker
export ORG=${YOUR_DOCKERHUB_ID}
export TAG=my_custom_tag
make build-image
Look at the Dockerfile used when building a Docker image with the broker, there are a few things worth pointing out:
- The
broker
image is copied to/usr/bin/asbd
. - The home directory in the image is
/opt/ansibleservicebroker
. - The directory
/etc/ansible-service-broker
is where the broker's configuration file is mounted, by default, when deployed in OpenShift. The deploy-ansible-service-broker template shows that thebroker-config
is included asconfig-volume
in theasb
container and mounted at/etc/ansible-service-broker
. - The entrypoint to the image is entrypoint.sh. This script is what starts the broker when deployed as a container.
Once you have a built Docker image, you can deploy broker from image
with make deploy
BUT only after you have pushed your image to the registry
(ie. docker push ${REGISTRY}/${ORG}/origin-ansible-service-broker:${TAG}
).
Once you have built the Ansible Service Broker, there are a couple of options for running, testing, and debugging the broker. You can run the broker binary locally or, assuming you built a Docker image, you can deploy your broker into a running cluster.
If you are interested in rapidly iterating over your broker changes or want to easily keep tabs on what the broker is doing, running the broker locally is an excellent idea.
Before attempting to run the broker locally, you will need to have deployed an
OpenShift Origin Cluster with the Ansible Service Broker.
You can verify this by running oc get all --all-namespaces
and looking for the ansible-service-broker
service-catalog
running in the cluster.
Configuration
Next, you will need configure your local development variables:
cp scripts/my_local_dev_vars.example scripts/my_local_dev_vars
Now you can modify scripts/my_local_dev_vars
with things like your DOCKERHUB_USERNAME
or use an insecure broker with BROKER_INSECURE="true"
.
Prepare Local Environment
Running make prepare-local-env
will do several things on your behalf:
- Remove the running
ansible-service-broker
from the cluster, leaving onlyetcd
running in the namespace. - Modify the
asb
service to point where our locally running broker will be. - Generate a configuration file for the broker,
etc/generated_local_development.yaml
This would be a good time to have a look at the broker's configuration and make changes. Have a look at the broker configuration examples. By default, the registry section of the config will look something like:
registry:
- type: dockerhub
name: dh
url: https://registry.hub.docker.com
user: changeme
pass: changeme
org: ansibleplaybookbundle
If you want registries in addition to those in the ansibleplaybookbundle organization, add them to the registry section of the config. For example:
registry:
- type: dockerhub
name: dh
url: https://registry.hub.docker.com
user: changeme
pass: changeme
org: ansibleplaybookbundle
- type: dockerhub
name: example
url: https://registry.hub.docker.com
user: changeme
pass: changeme
org: example
Start the Broker
With the environment prepared, running your broker is as simple as running
make run
.
In the previous section we detailed how to run your broker
locally. If you chose to
build a Docker image with your broker binary,
you can run your broker inside the cluster. Now is an excellent time to point out that
fusor/catasb gives you the ability to deploy
an OpenShift Origin Cluster with the Service Catalog and your broker image. If that
still feels like overkill you can use make deploy
to replace the running broker with
one of your choosing.
cd $GOPATH/src/github.com/openshift/ansible-service-broker
export ORG=${YOUR_DOCKERHUB_ID}
export TAG=my_custom_tag
make deploy
The deploy
target runs scripts/deploy.sh to:
- Remove the existing deployment of the Ansible Service Broker.
- Create any broker clusterrolebindings from a previous run, they will be created again when the template is processed.
- Process the deploy-ansible-service-broker template.
- Create the objects from the template in OpenShift Origin.
There are a few things you should keep in mind before creating a PR.
- New code should have no less than corresponding unit tests (see broker.go and broker_test.go as an example.
- Must run
make check
(and it should pass) before you create a PR. Changes that do not passmake check
will not be reviewed until they pass. - Have a method that demonstrates what this PR accomplishes. As an example, PR 250 clearly provides: a test to demonstrate the changes AND the output of those tests.
Make a pull request (PR). See the OWNERS for a list of reviewers/approvers.
Use [WIP] at the beginning of the title (ie. [WIP] Add feature to the broker) to mark a PR as a Work in Progress.
Upon successful review, someone will approve the PR in the review thread. A reviewer with merge power may merge the PR with or without an approval from someone else. Or they may wait a business day to get further feedback from other reviewers.
The ansible-service-broker community uses a proposal process when introducing a major feature in order to encourage collaboration and building the best solution.
Major features are things that take about 2 weeks of development and introduce disruptive changes to the code base.
Start the proposal process by reviewing the proposal template. Use this document to guide how to write a proposal. Then, submit it as a pull request where the community will review the plan. The proposal process will require two approvals from the community before merging.
See what work is in progress, upcoming, and planned via our Trello Board.
Docker images are available on Docker Hub
Image tags:
- canary - The newest source build
- latest - The newest release build
- <release_number> - The stable release of an image
- IRC: Join the conversation on Freenode: #asbroker
- Email: Subscribe to the Ansible Service Broker's mailing list
- Our YouTube Channel