All Products
Search
Document Center

:DescribeClusterAddonUpgradeStatus

Last Updated:Dec 22, 2025
This API is deprecated. You are advised to use CS(2015-12-15) - DescribeClusterAddonsUpgradeStatus.

You can call the DescribeClusterAddonUpgradeStatus operation to query the update progress of a cluster component.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • For mandatory resource types, indicate with a prefix of * .
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
cs:QueryK8sComponentUpgradeStatusget
*Cluster
acs:cs:{#regionId}:{#accountId}:cluster/{#ClusterId}
    none
none

Request syntax

GET /clusters/{ClusterId}/components/{ComponentId}/upgradestatus HTTP/1.1

Request parameters

ParameterTypeRequiredDescriptionExample
ClusterIdstringYes

The cluster ID.

c106f377e16f34eb1808d6b9362c9****
ComponentIdstringYes

The component ID. Example: nginx-ingress-controller, flexvolume, or metrics-server.

You can call the DescribeAddons API operation to query the components supported by the cluster.

cloud-controller-manager

Response parameters

ParameterTypeDescriptionExample
object

The response body.

object

The details of the upgrade progress of the queried component.

addon_infoobject

The information about the component.

component_namestring

The component name.

cloud-controller-manager
versionstring

The current version of the component.

v1.9.3.340-g9830b58-aliyun
ready_to_upgradestring

Indicates whether the component meets the update conditions. Valid values:

  • true: The component meets the update conditions.
  • false: The component does not meet the update conditions.
true
tasksobject

The details of the update task.

created_atstring

The time when the update task started.

0001-01-01T00:00:00Z
finished_atstring

The time when the update task completed.

0001-01-01T00:00:00Z
statusstring

The status of the update task.

Success
is_canceledboolean

Indicates whether the update task was canceled. Valid values:

  • true: The update task was canceled.
  • false: The update task was not canceled.
false

Examples

Sample success responses

JSONformat

{
  "key": {
    "addon_info": {
      "component_name": "cloud-controller-manager",
      "version": "v1.9.3.340-g9830b58-aliyun",
      "ready_to_upgrade": true
    },
    "tasks": {
      "created_at": "0001-01-01T00:00:00Z",
      "finished_at": "0001-01-01T00:00:00Z",
      "status": "Success",
      "is_canceled": false
    }
  }
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history