Skip to content

[Hotfix] v4.108.1 (merge master into development) #558

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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",
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down