Upgrades APIs

Upgrades APIs

APIs for managing Upgrades

Table of Contents

1. Perform Upgrade

Perform Upgrade API is used to perform upgrades. Upgrades are sequential. So in order to upgrade to a release, your environment must be on the version before that release. Upgrades are applied on a workload domain basis. The management domain contains the core infrastructure, so you must upgrade the management domain before upgrading the other workload domains. You must upgrade all required components to keep your system in an optimum state.

Note : Performing upgrades is supported on VMware Cloud Foundation 3.5 BOM resources and above.

1.1. Steps to Perform Upgrade. API

  1. Download the required bundle.

  2. Execute Get the Upgradables API to retrieve the list of upgradables (bundle and resource detail) in the system.

  3. Execute Prechecks API to perform required system level health checks.

  4. Perform upgrade and monitor the upgrade progress.

2. Domain Upgrade API

2.1. Prerequisites API

The following data is required:

  • Bundle ID.

  • Resource Type. Ex: DOMAIN.

  • One or more Resource upgrade specifications.

  • Each Resource upgrade specification should contain.

    • Resource ID. Ex: Domain ID.

    • Upgrade scheduled time or Upgrade now option.

The following data is optional:

  • A boolean for parallel ESXi upgrade (default is 'true')

  • A boolean for quickboot run for ESXi upgrade (default is 'false')

Tip : Refer to: UpgradeSpec and ResourceUpgradeSpec.

2.2. Steps API

  • Invoke the API. This API returns a task which can be polled and monitored.

cURL Request

$ curl 'https://sfo-vcf01.rainpole.io/v1/upgrades' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer etYWRta....' \
    -d '{
  "bundleId" : "15727f9a-db55-4102-9bd0-57f2c8ba2de0",
  "resourceType" : "DOMAIN",
  "parallelUpgrade" : true,
  "resourceUpgradeSpecs" : [ {
    "resourceId" : "12fd6423-00db-474f-8b61-be184505e455",
    "scheduledTimestamp" : "2024-06-21T02:47:45.351Z",
    "upgradeNow" : false,
    "esxUpgradeOptionsSpec" : {
      "enableQuickboot" : true
    }
  } ]
}'

HTTP Request

POST /v1/upgrades HTTP/1.1
Content-Type: application/json
Accept: application/json
Content-Length: 361
Host: sfo-vcf01.rainpole.io
Authorization: Bearer etYWRta....

{
  "bundleId" : "15727f9a-db55-4102-9bd0-57f2c8ba2de0",
  "resourceType" : "DOMAIN",
  "parallelUpgrade" : true,
  "resourceUpgradeSpecs" : [ {
    "resourceId" : "12fd6423-00db-474f-8b61-be184505e455",
    "scheduledTimestamp" : "2024-06-21T02:47:45.351Z",
    "upgradeNow" : false,
    "esxUpgradeOptionsSpec" : {
      "enableQuickboot" : true
    }
  } ]
}

HTTP Response

HTTP/1.1 202 Accepted
Content-Type: application/json
Location: /v1/tasks/36c77d80-d193-4e95-88b5-7e0f6cc30bec
Content-Length: 503

{
  "id" : "36c77d80-d193-4e95-88b5-7e0f6cc30bec",
  "name" : "Upgrade DOMAIN - [acme-domain] using BUNDLE - PSC:6.7.0-13010631 VCENTER:6.7.0-13010631",
  "type" : "UPGRADE",
  "status" : "IN_PROGRESS",
  "creationTimestamp" : "2024-06-21T02:47:45.350Z",
  "resources" : [ {
    "resourceId" : "12fd6423-00db-474f-8b61-be184505e455",
    "type" : "DOMAIN"
  }, {
    "resourceId" : "15727f9a-db55-4102-9bd0-57f2c8ba2de0",
    "type" : "BUNDLE"
  } ],
  "isCancellable" : false,
  "isRetryable" : false
}
  • Poll the status of the task using the task API with the ID from the response of the previous API.

Tip : Refer to: Get a Task.

3. Cluster Upgrade API

Note : For Cluster level upgrades, the Cluster ID's can be retrieved based on the Host's that are available for upgrade, Refer to: Get the Hosts and Get the Clusters API's.

3.1. Prerequisites API

The following data is required:

  • Bundle ID.

  • Resource Type. Ex: CLUSTER.

  • One or more Resource upgrade specifications.

  • Each Resource upgrade specification should contain.

    • Resource ID. Ex: Cluster ID.

    • Upgrade scheduled time or Upgrade now option.

The following data is optional:

  • A boolean for parallel ESXi upgrade (default is 'true')

  • A boolean for quickboot run for ESXi upgrade (default is 'false')

Tip : Refer to: UpgradeSpec and ResourceUpgradeSpec.

3.2. Steps API

  • Invoke the API. This API returns a task which can be polled and monitored.

cURL Request

$ curl 'https://sfo-vcf01.rainpole.io/v1/upgrades' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer etYWRta....' \
    -d '{
  "bundleId" : "15727f9a-db55-4102-9bd0-57f2c8ba2de0",
  "resourceType" : "CLUSTER",
  "parallelUpgrade" : true,
  "resourceUpgradeSpecs" : [ {
    "resourceId" : "7013204b-2fae-4dec-9128-ba480625a846",
    "scheduledTimestamp" : "2024-06-21T03:47:49.357Z",
    "upgradeNow" : false,
    "esxUpgradeOptionsSpec" : {
      "esxUpgradeFailureAction" : {
        "retryDelay" : 0,
        "retryCount" : 0,
        "action" : "FAIL"
      },
      "enforceHclValidation" : true,
      "enableQuickPatch" : false,
      "enableQuickboot" : true,
      "disableHac" : true,
      "disableDpm" : true,
      "preRemediationPowerAction" : "DO_NOT_CHANGE_POWER_STATE"
    }
  } ]
}'

HTTP Request

POST /v1/upgrades HTTP/1.1
Content-Type: application/json
Accept: application/json
Content-Length: 675
Host: sfo-vcf01.rainpole.io
Authorization: Bearer etYWRta....

{
  "bundleId" : "15727f9a-db55-4102-9bd0-57f2c8ba2de0",
  "resourceType" : "CLUSTER",
  "parallelUpgrade" : true,
  "resourceUpgradeSpecs" : [ {
    "resourceId" : "7013204b-2fae-4dec-9128-ba480625a846",
    "scheduledTimestamp" : "2024-06-21T03:47:49.357Z",
    "upgradeNow" : false,
    "esxUpgradeOptionsSpec" : {
      "esxUpgradeFailureAction" : {
        "retryDelay" : 0,
        "retryCount" : 0,
        "action" : "FAIL"
      },
      "enforceHclValidation" : true,
      "enableQuickPatch" : false,
      "enableQuickboot" : true,
      "disableHac" : true,
      "disableDpm" : true,
      "preRemediationPowerAction" : "DO_NOT_CHANGE_POWER_STATE"
    }
  } ]
}

HTTP Response

HTTP/1.1 202 Accepted
Content-Type: application/json
Location: /v1/tasks/36c77d80-d193-4e95-88b5-7e0f6cc30bec
Content-Length: 481

{
  "id" : "36c77d80-d193-4e95-88b5-7e0f6cc30bec",
  "name" : "Upgrade DOMAIN - [acme-domain] using BUNDLE - HOST:6.7.0-13006603",
  "type" : "UPGRADE",
  "status" : "IN_PROGRESS",
  "creationTimestamp" : "2024-06-21T02:47:49.356Z",
  "resources" : [ {
    "resourceId" : "12fd6423-00db-474f-8b61-be184505e455",
    "type" : "DOMAIN"
  }, {
    "resourceId" : "15727f9a-db55-4102-9bd0-57f2c8ba2de0",
    "type" : "BUNDLE"
  } ],
  "isCancellable" : false,
  "isRetryable" : false
}
  • Poll the status of the task using the task API with the ID from the response of the previous API.

Tip : Refer to: Get a Task.

4. vLCM Cluster Upgrade API

Note : For vLCM Cluster level upgrades, the Cluster ID's can be retrieved based on the Host's that are available for upgrade, Refer to: Get the Hosts and Get the Clusters API's.

4.1. Prerequisites API

The following data is required:

  • Bundle ID.

  • Resource Type. Ex: CLUSTER.

  • Optional Draft Mode.

  • One or more Resource upgrade specifications.

  • Each Resource upgrade specification should contain.

    • Resource ID. Ex: Cluster ID.

    • Upgrade scheduled time or Upgrade now option.

    • Personality Spec

      • Personality ID

      • Optional Hardware Support Specs

The following data is optional:

  • A boolean for quickboot run for ESXi upgrade (default is 'true' if not specified)

Tip : Refer to: UpgradeSpec, ResourceUpgradeSpec, PersonalitySpec and HardwareSupportSpec.

4.2. Steps API

  • Invoke the API. This API returns a task which can be polled and monitored. If the API is invoked with draftMode set to true, see Step 3

cURL Request

$ curl 'https://sfo-vcf01.rainpole.io/v1/upgrades' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer etYWRta....' \
    -d '{
  "bundleId" : "15727f9a-db55-4102-9bd0-57f2c8ba2de0",
  "resourceType" : "CLUSTER",
  "draftMode" : false,
  "resourceUpgradeSpecs" : [ {
    "resourceId" : "7013204b-2fae-4dec-9128-ba480625a846",
    "scheduledTimestamp" : "2024-06-21T03:47:44.698Z",
    "upgradeNow" : false,
    "personalitySpec" : {
      "personalityId" : "b013e638-1482-42f3-ab10-c728709f0f2a",
      "hardwareSupportSpecs" : [ {
        "name" : "HSM",
        "packageSpec" : {
          "name" : "HSP",
          "version" : "1.0.0"
        }
      } ]
    },
    "esxUpgradeOptionsSpec" : {
      "enableQuickboot" : true
    }
  } ]
}'

HTTP Request

POST /v1/upgrades HTTP/1.1
Content-Type: application/json
Accept: application/json
Content-Length: 615
Host: sfo-vcf01.rainpole.io
Authorization: Bearer etYWRta....

{
  "bundleId" : "15727f9a-db55-4102-9bd0-57f2c8ba2de0",
  "resourceType" : "CLUSTER",
  "draftMode" : false,
  "resourceUpgradeSpecs" : [ {
    "resourceId" : "7013204b-2fae-4dec-9128-ba480625a846",
    "scheduledTimestamp" : "2024-06-21T03:47:44.698Z",
    "upgradeNow" : false,
    "personalitySpec" : {
      "personalityId" : "b013e638-1482-42f3-ab10-c728709f0f2a",
      "hardwareSupportSpecs" : [ {
        "name" : "HSM",
        "packageSpec" : {
          "name" : "HSP",
          "version" : "1.0.0"
        }
      } ]
    },
    "esxUpgradeOptionsSpec" : {
      "enableQuickboot" : true
    }
  } ]
}

HTTP Response

HTTP/1.1 202 Accepted
Content-Type: application/json
Location: /v1/tasks/36c77d80-d193-4e95-88b5-7e0f6cc30bec
Content-Length: 477

{
  "id" : "36c77d80-d193-4e95-88b5-7e0f6cc30bec",
  "name" : "Upgrade SDDC_MANAGER - [] using BUNDLE - HOST:6.7.0-13006603",
  "type" : "UPGRADE",
  "status" : "IN_PROGRESS",
  "creationTimestamp" : "2024-06-21T02:47:44.695Z",
  "resources" : [ {
    "resourceId" : "7013204b-2fae-4dec-9128-ba480625a846",
    "type" : "CLUSTER"
  }, {
    "resourceId" : "15727f9a-db55-4102-9bd0-57f2c8ba2de0",
    "type" : "BUNDLE"
  } ],
  "isCancellable" : false,
  "isRetryable" : false
}
  • Poll the status of the task using the task API with the ID from the response of the previous API.

Tip : Refer to: Get a Task.

  • If the upgrade is created with draftMode set to true, the upgrade status will be in "DRAFT" state and you can trigger a hardware compatibility and compliance check before scheduling the upgrade. Invoke the API, with the upgrade ID from step 1, to trigger/start the hardware compatibility and compliance check.

cURL Request

$ curl 'https://sfo-vcf01.rainpole.io/v1/upgrades/eda9c37b-0a1d-48ba-9fe1-fad24eb7913b/prechecks' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer etYWRta....'

HTTP Request

POST /v1/upgrades/eda9c37b-0a1d-48ba-9fe1-fad24eb7913b/prechecks HTTP/1.1
Content-Type: application/json
Accept: application/json
Host: sfo-vcf01.rainpole.io
Authorization: Bearer etYWRta....

HTTP Response

HTTP/1.1 202 Accepted
Content-Type: application/json
Location: /v1/tasks/0a165b4b-ba28-4749-9f46-3ccbd3f0b006
Content-Length: 2033

{
  "id" : "0a165b4b-ba28-4749-9f46-3ccbd3f0b006",
  "name" : "PRECHECK",
  "type" : "PRECHECK",
  "status" : "IN_PROGRESS",
  "creationTimestamp" : "2024-06-21T02:47:45.227Z",
  "completionTimestamp" : "2024-06-21T02:47:45.227Z",
  "subTasks" : [ {
    "name" : "vLCM Precheck for cluster: acme-cluster",
    "description" : "vLCM Precheck for cluster: acme-cluster",
    "status" : "IN_PROGRESS",
    "creationTimestamp" : "2024-06-21T02:47:45.228Z",
    "stages" : [ {
      "name" : "vLCM cluster health check",
      "description" : "Perform Stage - Perform Stage - Precheck if the cluster are in a good state to be updated with the desired software image",
      "status" : "UNKNOWN",
      "errors" : [ ]
    } ],
    "resources" : [ {
      "resourceId" : "7013204b-2fae-4dec-9128-ba480625a846",
      "type" : "CLUSTER"
    } ],
    "subTasks" : [ {
      "name" : "vLCM Precheck for host: 10.0.0.100",
      "description" : "vLCM Precheck for host: 10.0.0.100",
      "status" : "IN_PROGRESS",
      "creationTimestamp" : "2024-06-21T02:47:45.228Z",
      "stages" : [ {
        "name" : "vLCM image scan",
        "description" : "Perform Stage - Perform Stage - Host compliance",
        "status" : "UNKNOWN",
        "errors" : [ ]
      }, {
        "name" : "vLCM image baseOS scan",
        "description" : "Perform Stage - Perform Stage - Validating the baseOS version.",
        "status" : "FAILED",
        "errors" : [ {
          "errorCode" : "com.vmware.vcIntegrity.lifecycle.HostScan.BaseImageDowngrade",
          "errorType" : "ERROR",
          "message" : "Desired Base Image version 7.0.0-1.20.16321839 is a downgrade of the installed version ESXi.",
          "remediationMessage" : "Replace the Base Image in the desired state with one of the same or higher version."
        } ]
      } ],
      "resources" : [ {
        "resourceId" : "0784282f-d5ec-40c8-9b9d-f432c37e0551",
        "type" : "ESX"
      } ],
      "subTasks" : [ ]
    } ]
  } ],
  "isCancellable" : false,
  "isRetryable" : false
}

Tip : Refer to: performPrechecks API

  • Poll the status of the hardware compatibility and compliance check task using the task API with the ID from the response of the previous API.

cURL Request

$ curl 'https://sfo-vcf01.rainpole.io/v1/upgrades/eda9c37b-0a1d-48ba-9fe1-fad24eb7913b/prechecks/eda9c37b-0a1d-48ba-9fe1-fad24eb7913b' -i -X GET \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer etYWRta....'

HTTP Request

GET /v1/upgrades/eda9c37b-0a1d-48ba-9fe1-fad24eb7913b/prechecks/eda9c37b-0a1d-48ba-9fe1-fad24eb7913b HTTP/1.1
Content-Type: application/json
Accept: application/json
Host: sfo-vcf01.rainpole.io
Authorization: Bearer etYWRta....

HTTP Response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 2033

{
  "id" : "0a165b4b-ba28-4749-9f46-3ccbd3f0b006",
  "name" : "PRECHECK",
  "type" : "PRECHECK",
  "status" : "IN_PROGRESS",
  "creationTimestamp" : "2024-06-21T02:47:45.991Z",
  "completionTimestamp" : "2024-06-21T02:47:45.991Z",
  "subTasks" : [ {
    "name" : "vLCM Precheck for cluster: acme-cluster",
    "description" : "vLCM Precheck for cluster: acme-cluster",
    "status" : "IN_PROGRESS",
    "creationTimestamp" : "2024-06-21T02:47:45.991Z",
    "stages" : [ {
      "name" : "vLCM cluster health check",
      "description" : "Perform Stage - Perform Stage - Precheck if the cluster are in a good state to be updated with the desired software image",
      "status" : "UNKNOWN",
      "errors" : [ ]
    } ],
    "resources" : [ {
      "resourceId" : "7013204b-2fae-4dec-9128-ba480625a846",
      "type" : "CLUSTER"
    } ],
    "subTasks" : [ {
      "name" : "vLCM Precheck for host: 10.0.0.100",
      "description" : "vLCM Precheck for host: 10.0.0.100",
      "status" : "IN_PROGRESS",
      "creationTimestamp" : "2024-06-21T02:47:45.991Z",
      "stages" : [ {
        "name" : "vLCM image scan",
        "description" : "Perform Stage - Perform Stage - Host compliance",
        "status" : "UNKNOWN",
        "errors" : [ ]
      }, {
        "name" : "vLCM image baseOS scan",
        "description" : "Perform Stage - Perform Stage - Validating the baseOS version.",
        "status" : "FAILED",
        "errors" : [ {
          "errorCode" : "com.vmware.vcIntegrity.lifecycle.HostScan.BaseImageDowngrade",
          "errorType" : "ERROR",
          "message" : "Desired Base Image version 7.0.0-1.20.16321839 is a downgrade of the installed version ESXi.",
          "remediationMessage" : "Replace the Base Image in the desired state with one of the same or higher version."
        } ]
      } ],
      "resources" : [ {
        "resourceId" : "0784282f-d5ec-40c8-9b9d-f432c37e0551",
        "type" : "ESX"
      } ],
      "subTasks" : [ ]
    } ]
  } ],
  "isCancellable" : false,
  "isRetryable" : false
}
  • Once the hardware compatibility and compliance check task is completed and result is reviewed, schedule the upgrade.

cURL Request

$ curl 'https://sfo-vcf01.rainpole.io/v1/upgrades/eda9c37b-0a1d-48ba-9fe1-fad24eb7913b' -i -X PATCH \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer etYWRta....' \
    -d '{
  "scheduledTimestamp" : "2024-06-21T03:47:48.968Z",
  "upgradeNow" : false
}'

HTTP Request

PATCH /v1/upgrades/eda9c37b-0a1d-48ba-9fe1-fad24eb7913b HTTP/1.1
Content-Type: application/json
Accept: application/json
Content-Length: 79
Host: sfo-vcf01.rainpole.io
Authorization: Bearer etYWRta....

{
  "scheduledTimestamp" : "2024-06-21T03:47:48.968Z",
  "upgradeNow" : false
}

HTTP Response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1623

{
  "id" : "eda9c37b-0a1d-48ba-9fe1-fad24eb7913b",
  "bundleId" : "15727f9a-db55-4102-9bd0-57f2c8ba2de0",
  "resourceType" : "CLUSTER",
  "resourceUpgradeSpecs" : [ {
    "resourceId" : "7013204b-2fae-4dec-9128-ba480625a846",
    "shutdownVms" : null,
    "toVersion" : null,
    "scheduledTimestamp" : "2024-06-21T03:47:48.968Z",
    "upgradeNow" : null,
    "personalitySpec" : null,
    "customIsoSpec" : null,
    "enableQuickboot" : null,
    "evacuateOfflineVms" : null,
    "esxUpgradeOptionsSpec" : {
      "enableQuickboot" : true,
      "evacuateOfflineVms" : false
    },
    "hostsToUpgrade" : null
  } ],
  "status" : "SCHEDULED",
  "taskId" : "eda9c37b-0a1d-48ba-9fe1-fad24eb7913b",
  "bundle" : {
    "id" : "15727f9a-db55-4102-9bd0-57f2c8ba2de0",
    "type" : "VMWARE_SOFTWARE",
    "description" : "ESX update bundle -  13004448(67EP7)==>13010696 (vsphere67U2)",
    "version" : "253.0.0-111959",
    "severity" : null,
    "vendor" : "VMware",
    "releasedDate" : "2019-05-10T10:29:10.645Z",
    "isCumulative" : false,
    "isCompliant" : null,
    "sizeMB" : 4.3201446533203125E-4,
    "downloadStatus" : "SUCCESSFUL",
    "components" : [ {
      "description" : "ESX_HOST Update Bundle",
      "vendor" : "VMware",
      "releasedDate" : "2019-05-10T10:29:10.645Z",
      "toVersion" : "6.7.0-13006603",
      "fromVersion" : "6.7.0-13004448",
      "imageType" : "INSTALL",
      "id" : "a65d9d83-88b9-475f-a2ba-ee5d9be34f8d",
      "type" : "HOST",
      "isUserInputRequired" : null
    } ],
    "applicabilityStatus" : null,
    "applicabilityOrder" : null,
    "isPartiallyUpgraded" : null
  }
}

Tip : Refer to Commit/Reschedule Upgrade API

  • Poll the status of the upgrade task using the task API with the ID from the response of the previous API.

Tip : Refer to: Get a Task.

[_getupgradables] API [_startprecheck] API [_getprechecktask] API [_performupgrade] API [_gettasks] API [_gettask] API
Last updated 2024-06-21 01:22:12 -0700

Operations
GET
Get Upgrade By Id
Retrieve an upgrade by ID
GET
Get Upgrade Precheck By ID
Retrieve an upgrade precheck task by ID
GET
Get Upgrades
Retrieve a list of upgrades
POST
Perform Upgrade
Start an upgrade operation
POST
Start Upgrade Precheck
Start an upgrade precheck operation
PATCH
Update Upgrade Schedule
Change a DRAFT upgrade to a SCHEDULED state