When you find yourself on an Ubuntu/Debian machine and you just need your favourite CLIs.
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
sudo apt install -y uaa-cli
sudo apt install -y credhub-cli
sudo apt install -y cf-cli
These packages are automatically generated when their respective upstream projects publish new releases.
The scripts for building these Debian packages are at https://github.com/cloudfoundry/bosh-apt-resources. Pull requests for new packages and fixes are welcome.