Running A pre-deploy check for the staged BOSH Director

Running A pre-deploy check for the staged BOSH Director

Returns granular information about whether the staged BOSH Director is ready to be deployed. It lists the following:

  • network assignment
  • availability zone assignment
  • stemcell assignment
  • properties that have errors
  • invalid resource configuration for jobs (Note: this can only occur on non-BOSH products but is documented here for consistency)
  • verifiers that failed
Request
URI
GET
https://{opsmanager-installation}//api/v0/staged/director/pre_deploy_check
COPY
Responses
200

OK

Returns PreDeployCheck of type(s) application/json
{
    "identifier": "string",
    "complete": false,
    "network": {
        "assigned": false
    },
    "availability_zones": {
        "assigned": false
    },
    "stemcells": [
        {
            "assigned": false,
            "required_stemcell_version": "string",
            "required_stemcell_os": "string"
        }
    ],
    "properties": [
        {}
    ],
    "resources": {
        "jobs": [
            {
                "identifier": "string",
                "guid": "string",
                "error": [
                    "string"
                ]
            }
        ]
    },
    "verifiers": [
        {
            "type": "string",
            "ignorable": false,
            "errors": [
                "string"
            ]
        }
    ]
}
string
identifier
Optional

identifier

boolean
complete
Optional

complete

network
Optional

network

availability_zones
Optional

availability_zones

stemcells
Optional

stemcells

properties
Optional

properties

resources
Optional

resources

verifiers
Optional

verifiers