So you want a broker with volume mounts? - cloudfoundry/cloud_controller_ng GitHub Wiki
- Clone the local volume release repo.
- Build and upload the local-volume-release to your bosh director.
cd ~/workspace/local-volume-release
./scripts/update
bosh -n create release --force && bosh -n upload release
- Enable a local driver in your diego manifest and deploy it. The diego deployment will use the local-volume-release to create a localdriver.
cd ~/workspace/diego-release
export USE_VOLDRIVER=true
./scripts/generate-bosh-lite-manifest
./scripts/deploy
- The broker is a submodule in local-volume-release:
src/code.cloudfoundry.org/localbroker
. Deploy the broker via bosh release:
cd ~/workspace/local-volume-release
./scripts/deploy-bosh-lite.sh
- Start using the broker!
cf create-service-broker localbroker admin admin http://localbroker.bosh-lite.com
cf enable-service-access local-volume
For more information, see the local-volume-release README