This topic explains how to deploy BOSH and VMware Tanzu Operations Manager (Ops Manager).
BOSH and Ops Manager provide the foundation for VMware Tanzu Application Service for VMs (TAS for VMs) and its associated products. When you install TAS for VMs, you install the following components first.
BOSH is an open-source tool that lets you run software systems in the cloud.
Ops Manager is a GUI application that streamlines deploying subsequent software to the cloud via BOSH. Ops Manager features are also accessible by API endpoints. For more information, see Using the Ops Manager API.
Deploying Ops Manager deploys both BOSH and Ops Manager with a single procedure.
For all of the above, the specifics depend on the IaaS on which you are deploying Ops Manager. The contents of this documentation are organized by IaaS.
For information on deploying Ops Manager to your IaaS, choose one of the following:
Deploying to AWS: Installing Ops Manager on AWS
Deploying to GCP: Installing Ops Manager on GCP
Deploying to OpenStack: Installing Ops Manager on OpenStack
Deploying to vSphere: Installing Ops Manager on vSphere
The following describes how you can use BOSH to run software in the cloud:
You create one or more BOSH releases, a directory that contains your software and anything that it depends on or needs to run on generic, empty VMs. For more information about using multiple BOSH releases, see Including Multiple BOSH Releases in A Deployment.
You create a manifest .yml
file that identifies the component processes in the BOSH release, specifies the VMs they run on, how they communicate, how to start them up and shut them down, and any other configuration specifics that they need.
Using the BOSH command-line interface (CLI) or API, you upload the BOSH release and send the manifest to the Director, BOSH’s executive process.
The Director provisions what it needs from the IaaS, deploys your software to run in the cloud, and heals automatically when VMs go down.
BOSH CLI and API commands let you control BOSH-managed processes and allocate or release IaaS resources.
You can include additional features in the BOSH Director through targeted customization of the manifest.yml. The only software you can include in the BOSH Director is additional BOSH releases. All additional releases must be available at an HTTP address that Ops Manager can reach. You cannot host or store additional BOSH releases on Ops Manager or the BOSH Director.
To include custom BOSH releases in the BOSH Director, create as many BOSH releases as you need and use the Ops Manager API to the location and necessary configuration properties each release.
For more information, see Adding a job to the Director in the Ops Manager API documentation.
Caution: Customizing the Director manifest incorrectly can cause deployment downtime or failure. Ops Manager does not perform any validations on software introduced to a deployment through manifest customizations. This feature is for advanced Ops Manager operators only.
For more information about writing the manifest.yml
file, see the BOSH documentation.