This topic explains how you can deploy BOSH and VMware Tanzu Operations Manager.
BOSH and Tanzu Operations 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.
Tanzu Operations Manager is a GUI application that streamlines deploying subsequent software to the cloud via BOSH. Tanzu Operations Manager features are also accessible by API endpoints. For more information, see Using the Tanzu Operations Manager API.
Deploying Tanzu Operations Manager deploys both BOSH and Tanzu Operations Manager with a single procedure.
For all of the above, the specifics depend on the IaaS on which you are deploying Tanzu Operations Manager. The contents of this documentation are organized by IaaS.
For information on deploying Tanzu Operations Manager to your IaaS, choose one of the following:
Deploying to AWS: Installing Tanzu Operations Manager on AWS
Deploying to GCP: Installing Tanzu Operations Manager on GCP
Deploying to OpenStack: Installing Tanzu Operations Manager on OpenStack
Deploying to vSphere: Installing Tanzu Operations 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 Tanzu Operations Manager can reach. You cannot host or store additional BOSH releases on Tanzu Operations 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 Tanzu Operations Manager API to the location and necessary configuration properties each release.
For more information, see [Adding a job to the Director](https://docs.vmware.com/en/VMware-Tanzu-Operations-Manager/2.10/vmware-tanzu-ops-manager/install-ops-man-api.html in the Tanzu Operations Manager API documentation.
Caution Customizing the Director manifest incorrectly can cause deployment downtime or failure. Tanzu Operations Manager does not perform any validations on software introduced to a deployment through manifest customizations. This feature is for advanced Tanzu Operations Manager operators only.
For more information about writing the manifest.yml
file, see the BOSH documentation.