Skip to content

checkClusterRuSupport

Check if a cluster supports Rolling Upgrade (RU) based on its workload types.

Arguments

Argument Type Description
clusterId (required) String! Specifies the cluster UUID.

Returns

CheckClusterRuSupportReply!

Sample

query CheckClusterRuSupport($clusterId: String!) {
  checkClusterRuSupport(clusterId: $clusterId) {
    clusterUuid
    isRuSupported
    ruUnsupportabilityReason
  }
}
{
  "clusterId": "example-string"
}
{
  "data": {
    "checkClusterRuSupport": {
      "clusterUuid": "example-string",
      "isRuSupported": true,
      "ruUnsupportabilityReason": "example-string"
    }
  }
}