{"id":19049279,"url":"https://github.com/cppforlife/vagrant-bosh","last_synced_at":"2026-03-11T07:31:06.542Z","repository":{"id":17986382,"uuid":"20993195","full_name":"cppforlife/vagrant-bosh","owner":"cppforlife","description":"BOSH provisioner for Vagrant","archived":false,"fork":false,"pushed_at":"2017-03-15T19:14:52.000Z","size":27031,"stargazers_count":11,"open_issues_count":4,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-06T05:15:38.396Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cppforlife.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-06-19T08:23:44.000Z","updated_at":"2018-03-26T12:49:38.000Z","dependencies_parsed_at":"2022-08-19T00:20:16.614Z","dependency_job_id":null,"html_url":"https://github.com/cppforlife/vagrant-bosh","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cppforlife/vagrant-bosh","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cppforlife%2Fvagrant-bosh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cppforlife%2Fvagrant-bosh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cppforlife%2Fvagrant-bosh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cppforlife%2Fvagrant-bosh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cppforlife","download_url":"https://codeload.github.com/cppforlife/vagrant-bosh/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cppforlife%2Fvagrant-bosh/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30374202,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T06:09:32.197Z","status":"ssl_error","status_checked_at":"2026-03-11T06:09:17.086Z","response_time":84,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T23:10:25.382Z","updated_at":"2026-03-11T07:31:06.378Z","avatar_url":"https://github.com/cppforlife.png","language":"Ruby","readme":"## BOSH provisioner for Vagrant\n\nBOSH provisioner allows to provision guest VM by specifying regular BOSH deployment manifest.\n\nYou might also be interested in [packer-bosh](https://github.com/cppforlife/packer-bosh).\n\n\n### Usage\n\n1. `vagrant plugin install vagrant-bosh`\n\n2. Add new VM provision section to your `Vagrantfile`. For example:\n\n```\nVagrant.configure(\"2\") do |config|\n  config.vm.box = \"precise64\"\n  config.vm.box_url = \"http://files.vagrantup.com/precise64.box\"\n\n  # Example port forward for example-bosh-manifest.yml\n  config.vm.network \"forwarded_port\", guest: 25555, host: 25555 # BOSH Director API\n\n  config.vm.provider \"virtualbox\" do |v|\n    v.memory = 4096\n    v.cpus = 2\n  end\n\n  config.vm.provision \"bosh\" do |c|\n    # use cat or just inline full deployment manifest\n    c.manifest = `cat somewhere/example-bosh-manifest.yml`\n  end\nend\n```\n\n3. Create a deployment manifest and specify it via `c.manifest` attribute.\n   See `dev/example-bosh-manifest.yml` for an example deployment manifest used to deploy BOSH Director.\n\n4. Run `vagrant provision` to provision guest VM\n   (DEBUG=1 environment variable will trigger live verbose output).\n\n\n### Deployment manifest gotchas\n\n- It must specify release source(s) via `url` key in the `releases` section.\n  See [release URL confgurations](docs/release-url.md).\n\n- It must have exactly one deployment job; however, deployment job\n  can be made up from multiple job templates that come from multiple releases.\n\n- It does not support `static` network type, though `dynamic` network type is supported\n  (Network configuration should be done via standard Vagrant configuration DSL).\n\n- It does not support stemcell specification because guest VM OS is picked via `config.vm.box` directive.\n\n\n### Provisioner options\n\n- `manifest` (String, default: `nil`) \n  should contain full BOSH deployment manifest\n\n- `full_stemcell_compatibility` (Boolean, default: `false`) \n  forces provisioner to install all (not just minimum) dependencies usually found on a stemcell\n\n- `agent_infrastructure` (String, default: `warden`)\n  configures BOSH Agent infrastructure (e.g. `aws`, `openstack`)\n\n- `agent_platform` (String, default: `ubuntu`)\n  configured BOSH Agent platform (e.g. `ubuntu`, `centos`)\n\n- `agent_configuration` (Hash, default: '{ ... }')\n\n- `create_release_cmd` (String, default: `bosh -n create release --force`)\n\n\n### Using provisioner to build BOSH stemcells\n\nSee [building AWS Stemcell](docs/build-aws-stemcell.md).\n\n\n### Planned\n\n- Speed up apply step (Monit is sluggish)\n\n\n### Contributing\n\n```\ngit submodule update --recursive --init\n\n# Spin up development Vagrant box with lib/ acting as BOSH provisioner\n( cd dev/ \u0026\u0026 vagrant up )\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcppforlife%2Fvagrant-bosh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcppforlife%2Fvagrant-bosh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcppforlife%2Fvagrant-bosh/lists"}