BOSH CloudFoundry RPM repository

When you find yourself on a RedHat/Fedora machine and you just need your favourite CLIs.


sudo dnf install -y gnupg wget

# Add the CloudFoundry YUM repo
cat <<EOF | sudo tee /etc/yum.repos.d/bosh-cloudfoundry.repo
[cloudfoundry]
name=CloudFoundry CLI RPMs
baseurl=http://rpm.ci.cloudfoundry.org/
enabled=1
gpgcheck=1
gpgkey=https://raw.githubusercontent.com/cloudfoundry/bosh-apt-resources/master/rpm-public.key
EOF

# Refresh metadata and install a package (example: cf-cli)
sudo dnf makecache
sudo dnf install -y cf-cli

# Install other available packages
sudo dnf install -y bosh-cli
sudo dnf install -y bosh-bootloader
sudo dnf install -y uaa-cli
sudo dnf install -y credhub-cli
sudo dnf install -y cf-cli
  

These packages are automatically generated when their respective upstream projects publish new releases.

The scripts for building these RPM packages are at https://github.com/cloudfoundry/bosh-apt-resources. Pull requests for new packages and fixes are welcome.