From 643ec225ed35e9c13315b6dae2a36183d1c47387 Mon Sep 17 00:00:00 2001 From: rsyracuse Date: Fri, 5 Nov 2021 18:49:01 -0400 Subject: [PATCH] HA beta info --- openapi.yaml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index 6d6fee544..e6f2947ab 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -7471,6 +7471,16 @@ paths: - count items: $ref: '#/components/schemas/LKENodePoolRequestBody' + control_plane: + type: object + description: > + Defines settings for the Kubernetes Control Plane. Allows for the enabling of High Availability (HA) for Control Plane Components. Enabling High Avaialability for LKE is an **irreversible** change. The High Availability feature is in a **closed beta** and is not currently available to all customers. Please be aware that this feature may receive breaking updates in the future. This notice will be removed when this feature is out of beta. + properties: + high_availability: + type: boolean + description: > + Defines whether High Availability is enabled for the Control Plane Components of the cluster. Defaults to `false`. + example: true responses: '200': description: Kubernetes cluster creation has started. @@ -7490,6 +7500,9 @@ paths: "region": "us-central", "k8s_version": "1.21", "tags": ["ecomm", "blogs"], + "control_plane": { + "high_availability": true + }, "node_pools": [ { "type": "g6-standard-4", @@ -7600,6 +7613,18 @@ paths: The Kubernetes version of a cluster can not be downgraded. + control_plane: + type: object + description: > + Defines settings for the Kubernetes Control Plane. Allows for the enabling of High Availability (HA) for Control Plane Components. + + Enabling High Availability for LKE is an **irreversible** change. The High Availability feature is in a **closed beta** and is not currently available to all customers. Please be aware that this feature may receive breaking updates in the future. This notice will be removed when this feature is out of beta. + properties: + high_availability: + type: boolean + description: > + Defines whether High Availability is enabled for the Control Plane Components of the cluster. Defaults to `false`. + example: true responses: '200': description: Returns a single Kubernetes cluster. @@ -7637,6 +7662,9 @@ paths: -X PUT -d '{ "label": "lkecluster54321" "tags" : ["ecomm", "blog", "prod", "monitoring"] + "control_plane": { + "high_availability": true + }, "k8s_version": "1.17" }' \ https://api.linode.com/v4/lke/clusters/12345 @@ -19099,6 +19127,16 @@ components: The desired Kubernetes version for this Kubernetes cluster in the format of <major>.<minor>, and the latest supported patch version will be deployed. example: "1.21" + control_plane: + type: object + description: > + Defines settings for the Kubernetes Control Plane. Allows for the enabling of High Availability (HA) for Control Plane Components. Enabling High Avaialability for LKE is an **irreversible** change. The High Availability feature is in a **closed beta** and is not currently available to all customers. Please be aware that this feature may receive breaking updates in the future. This notice will be removed when this feature is out of beta. + properties: + high_availability: + type: boolean + description: > + Defines whether High Availability is enabled for the Control Plane Components of the cluster. Defaults to `false`. + example: true tags: x-linode-filterable: true type: array