linode · Schema
LKEClusterUpdateRequest
Properties
| Name | Type | Description |
|---|---|---|
| label | string | The label for the cluster. |
| tags | array | Tags for the cluster. |
| k8s_version | string | The target Kubernetes version. |
| control_plane | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LKEClusterUpdateRequest",
"title": "LKEClusterUpdateRequest",
"type": "object",
"properties": {
"label": {
"type": "string",
"minLength": 1,
"maxLength": 32,
"description": "The label for the cluster."
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Tags for the cluster."
},
"k8s_version": {
"type": "string",
"description": "The target Kubernetes version."
},
"control_plane": {
"type": "object",
"properties": {
"high_availability": {
"type": "boolean",
"description": "Whether to enable high availability."
}
}
}
}
}