Skip to content

An OSBAPI brokerpak that supplies services needed by the datagov team

License

Notifications You must be signed in to change notification settings

GSA-TTS/datagov-brokerpak-solr

Repository files navigation

datagov-brokerpak-solr

Why this project

This is a cloud-service-broker plugin that makes services needed by the data.gov team brokerable via the Open Service Broker API (compatible with Cloud Foundry and Kubernetes), using Terraform. In particular, this brokerpak is used by datagov-ssb to broker instances of Solr Standalone on cloud.gov.

For more information about the brokerpak concept, here's a 5-minute lightning talk from the 2019 Cloud Foundry Summit. You may also want to check out the brokerpak introduction and specification docs.

Huge props go to @josephlewis42 of Google for publishing and publicizing the brokerpak concept, and to the Pivotal team running with the concept!

Prerequisites

  1. make is used for executing docker commands in a meaningful build cycle.
  2. jq is used for running certain tests
  3. Docker Desktop (for Mac or Windows) or Docker Engine (for Linux) is used for building, serving, and testing the brokerpak.
  4. OpenTofu 1.9.0 is used for local development.
  5. AWS account credentials (as environment variables) are used for actual service provisioning. The corresponding user must have at least the permissions described in permission-policies.tf. Set at least these variables:
    • AWS_ACCESS_KEY_ID
    • AWS_SECRET_ACCESS_KEY
    • AWS_DEFAULT_REGION

Run the make command by itself for information on the various targets that are available.

$ make
clean      Bring down the broker service if it is up and clean out the database
build      Build the brokerpak(s)
up         Run the broker service with the brokerpak configured. The broker listens on `0.0.0.0:8080`. curl http://127.0.0.1:8080 or visit it in your browser. 
down       Bring the cloud-service-broker service down
ecs-all    Clean and rebuild, start test environment, run the broker, run the examples, and tear the broker and test env down
demo-up    Provision a Solr standalone instance (configured for ckan) and output the bound credentials
demo-down  Clean up data left over from tests and demos
help       This help

Notable targets are described below.

Iterating on the Terraform code

To work with the Terraform and target cluster directly (eg not through the CSB or brokerpak), you can generate an appropriate .tfvars file by running:

make .env

From that point on, you can cd terraform/ecs/provision and iterate with tofu init/plan/apply/etc in the Docker environment in that directory. The same situation pertains in terraform/ecs/bind.

(Note if you've been working with the broker the configuration will probably already exist.)

Releasing a version of the brokerpak

After working on the brokerpak, in order to use it in the datagov-SSB, you need to make a release. The release is built by a Github Action that is triggered when a new tag is made. Do not make the tag in the Github web UI as part of making a new Github "release". Instead, tag the head of the main branch:

git checkout main
git tag -a -m "Release version vX.Y.Z" vX.Y.Z

and push that tag up to Github to trigger the release process

git push origin tag vX.Y.Z

The resulting built .brokerpak file is used by the datagov-ssb build process according to the matching vX.Y.Z tag.

Building and starting the brokerpak (while the test environment is available)

Run

make build up 

The broker will start and (after about 40 seconds) listen on 0.0.0.0:8080. You test that it's responding by running:

curl -i -H "X-Broker-API-Version: 2.16" http://user:pass@127.0.0.1:8080/v2/catalog

In response you will see a YAML description of the services and plans available from the brokerpak.

(Note that the X-Broker-API-version header is required by the OSBAPI specification. The broker will reject requests that don't include the header with 412 Precondition Failed, and browsers will show that status as Not Authorized.)

You can also inspect auto-generated documentation for the brokerpak's offerings by visiting http://127.0.0.1:8080/docs in your browser.

Demonstrating operation

Testing manually

Run

docker-compose exec -T broker /bin/cloud-service-broker client help"

to get a list of available commands. You can further request help for each sub-command. Use this command to poke at the browser one request at a time.

For example to see the catalog:

docker-compose exec -T broker /bin/cloud-service-broker client catalog"

To provision a service, copy .env.secrets-template to .env.secrets and edit it to include the correct AWS credentials. Then run:

make up demo-up

...and so on.

Iterating on the brokerpak itself

To rebuild the brokerpak and launch it, then provision a test instance:

make down build up demo-up
# Poke and prod 
make demo-down down

Tearing down the brokerpak

Run

make down

The broker will be stopped.

Cleaning out the current state

Run

make clean

The broker image, database content, and any built brokerpak files will be removed.

Contributing

See CONTRIBUTING for additional information.

Public domain

This project is in the worldwide public domain. As stated in CONTRIBUTING:

This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.

All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.