Skip To Content
ArcGIS Developer
Dashboard

Upgrade

Description

The upgrade operation upgrades, through either a patch or a release, an ArcGIS Enterprise on Kubernetes deployment to the current version.

Before performing an upgrade, the unique ID associated with the patch or release must be retrieved from the version manifest using the available operation. The version manifest is a JSON array of version objects that contain update-specific information, including a JSON array of container objects that specify affected containers and include their name, checksum, and image values.

Once the ID has been retrieved, you must also retrieve the required upgrade settings that will be passed through as part of the upgrade operation. Some settings will require user input before they can be used during an upgrade. For more information about current upgrade settings, see the Upgrade settings section below.

Note:

The organization is put into read-only mode during an upgrade.

Once the upgrade job request has been submitted, the deployment will either install a new patch on the base version or upgrade the entire deployment to the latest release. While the job is running, the upgrades resource will return detailed, real-time job messages and status information. The upgrades resource's child operations and resources will remain inaccessible for the duration of the upgrade.

Caution:

The startup time for some containers may exceed expected wait times and timeout, causing the upgrade to fail. The timeout period can be extended by modifyingthe containerStartUpTimeoutSecondssystem property to a value larger than the default 1,800 seconds. If the upgrade process continues to fail after modifying the timeout period and restarting, contact Esri technical support. This only applies when installing a patch.

Request parameters

ParameterDetails
versionManifest

(Required)

The unique ID associated with a patch or release. You can get the version manifest ID for a patch or release from the JSON view of the available operation.

Example


{"id": "rel_234567_2000"}
licenseFile

(Optional)

Note:

This parameter was previously deprecated at 11.0 and has been reintroduced at 11.1. Licensing information can either be provided through the licenseFile parameter or the upgradeSettings parameter.

The ArcGIS Enterprise on Kubernetes license file (.json). This license file-which contains information regarding your user types, apps, and capabilities-is obtained from My Esri. For more information, see Obtain an authorization file. This parameter is not required if the request is for a minor release or patch-based upgrade.

versionManifestFile

(Optional)

Caution:

This parameter is not currently supported.

The file containing the version manifest.

upgradeSettings

(Optional; Required for version 11.0)

Note:

Licensing information can either be provided through the licenseFile parameter or the upgradeSettings parameter.

A JSON object containing details for release upgrade settings. These settings, retrieved from the getUpgradeSettings operation, must be included in the request for the upgrade to be successful. Currently, the object supports the following three upgrade settings: updateToLatestPatch, licenseUpload. These settings are applicable to ArcGIS Enterprise on Kubernetes versions 11.0 and later.

For more information about these settings, see the Upgrade settings section below.

f

The response format. The default format is html.

Values: html | json | pjson

Upgrade settings

The table below outlines the currently supported settings that are required when upgrading an ArcGIS Enterprise on Kubernetes deployment.

PropertyDetails
updateToLatestPatch

When set to true, patches included with a release will be automatically installed during the upgrade process. The default value of this property is true; the value should not be changed.

Values: true

licenseUpload

A JSON object that stores an uploaded ArcGIS Enterprise on Kubernetes license file (.json). When upgrading, the value property must be updated to reflect the upload ID of an uploaded ArcGIS Enterprise on Kubernetes license file.

Example of modified value property


{
  "seqNum": 1,
  "validFileExtensions": ["json"],
  "name": "licenseUpload",
  "description": "licenseFieldDescToken",
  "id": "licenseUpload",
  "type": "File",
  "value": "caf81a83-b6a7-4810-9e7c-dbff96c6050a",
  "required": true,
  "newfield": ""
},
volumesConfig
Legacy:

The volumesConfig upgrade setting has been deprecated at ArcGIS Enterprise on Kubernetes 11.1 and is only applicable to ArcGIS Enterprise on Kubernetes 11.0.

A JSON object containing the storage configurations for persistent volumes that are required while upgrading.

Deprecated parameters

The following parameters have been deprecated at ArcGIS Enterprise on Kubernetes 11.0. The information previously specified by these parameters is now included with the upgradeSettings parameter:

ParameterDetails
serverLicenseFile

(Optional)

A valid ArcGIS GIS Server license file (either .ecp or .prvc). This parameter is not required if the request is for a minor release or patch-based upgrade.

updateToLatestPatch

(Optional)

When set to true, patches included with a release will be automatically installed during the upgrade process. The default value is false.

Values: true | false

Example usage

Example one: license file

The following is a sample POST request for the upgrade operation, demonstrating a request that includes the licenseFile parameter:


POST /context/admin/system/upgrades/upgrade HTTP/1.1
Host: organization.domain.com
Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryAMpB0mfM6ckdcpcb
Content-Length: []

-----------------------------11892312478239759461327923793
Content-Disposition: form-data; name="versionManifest"

{"id":"rel_123456_4000"}
-----------------------------11892312478239759461327923793
Content-Disposition: form-data; name="licenseFile"; filename="AllUTs_AllAddOnApps.json"
Content-Type: application/json

{"MyEsri": {"version":"10.9.1","definitions": {"userTypes": [{"id":"viewerUT","name":"Viewer","description":"Viewer","level":"1","isEsriDefault":true,"apps": [{"isAppBundle":true,"id":"officeAppsAB","entitlements":[]},{"isAppBundle":false,"id":"runtimelite","entitlements":["runtimelite"]},{"isAppBundle":true,"id":"essentialAppsAB","entitlements":[]}]},...],"licenseManagement": {"licenses": [{"license": "U0VSV..."}]}}}}
-----------------------------11892312478239759461327923793
Content-Disposition: form-data; name="versionManifestFile"; filename=""
Content-Type: application/octet-stream


-----------------------------11892312478239759461327923793
Content-Disposition: form-data; name="updateToLatestPatch"

False
-----------------------------11892312478239759461327923793
Content-Disposition: form-data; name="upgradeSettings"

{}
-----------------------------11892312478239759461327923793
Content-Disposition: form-data; name="f"

pjson
-----------------------------11892312478239759461327923793
Content-Disposition: form-data; name="token"

0jHz5AZks4ZnzSsq41P9mskVkzbEuwHXwb4xEidjFd-1oGxbgGyxDG4sWqgtZ6bQbN7zFRBmvvwItaIVhJOTeg56CWZsjysEidaN0rk191Y38oOmdqR15ktqSBGmDrQi0IIjIpE_Ff-oX3Fz0Pw_yOpBjD4mX7BVtnEK8_HAkjlUeEjPO7H7fEr-yMwHI47bDDktKhsGQ_7z6ujnVLOvM5qHjJRs487aKfa2P7TPSkF7oB41Z-JJRTIDcM8cGZGz
------WebKitFormBoundaryAMpB0mfM6ckdcpcb--

Example two: upgrade settings

Prerequisites

Before performing this operation, the list of required settings needed for the upgrade must be retrieved using the getUpgradeSettings operation:


POST /context/admin/system/upgrades/getUpgradeSettings HTTP/1.1
Host: organization.domain.com
Content-Type: application/x-www-form-urlencoded
Content-Length: []

upgradeId={"id": "rel_08042022_3000"}&
f=pjson&
token=ycIwQVgej6UA_ZHHgltGsXCLRP815k4nLCiNyQEqGfWztsccgK5XdTEellUjToKS3D2UoHxGDPff4OblGKwRsXA0eb1kIIei4Bi-Ke20Nw-NSZR8Z7ILCDoxqbmOnZLoeTssYMTkd_q-_OA00Aw_W2PG5UuzLyTq2EuJBiw6eMM2hZl3AubVc9aYjblgBG4t2vT5as-IGdhOVrWf5aD7fh3L_pQ70zKCPUubzxTJYoA.

Once the list of upgrade settings is retrieved, modify the settings as necessary. For example, when upgrading an ArcGIS Enterprise on Kubernetes deployment from version 10.9.1 to 11.0, you must modify the value property for the licenseUpload JSON object to reflect the upload ID of an uploaded ArcGIS Enterprise on Kubernetes license file:


{
  "userInputs": [
    {
      "seqNum": 0,
      "defaultValue": false,
      "name": "updateToLatestPatch",
      "description": "updateToLatestPatch",
      "isManagerInvisibleField": true,
      "id": "updateToLatestPatch",
      "type": "Boolean",
      "value": true,
      "required": true,
      "newfield": ""
    },
    {
      "seqNum": 1,
      "validFileExtensions": ["json"],
      "name": "licenseUpload",
      "description": "licenseFieldDescToken",
      "id": "licenseUpload",
      "type": "File",
      "value": "caf81a83-b6a7-4810-9e7c-dbff96c6050a",
      "required": true,
      "newfield": ""
    }
  ]
}

Example two: upgrade settings

The following is a sample POST request for the upgrade operation, demonstrating a request that includes the upgradeSettings parameter, formatted for readability:


POST /context/admin/system/upgrades/upgrade HTTP/1.1
Host: organization.domain.com
Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryAMpB0mfM6ckdcpcb
Content-Length: []

------WebKitFormBoundaryAMpB0mfM6ckdcpcb
Content-Disposition: form-data; name="versionManifest"

{"id": "rel_08042022_3000"}
------WebKitFormBoundaryAMpB0mfM6ckdcpcb
Content-Disposition: form-data; name="versionManifestFile"; filename=""
Content-Type: application/octet-stream


------WebKitFormBoundaryAMpB0mfM6ckdcpcb
Content-Disposition: form-data; name="upgradeSettings"

{
  "userInputs": [
    {
      "seqNum": 0,
      "defaultValue": false,
      "name": "updateToLatestPatch",
      "description": "updateToLatestPatch",
      "isManagerInvisibleField": true,
      "id": "updateToLatestPatch",
      "type": "Boolean",
      "value": true,
      "required": true,
      "newfield": ""
    },
    {
      "seqNum": 1,
      "validFileExtensions": ["json"],
      "name": "licenseUpload",
      "description": "licenseFieldDescToken",
      "id": "licenseUpload",
      "type": "File",
      "value": "caf81a83-b6a7-4810-9e7c-dbff96c6050a",
      "required": true,
      "newfield": ""
    }
  ]
}
------WebKitFormBoundaryAMpB0mfM6ckdcpcb
Content-Disposition: form-data; name="f"

pjson
------WebKitFormBoundaryAMpB0mfM6ckdcpcb
Content-Disposition: form-data; name="token"

0jHz5AZks4ZnzSsq41P9mskVkzbEuwHXwb4xEidjFd-1oGxbgGyxDG4sWqgtZ6bQbN7zFRBmvvwItaIVhJOTeg56CWZsjysEidaN0rk191Y38oOmdqR15ktqSBGmDrQi0IIjIpE_Ff-oX3Fz0Pw_yOpBjD4mX7BVtnEK8_HAkjlUeEjPO7H7fEr-yMwHI47bDDktKhsGQ_7z6ujnVLOvM5qHjJRs487aKfa2P7TPSkF7oB41Z-JJRTIDcM8cGZGz
------WebKitFormBoundaryAMpB0mfM6ckdcpcb--

JSON Response examples

The example below demonstrates the immediate JSON response returned by a successful upgrade request.

Note:

When the current version of the deployment is represented, the version and build numbers are combined. For example, if the deployment version is 10.9.0 and the build number is 505, the current version is returned as 10.9.0.505. The version number is updated with each installed release, and the build number is updated with each update (either patch or release) installed. This representation is returned through the HTML view of the API, as well as in the upgrade job messages retained by the currentVersion and upgrades resources.


{
  "status": {
    "state": "in_progress",
    "code": 1,
    "messages": [
      {
        "message": "Starting the upgrade process from 10.9.0.505 to 10.9.0.506.",
        "when": 1601404416045,
        "code": 2010
      }
    ]
  }
}

Once the upgrade process is complete, the JSON view of the upgrades resource will return the full job messages of the job and success status. The example response is returned after a successful patch upgrade. Abbreviated information is denoted by an ellipsis (...).


{
  "status": {
    "code": 3,
    "messages": [
      {
        "code": 2010,
        "message": "Starting the upgrade process from 10.9.0.1089 to 10.9.0.1090.",
        "when": 1618594328897
      },
      {
        "code": 2168,
        "message": "Launching upgrader... ",
        "when": 1618594328914
      },
      {
        "code": 2165,
        "message": "System is going into Read-Only mode.",
        "when": 1618594338162
      },
      {
        "code": 2270,
        "message": "Preparing an upgrade plan.",
        "when": 1618594399266
      },
      {
        "code": 2287,
        "message": "Pre-diagnostics started.",
        "when": 1618594399759
      },
      {
        "code": 2288,
        "message": "Pre-diagnostics completed.",
        "when": 1618594399845
      },
      {
        "code": 2271,
        "message": "Executing upgrade plan.",
        "when": 1618594399867
      },
      {
        "code": 2291,
        "message": "Update of main core rest APIs module started.",
        "when": 1618594399908
      },
      {
        "code": 2173,
        "message": "2 out of 4 AgsDeployments updated. The patch upgrade of main core rest APIs has completed in 133808 millis (~ 2 minutes).",
        "when": 1618594533739
      },
      {
        "code": 2291,
        "message": "Update of monitoring components module started.",
        "when": 1618594563767
      },
      {
        "code": 2173,
        "message": "3 out of 4 AgsDeployments updated. The patch upgrade of monitoring components has completed in 35538 millis (~ 0 minutes).",
        "when": 1618594599306
      },
      {
        "code": 2291,
        "message": "Update of apps module started.",
        "when": 1618594599327
      },
      {
        "code": 2173,
        "message": "4 out of 4 AgsDeployments updated. The patch upgrade of apps has completed in 90445 millis (~ 1 minutes).",
        "when": 1618594689773
      },
      {
        "code": 2166,
        "message": "System is coming out of Read-Only mode.",
        "when": 1618594689802
      },
      {
        "code": 2179,
        "message": "Post-upgrade operations started.",
        "when": 1618594749855
      },
      {
        "code": 2011,
        "message": "The upgrade process from 10.9.0.1089 to 10.9.0.1090 has completed in 00hr:06min:51sec:729millisec.",
        "when": 1618594749879
      },
      {
        "code": 2012,
        "message": "The ArcGIS Enterprise on Kubernetes has been upgraded from 10.9.0.1089 to 10.9.0.1090 successfully.",
        "when": 1618594749879
      }
    ],
    "state": "success"
  }
}

The example response is returned after a successful release upgrade. Abbreviated information is denoted by an ellipsis (...).


{
  "status": {
    "code": 3,
    "messages": [
      {
        "code": 2010,
        "message": "Starting the upgrade process from 10.9.0.1089 to 10.9.0.2000.",
        "when": 1618592862466
      },
      {
        "code": 2168,
        "message": "Launching upgrader... ",
        "when": 1618592862743
      },
      {
        "code": 2165,
        "message": "System is going into Read-Only mode.",
        "when": 1618592876884
      },
      {
        "code": 2270,
        "message": "Preparing an upgrade plan.",
        "when": 1618592937143
      },
      {
        "code": 2287,
        "message": "Pre-diagnostics started.",
        "when": 1618592937706
      },
      {
        "code": 2094,
        "message": "Validate PostgreSQL database.",
        "when": 1618592937722
      },
      {
        "code": 2281,
        "message": "Perform Elasticsearch direct upgrade prerequisite check.",
        "when": 1618592938131
      },
      {
        "code": 2094,
        "message": "Validate PostgreSQL database.",
        "when": 1618592938156
      },
      {
        "code": 2288,
        "message": "Pre-diagnostics completed.",
        "when": 1618592938665
      },
      {
        "code": 2271,
        "message": "Executing upgrade plan.",
        "when": 1618592938665
      },
      {
        "code": 2108,
        "message": "Release upgrade of PostgreSQL started.",
        "when": 1618592938723
      },
      {
        "code": 2087,
        "message": "Set primary arcgis-relational-store-r80en-e7p0 in read only mode.",
        "when": 1618592938743
      },
      {
        "code": 2094,
        "message": "Validate PostgreSQL database.",
        "when": 1618592939439
      },
      {
        "code": 2090,
        "message": "Promote the original standby as a new primary arcgis-relational-store-r80en-bjkp.",
        "when": 1618592939586
      },
      {
        "code": 2144,
        "message": "Starting the postgres upgrade process from 12.4 to 12.4.",
        "when": 1618592946974
      },
      {
        "code": 2153,
        "message": "The postgres upgrade result: {\"configStore\":{\"status\":\"succeeded\"},\"gwdb\":{\"status\":\"succeeded\"},\"datastoreConfigStore\":{\"status\":\"succeeded\"},\"status\":\"succeeded\"}.",
        "when": 1618593158568
      },
      {
        "code": 2145,
        "message": "The postgres has been upgraded from 12.4 to 12.4.",
        "when": 1618593158590
      },
      {
        "code": 2109,
        "message": "Release upgrade of PostgreSQL completed.",
        "when": 1618593158590
      },
      {
        "code": 2175,
        "message": "2 out of 48 AgsDeployments updated. The release upgrade of postgres has completed in 219885 millis (~ 3 minutes).",
        "when": 1618593158606
      },
      {
        "code": 2134,
        "message": "Release upgrade of arcgis-queue-store started. ",
        "when": 1618593159839
      },
      {
        "code": 2134,
        "message": "Release upgrade of arcgis-object-store-ig9k8 started. ",
        "when": 1618593159839
      },
      {
        "code": 2134,
        "message": "Release upgrade of arcgis-in-memory-store-cgazf started. ",
        "when": 1618593159839
      },
      {
        "code": 2038,
        "message": "Updating statefulset arcgis-queue-store with new image:...",
        "when": 1618593159839
      },
      {
        "code": 2038,
        "message": "Updating statefulset arcgis-object-store-ig9k8 with new image:...",
        "when": 1618593159839
      },
      {
        "code": 2038,
        "message": "Updating statefulset arcgis-object-store-ig9k8 with new image:...",
        "when": 1618593159839
      },
      {
        "code": 2134,
        "message": "Release upgrade of arcgis-queue-store started. ",
        "when": 1618593159839
      },
      {
        "code": 2134,
        "message": "Release upgrade of arcgis-object-store-ig9k8 started. ",
        "when": 1618593159839
      },
      {
        "code": 2134,
        "message": "Release upgrade of arcgis-in-memory-store-cgazf started. ",
        "when": 1618593159839
      },
      {
        "code": 2038,
        "message": "Updating statefulset arcgis-queue-store with new image:...",
        "when": 1618593159839
      },
      {
        "code": 2038,
        "message": "Updating statefulset arcgis-object-store-ig9k8 with new image:...",
        "when": 1618593159839
      },
      {
        "code": 2038,
        "message": "Updating statefulset arcgis-object-store-ig9k8 with new image:...",
        "when": 1618593159839
      },
      {
        "code": 2038,
        "message": "Updating statefulset arcgis-object-store-ig9k8 with new image:...",
        "when": 1618593159861
      },
      {
        "code": 2038,
        "message": "Updating statefulset arcgis-queue-store with new image:...",
        "when": 1618593159881
      },
      {
        "code": 2038,
        "message": "Updating statefulset arcgis-spatiotemporal-index-store-iucrb-coordinator with new image:...",
        "when": 1618593159888
      },
      {
        "code": 2038,
        "message": "Updating statefulset arcgis-spatiotemporal-index-store-iucrb-coordinator with new image:...",
        "when": 1618593159888
      },
      {
        "code": 2038,
        "message": "Updating statefulset arcgis-in-memory-store-cgazf with new image:...",
        "when": 1618593159891
      },
      {
        "code": 2132,
        "message": "Release upgrade of arcgis-in-memory-store-cgazf completed.",
        "when": 1618593162228
      },
      {
        "code": 2132,
        "message": "Release upgrade of arcgis-spatiotemporal-index-store-iucrb-coordinator completed.",
        "when": 1618593162322
      },
      {
        "code": 2187,
        "message": "Updating portal content started.",
        "when": 1618593194932
      },
      {
        "code": 2188,
        "message": "Updating portal content completed.",
        "when": 1618593194991
      },
      {
        "code": 2132,
        "message": "Release upgrade of arcgis-queue-store completed.",
        "when": 1618593230455
      },
      {
        "code": 2132,
        "message": "Release upgrade of arcgis-object-store-ig9k8 completed.",
        "when": 1618593327082
      },
      {
        "code": 2175,
        "message": "6 out of 48 AgsDeployments updated. The release upgrade of data stores has completed in 168449 millis (~ 2 minutes).",
        "when": 1618593327083
      },
      {
        "code": 2101,
        "message": "Release upgrade of deployment rest-administrator-api started. ",
        "when": 1618593327107
      },
      {
        "code": 2103,
        "message": "Release upgrade of deployment rest-administrator-api completed.",
        "when": 1618593327213
      },
      {
        "code": 2101,
        "message": "Release upgrade of deployment rest-portal-api started. ",
        "when": 1618593327230
      },
      {
        "code": 2103,
        "message": "Release upgrade of deployment rest-portal-api completed.",
        "when": 1618593328429
      },
      {
        "code": 2101,
        "message": "Release upgrade of deployment enterprise-manager started. ",
        "when": 1618593328449
      },
      {
        "code": 2103,
        "message": "Release upgrade of deployment enterprise-manager completed.",
        "when": 1618593328524
      },
      {
        "code": 2101,
        "message": "Release upgrade of deployment enterprise-portal started. ",
        "when": 1618593328542
      },
      {
        "code": 2103,
        "message": "Release upgrade of deployment enterprise-portal completed.",
        "when": 1618593328602
      },
      {
        "code": 2175,
        "message": "10 out of 48 AgsDeployments updated. The release upgrade of deployments has completed in 1515 millis (~ 0 minutes).",
        "when": 1618593328620
      },
      {
        "code": 2148,
        "message": "Post upgrade of PostgreSQL started.",
        "when": 1618593328647
      },
      {
        "code": 2151,
        "message": "Notify role change so that other part of the system can connect to the correct primary instance",
        "when": 1618593328671
      },
      {
        "code": 2087,
        "message": "Set primary arcgis-relational-store-r80en-bjkp in read only mode.",
        "when": 1618593460672
      },
      {
        "code": 2092,
        "message": "Add new standby arcgis-relational-store-r80en-e7p0 and connect and setup replication.",
        "when": 1618593461274
      },
      {
        "code": 2093,
        "message": "Set new primary arcgis-relational-store-r80en-bjkp in read write mode.",
        "when": 1618593568975
      },
      {
        "code": 2149,
        "message": "Post upgrade of PostgreSQL completed.",
        "when": 1618593569220
      },
      {
        "code": 2175,
        "message": "10 out of 48 AgsDeployments updated. The release upgrade of postgres postupgrade has completed in 240589 millis (~ 4 minutes).",
        "when": 1618593569237
      },
      {
        "code": 2187,
        "message": "Updating portal content started.",
        "when": 1618594026368
      },
      {
        "code": 2188,
        "message": "Updating portal content completed.",
        "when": 1618594028390
      },
      {
        "code": 2175,
        "message": "10 out of 48 AgsDeployments updated. The release upgrade of post deployments has completed in 606957 millis (~ 10 minutes).",
        "when": 1618594176216
      },
      {
        "code": 2134,
        "message": "Release upgrade of ingress-controller started. ",
        "when": 1618594177037
      },
      {
        "code": 2038,
        "message": "Updating deployment ingress-controller with new image:...",
        "when": 1618594177037
      },
      {
        "code": 2134,
        "message": "Release upgrade of private-ingress-controller started. ",
        "when": 1618594177037
      },
      {
        "code": 2038,
        "message": "Updating deployment private-ingress-controller with new image:...",
        "when": 1618594177038
      },
      {
        "code": 2132,
        "message": "Release upgrade of ingress-controller completed.",
        "when": 1618594207248
      },
      {
        "code": 2132,
        "message": "Release upgrade of private-ingress-controller completed.",
        "when": 1618594237348
      },
      {
        "code": 2175,
        "message": "12 out of 48 AgsDeployments updated. The release upgrade of ingress controllers has completed in 61114 millis (~ 1 minutes).",
        "when": 1618594237350
      },
      {
        "code": 2134,
        "message": "Release upgrade of service-lifecycle-manager started. ",
        "when": 1618594238183
      },
      {
        "code": 2038,
        "message": "Updating deployment service-lifecycle-manager with new image:...",
        "when": 1618594238183
      },
      {
        "code": 2134,
        "message": "Release upgrade of rest-services-api started. ",
        "when": 1618594238183
      },
      {
        "code": 2038,
        "message": "Updating deployment rest-services-api with new image:...",
        "when": 1618594238184
      },
      {
        "code": 2132,
        "message": "Release upgrade of service-lifecycle-manager completed.",
        "when": 1618594419453
      },
      {
        "code": 2132,
        "message": "Release upgrade of rest-services-api completed.",
        "when": 1618594478774
      },
      {
        "code": 2175,
        "message": "14 out of 48 AgsDeployments updated. The release upgrade of gis services prerequisites has completed in 241393 millis (~ 4 minutes).",
        "when": 1618594478775
      },
      {
        "code": 2134,
        "message": "Release upgrade of utilities-geometry-geometryserver started. ",
        "when": 1618594514804
      },
      {
        "code": 2038,
        "message": "Updating deployment utilities-geometry-geometryserver with new image:...",
        "when": 1618594514804
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-reportingtools-gpserver started. ",
        "when": 1618594514804
      },
      {
        "code": 2038,
        "message": "Updating deployment system-reportingtools-gpserver with new image:...",
        "when": 1618594514805
      },
      {
        "code": 2134,
        "message": "Release upgrade of utilities-geometry-geometryserver started. ",
        "when": 1618594514804
      },
      {
        "code": 2038,
        "message": "Updating deployment utilities-geometry-geometryserver with new image:...",
        "when": 1618594514804
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-reportingtools-gpserver started. ",
        "when": 1618594514804
      },
      {
        "code": 2038,
        "message": "Updating deployment system-reportingtools-gpserver with new image:...",
        "when": 1618594514805
      },
      {
        "code": 2134,
        "message": "Release upgrade of shared-mapserver started. ",
        "when": 1618594514805
      },
      {
        "code": 2134,
        "message": "Release upgrade of sampleworldcities-mapserver started. ",
        "when": 1618594514805
      },
      {
        "code": 2038,
        "message": "Updating deployment shared-mapserver with new image:...",
        "when": 1618594514857
      },
      {
        "code": 2038,
        "message": "Updating deployment sampleworldcities-mapserver with new image:...",
        "when": 1618594514868
      },
      {
        "code": 2132,
        "message": "Release upgrade of shared-mapserver completed.",
        "when": 1618594605382
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-spatialanalysistools-gpserver started. ",
        "when": 1618594605383
      },
      {
        "code": 2038,
        "message": "Updating deployment system-spatialanalysistools-gpserver with new image:...",
        "when": 1618594605402
      },
      {
        "code": 2132,
        "message": "Release upgrade of sampleworldcities-mapserver completed.",
        "when": 1618594605482
      },
      {
        "code": 2134,
        "message": "Release upgrade of utilities-geocodingtools-gpserver started. ",
        "when": 1618594605482
      },
      {
        "code": 2038,
        "message": "Updating deployment utilities-geocodingtools-gpserver with new image:...",
        "when": 1618594605482
      },
      {
        "code": 2132,
        "message": "Release upgrade of utilities-geometry-geometryserver completed.",
        "when": 1618594635410
      },
      {
        "code": 2134,
        "message": "Release upgrade of utilities-offlinepackaging-gpserver started. ",
        "when": 1618594635410
      },
      {
        "code": 2038,
        "message": "Updating deployment utilities-offlinepackaging-gpserver with new image:...",
        "when": 1618594635410
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-reportingtools-gpserver completed.",
        "when": 1618594635465
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-cachingcontrollers-gpserver started. ",
        "when": 1618594635493
      },
      {
        "code": 2038,
        "message": "Updating deployment system-cachingcontrollers-gpserver with new image:...",
        "when": 1618594635493
      },
      {
        "code": 2132,
        "message": "Release upgrade of utilities-geocodingtools-gpserver completed.",
        "when": 1618594725892
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-cachingtools-gpserver started. ",
        "when": 1618594725893
      },
      {
        "code": 2038,
        "message": "Updating deployment system-cachingtools-gpserver with new image:...",
        "when": 1618594725911
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-spatialanalysistools-gpserver completed.",
        "when": 1618594755807
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-featureservicetools-gpserver started. ",
        "when": 1618594755807
      },
      {
        "code": 2038,
        "message": "Updating deployment system-featureservicetools-gpserver with new image:...",
        "when": 1618594755807
      },
      {
        "code": 2132,
        "message": "Release upgrade of utilities-offlinepackaging-gpserver completed.",
        "when": 1618594755854
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-publishingtools-gpserver started. ",
        "when": 1618594755875
      },
      {
        "code": 2038,
        "message": "Updating deployment system-publishingtools-gpserver with new image:...",
        "when": 1618594755875
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-cachingcontrollers-gpserver completed.",
        "when": 1618594756094
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-scenecachingcontrollers-gpserver started. ",
        "when": 1618594756095
      },
      {
        "code": 2038,
        "message": "Updating deployment system-scenecachingcontrollers-gpserver with new image:...",
        "when": 1618594756147
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-scenecachingcontrollers-gpserver completed.",
        "when": 1618594756204
      },
      {
        "code": 2134,
        "message": "Release upgrade of utilities-printingtools-gpserver started. ",
        "when": 1618594756205
      },
      {
        "code": 2038,
        "message": "Updating deployment utilities-printingtools-gpserver with new image:...",
        "when": 1618594756205
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-featureservicetools-gpserver completed.",
        "when": 1618594876108
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-scenecachingtools-gpserver started. ",
        "when": 1618594876108
      },
      {
        "code": 2038,
        "message": "Updating deployment system-scenecachingtools-gpserver with new image:...",
        "when": 1618594876108
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-scenecachingtools-gpserver completed.",
        "when": 1618594876125
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-synctools-gpserver started. ",
        "when": 1618594876147
      },
      {
        "code": 2038,
        "message": "Updating deployment system-synctools-gpserver with new image:...",
        "when": 1618594876147
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-publishingtools-gpserver completed.",
        "when": 1618594876306
      },
      {
        "code": 2134,
        "message": "Release upgrade of shared-featureserver started. ",
        "when": 1618594876313
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-cachingtools-gpserver completed.",
        "when": 1618594876316
      },
      {
        "code": 2038,
        "message": "Updating deployment shared-featureserver with new image:...",
        "when": 1618594876343
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-cachingtools-gpsyncserver started. ",
        "when": 1618594876382
      },
      {
        "code": 2038,
        "message": "Updating deployment system-cachingtools-gpsyncserver with new image:...",
        "when": 1618594876382
      },
      {
        "code": 2132,
        "message": "Release upgrade of utilities-printingtools-gpserver completed.",
        "when": 1618594876582
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-cachingcontrollers-gpsyncserver started. ",
        "when": 1618594876602
      },
      {
        "code": 2038,
        "message": "Updating deployment system-cachingcontrollers-gpsyncserver with new image:...",
        "when": 1618594876602
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-cachingtools-gpsyncserver completed.",
        "when": 1618594909255
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-scenecachingcontrollers-gpsyncserver started. ",
        "when": 1618594909255
      },
      {
        "code": 2038,
        "message": "Updating deployment system-scenecachingcontrollers-gpsyncserver with new image:...",
        "when": 1618594909282
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-scenecachingcontrollers-gpsyncserver completed.",
        "when": 1618594909340
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-spatialanalysistools-gpsyncserver started. ",
        "when": 1618594909340
      },
      {
        "code": 2038,
        "message": "Updating deployment system-spatialanalysistools-gpsyncserver with new image:...",
        "when": 1618594909340
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-cachingcontrollers-gpsyncserver completed.",
        "when": 1618594911449
      },
      {
        "code": 2134,
        "message": "Release upgrade of utilities-geocodingtools-gpsyncserver started. ",
        "when": 1618594911449
      },
      {
        "code": 2038,
        "message": "Updating deployment utilities-geocodingtools-gpsyncserver with new image:...",
        "when": 1618594911449
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-spatialanalysistools-gpsyncserver completed.",
        "when": 1618594939479
      },
      {
        "code": 2134,
        "message": "Release upgrade of utilities-printingtools-gpsyncserver started. ",
        "when": 1618594939500
      },
      {
        "code": 2038,
        "message": "Updating deployment utilities-printingtools-gpsyncserver with new image:...",
        "when": 1618594939500
      },
      {
        "code": 2132,
        "message": "Release upgrade of utilities-geocodingtools-gpsyncserver completed.",
        "when": 1618594941589
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-synctools-gpsyncserver started. ",
        "when": 1618594941589
      },
      {
        "code": 2038,
        "message": "Updating deployment system-synctools-gpsyncserver with new image:...",
        "when": 1618594941609
      },
      {
        "code": 2132,
        "message": "Release upgrade of utilities-printingtools-gpsyncserver completed.",
        "when": 1618594969637
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-scenecachingtools-gpsyncserver started. ",
        "when": 1618594969637
      },
      {
        "code": 2038,
        "message": "Updating deployment system-scenecachingtools-gpsyncserver with new image:...",
        "when": 1618594969637
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-scenecachingtools-gpsyncserver completed.",
        "when": 1618594969681
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-publishingtools-gpsyncserver started. ",
        "when": 1618594969681
      },
      {
        "code": 2038,
        "message": "Updating deployment system-publishingtools-gpsyncserver with new image:...",
        "when": 1618594969681
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-synctools-gpsyncserver completed.",
        "when": 1618594971792
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-reportingtools-gpsyncserver started. ",
        "when": 1618594971812
      },
      {
        "code": 2038,
        "message": "Updating deployment system-reportingtools-gpsyncserver with new image:...",
        "when": 1618594971812
      },
      {
        "code": 2132,
        "message": "Release upgrade of shared-featureserver completed.",
        "when": 1618594996734
      },
      {
        "code": 2134,
        "message": "Release upgrade of utilities-offlinepackaging-gpsyncserver started. ",
        "when": 1618594996734
      },
      {
        "code": 2038,
        "message": "Updating deployment utilities-offlinepackaging-gpsyncserver with new image:...",
        "when": 1618594996753
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-reportingtools-gpsyncserver completed.",
        "when": 1618595001987
      },
      {
        "code": 2134,
        "message": "Release upgrade of system-featureservicetools-gpsyncserver started. ",
        "when": 1618595001987
      },
      {
        "code": 2038,
        "message": "Updating deployment system-featureservicetools-gpsyncserver with new image:...",
        "when": 1618595001987
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-synctools-gpserver completed.",
        "when": 1618595026514
      },
      {
        "code": 2132,
        "message": "Release upgrade of utilities-offlinepackaging-gpsyncserver completed.",
        "when": 1618595026955
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-publishingtools-gpsyncserver completed.",
        "when": 1618595029836
      },
      {
        "code": 2132,
        "message": "Release upgrade of system-featureservicetools-gpsyncserver completed.",
        "when": 1618595032143
      },
      {
        "code": 2175,
        "message": "42 out of 48 AgsDeployments updated. The release upgrade of gis services has completed in 523371 millis (~ 8 minutes).",
        "when": 1618595032168
      },
      {
        "code": 2134,
        "message": "Release upgrade of metrics-viewer started. ",
        "when": 1618595033014
      },
      {
        "code": 2038,
        "message": "Updating deployment metrics-viewer with new image:...",
        "when": 1618595033014
      },
      {
        "code": 2134,
        "message": "Release upgrade of rest-metrics-api started. ",
        "when": 1618595033014
      },
      {
        "code": 2038,
        "message": "Updating deployment rest-metrics-api with new image:...",
        "when": 1618595033015
      },
      {
        "code": 2132,
        "message": "Release upgrade of metrics-viewer completed.",
        "when": 1618595068237
      },
      {
        "code": 2132,
        "message": "Release upgrade of rest-metrics-api completed.",
        "when": 1618595068311
      },
      {
        "code": 2175,
        "message": "44 out of 48 AgsDeployments updated. The release upgrade of monitoring components has completed in 36099 millis (~ 0 minutes).",
        "when": 1618595068313
      },
      {
        "code": 2134,
        "message": "Release upgrade of enterprise-web-style-app started. ",
        "when": 1618595069540
      },
      {
        "code": 2038,
        "message": "Updating deployment enterprise-web-style-app with new image:...",
        "when": 1618595069540
      },
      {
        "code": 2134,
        "message": "Release upgrade of enterprise-help started. ",
        "when": 1618595069540
      },
      {
        "code": 2038,
        "message": "Updating deployment enterprise-help with new image:...",
        "when": 1618595069540
      },
      {
        "code": 2134,
        "message": "Release upgrade of enterprise-apps started. ",
        "when": 1618595069540
      },
      {
        "code": 2038,
        "message": "Updating deployment javascript-api with new image:...",
        "when": 1618595069596
      },
      {
        "code": 2038,
        "message": "Updating deployment enterprise-apps with new image:...",
        "when": 1618595069607
      },
      {
        "code": 2132,
        "message": "Release upgrade of enterprise-apps completed.",
        "when": 1618595220096
      },
      {
        "code": 2132,
        "message": "Release upgrade of enterprise-help completed.",
        "when": 1618595249926
      },
      {
        "code": 2132,
        "message": "Release upgrade of javascript-api completed.",
        "when": 1618595430045
      },
      {
        "code": 2132,
        "message": "Release upgrade of enterprise-web-style-app completed.",
        "when": 1618595670098
      },
      {
        "code": 2175,
        "message": "48 out of 48 AgsDeployments updated. The release upgrade of apps has completed in 601760 millis (~ 10 minutes).",
        "when": 1618595670098
      },
      {
        "code": 2166,
        "message": "System is coming out of Read-Only mode.",
        "when": 1618595670131
      },
      {
        "code": 2179,
        "message": "Post-upgrade operations started.",
        "when": 1618595730215
      },
      {
        "code": 2180,
        "message": "Post-upgrade operations started for logging.",
        "when": 1618595730238
      },
      {
        "code": 2181,
        "message": "Post-upgrade operations succeeded for logging.",
        "when": 1618595736617
      },
      {
        "code": 2178,
        "message": "Refreshing autodeployed services post-upgrade started.",
        "when": 1618595736640
      },
      {
        "code": 2185,
        "message": "Refreshing autodeployed services post-upgrade completed.",
        "when": 1618595736707
      },
      {
        "code": 2191,
        "message": "Refreshing portal search indices for items, groups and users.",
        "when": 1618595736744
      },
      {
        "code": 2192,
        "message": "Refreshing portal indices completed successfully.",
        "when": 1618595854288
      },
      {
        "code": 2011,
        "message": "The upgrade process from 10.9.0.1089 to 10.9.0.2000 has completed in 00hr:49min:37sec:435millisec.",
        "when": 1618595854318
      },
      {
        "code": 2012,
        "message": "The ArcGIS Enterprise on Kubernetes has been upgraded from 10.9.0.1089 to 10.9.0.2000 successfully.",
        "when": 1618595854318
      }
    ],
    "state": "success"
  }
}