Skip to content

Commit 9460361

Browse files
Merge pull request #238 from leslitagordita/update-lke-version-field
[Update] LKE collection property `version` to k8s_version
2 parents 792a22e + 501a06d commit 9460361

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

openapi.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6091,7 +6091,7 @@ paths:
60916091
required:
60926092
- label
60936093
- region
6094-
- version
6094+
- k8s_version
60956095
- node_pools
60966096
allOf:
60976097
- $ref: '#/components/schemas/LKEClusterRequestBody'
@@ -6117,7 +6117,7 @@ paths:
61176117
-X POST -d '{
61186118
"label": "cluster12345",
61196119
"region": "us-central",
6120-
"version": "1.16",
6120+
"k8s_version": "1.16",
61216121
"tags": ["ecomm", "blogs"],
61226122
"node_pools": [
61236123
{ "type": "g6-standard-4", "count": 6},
@@ -6130,7 +6130,7 @@ paths:
61306130
linode-cli lke cluster-create \
61316131
--label cluster12345 \
61326132
--region us-central \
6133-
--version 1.16 \
6133+
--k8s_version 1.16 \
61346134
--node_pools.type g6-standard-4 --node_pools.count 6 \
61356135
--node_pools.type g6-standard-8 --node_pools.count 3 \
61366136
--tags ecomm
@@ -6248,8 +6248,8 @@ paths:
62486248
$ref: '#/components/schemas/LKECluster/properties/updated'
62496249
region:
62506250
$ref: '#/components/schemas/LKECluster/properties/region'
6251-
version:
6252-
$ref: '#/components/schemas/LKECluster/properties/version'
6251+
k8s_version:
6252+
$ref: '#/components/schemas/LKECluster/properties/k8s_version'
62536253
x-code-samples:
62546254
- lang: Shell
62556255
source: >
@@ -15700,7 +15700,7 @@ components:
1570015700
type: string
1570115701
description: This Kubernetes cluster's location.
1570215702
example: us-central
15703-
version:
15703+
k8s_version:
1570415704
type: string
1570515705
description: >
1570615706
The desired Kubernetes version for this Kubernetes cluster in the format of <major>.<minor>,
@@ -15718,7 +15718,7 @@ components:
1571815718
required:
1571915719
- label
1572015720
- region
15721-
- version
15721+
- k8s_version
1572215722
LKECluster:
1572315723
type: object
1572415724
# Note that LKECluster inherits all properties of
@@ -15754,7 +15754,7 @@ components:
1575415754
readOnly: true
1575515755
x-linode-cli-display: 3
1575615756
example: us-central
15757-
version:
15757+
k8s_version:
1575815758
example: "1.16"
1575915759
tags:
1576015760
example:

0 commit comments

Comments
 (0)