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
View JSON Schema on GitHub

JSON Schema

linode-lkeclusterupdaterequest-schema.json Raw ↑
{
  "$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."
        }
      }
    }
  }
}