# bosh-bootloader **Repository Path**: mirrors_cloudfoundry/bosh-bootloader ## Basic Information - **Project Name**: bosh-bootloader - **Description**: Command line utility for standing up a BOSH director on an IAAS of your choice. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Build](https://bosh.ci.cloudfoundry.org/api/v1/teams/main/pipelines/bosh-bootloader/badge)](https://bosh.ci.cloudfoundry.org/teams/main/pipelines/bosh-bootloader) # bosh-bootloader Also known as `bbl` *(pronounced: "bubble")*, bosh-bootloader is a command line utility for standing up BOSH on an IaaS. `bbl` currently supports AWS, GCP, Microsoft Azure, Openstack and vSphere. * [CI](https://infra.ci.cf-app.com/teams/main/pipelines/bosh-bootloader/) * [Tracker](https://www.pivotaltracker.com/n/projects/1488988) ## Docs - [Getting Started: GCP](docs/getting-started-gcp.md) - [Deploying Concourse](docs/concourse.md) - [Upgrade](docs/upgrade.md) - [Advanced Configuration](docs/advanced-configuration.md) ## Prerequisites ### Install Dependencies The following should be installed on your local machine - [bosh-cli](https://bosh.io/docs/cli-v2.html) - [bosh create-env dependencies](https://bosh.io/docs/cli-env-deps.html) - [terraform](https://www.terraform.io/downloads.html) >= 0.11.0 - ruby (necessary for bosh create-env) ### Install bosh-bootloader using a package manager **Mac OS X** ```sh $ brew tap cloudfoundry/tap $ brew install bosh-cli $ brew install bbl ``` **Ubuntu/Debian** ```sh # Install prerequisites $ sudo apt-get update $ sudo apt install -y gnupg wget # Import the CloudFoundry APT repo GPG key $ wget -q -O - https://raw.githubusercontent.com/cloudfoundry/bosh-apt-resources/master/public.key | sudo apt-key add - # Add the CloudFoundry APT repo $ echo "deb http://apt.ci.cloudfoundry.org stable main" | sudo tee /etc/apt/sources.list.d/bosh-cloudfoundry.list # Refresh metadata and install packages $ sudo apt-get update $ sudo apt install -y bosh-cli $ sudo apt install -y bosh-bootloader ``` **Fedora/RedHat** ```sh # Install prerequisites $ sudo dnf install -y gnupg wget # Add the CloudFoundry YUM repo $ cat <