update_kubernetes_cluster
Modify a Kubernetes cluster's configuration by updating its label using either the cluster name or ID for identification.
Instructions
Update a Kubernetes cluster configuration. Smart identifier resolution: use cluster label or UUID.
Args: cluster_identifier: The cluster label or ID label: New label for the cluster
Returns: Update status message
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| cluster_identifier | Yes | ||
| label | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "cluster_identifier": {
      "title": "Cluster Identifier",
      "type": "string"
    },
    "label": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Label"
    }
  },
  "required": [
    "cluster_identifier"
  ],
  "type": "object"
}