Skip to content

Commit ab9633f

Browse files
authored
Merge pull request #731 from linode/development
[Hotfix] Release 4.141.0a
2 parents 25b8fc9 + a5f36b5 commit ab9633f

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

openapi.yaml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1248,6 +1248,7 @@ paths:
12481248
x-linode-cli-action: maintenance-list
12491249
security:
12501250
- personalAccessToken: []
1251+
- oauth: []
12511252
responses:
12521253
'200':
12531254
description: Returns a paginated list of Maintenance objects.
@@ -6207,7 +6208,7 @@ paths:
62076208
-X POST -d '{
62086209
"type": "A",
62096210
"name": "test",
6210-
"target": "12.34.56.78",
6211+
"target": "203.0.113.1",
62116212
"priority": 50,
62126213
"weight": 50,
62136214
"port": 80,
@@ -6221,7 +6222,7 @@ paths:
62216222
linode-cli domains records-create 123 \
62226223
--type A \
62236224
--name test \
6224-
--target 12.34.56.78 \
6225+
--target 203.0.113.1 \
62256226
--priority 50 \
62266227
--weight 50 \
62276228
--port 80 \
@@ -6308,7 +6309,7 @@ paths:
63086309
-X PUT -d '{
63096310
"type": "A",
63106311
"name": "test",
6311-
"target": "12.34.56.78",
6312+
"target": "203.0.113.1",
63126313
"priority": 50,
63136314
"weight": 50,
63146315
"port": 80,
@@ -6323,7 +6324,7 @@ paths:
63236324
linode-cli domains records-update 123 234 \
63246325
--type A \
63256326
--name test \
6326-
--target 12.34.56.78 \
6327+
--target 203.0.113.1 \
63276328
--priority 50 \
63286329
--weight 50 \
63296330
--port 80 \
@@ -10182,7 +10183,7 @@ paths:
1018210183
-X POST -d '{
1018310184
"label": "cluster12345",
1018410185
"region": "us-central",
10185-
"k8s_version": "1.23",
10186+
"k8s_version": "1.24",
1018610187
"tags": ["ecomm", "blogs"],
1018710188
"control_plane": {
1018810189
"high_availability": true
@@ -10209,7 +10210,7 @@ paths:
1020910210
linode-cli lke cluster-create \
1021010211
--label cluster12345 \
1021110212
--region us-central \
10212-
--k8s_version 1.23 \
10213+
--k8s_version 1.24 \
1021310214
--control_plane.high_availability true \
1021410215
--node_pools.type g6-standard-4 --node_pools.count 6 \
1021510216
--node_pools.type g6-standard-8 --node_pools.count 3 \
@@ -10369,7 +10370,7 @@ paths:
1036910370
linode-cli lke cluster-update 12345 \
1037010371
--label lkecluster54321 \
1037110372
--control_plane.high_availability true \
10372-
--k8s_version 1.23 \
10373+
--k8s_version 1.24 \
1037310374
--tags ecomm \
1037410375
--tags blog \
1037510376
--tags prod \
@@ -11185,10 +11186,10 @@ paths:
1118511186
- lang: Shell
1118611187
source: >
1118711188
curl -H "Authorization: Bearer $TOKEN" \
11188-
https://api.linode.com/v4/lke/versions/1.23
11189+
https://api.linode.com/v4/lke/versions/1.24
1118911190
- lang: CLI
1119011191
source: >
11191-
linode-cli lke version-view 1.23
11192+
linode-cli lke version-view 1.24
1119211193
/longview/clients:
1119311194
x-linode-cli-command: longview
1119411195
get:
@@ -12393,7 +12394,7 @@ paths:
1239312394
"ssh": {
1239412395
"access": true,
1239512396
"user": "linode",
12396-
"ip": "12.34.56.78",
12397+
"ip": "203.0.113.1",
1239712398
"port": 22
1239812399
}
1239912400
}' \
@@ -12405,7 +12406,7 @@ paths:
1240512406
--ssh.access true \
1240612407
--ssh.user linode \
1240712408
--ssh.port 22 \
12408-
--ssh.ip 12.34.56.78
12409+
--ssh.ip 203.0.113.1
1240912410
/managed/services:
1241012411
x-linode-cli-command: managed
1241112412
get:
@@ -23587,7 +23588,7 @@ components:
2358723588
description: >
2358823589
The desired Kubernetes version for this Kubernetes cluster in the format of <major>.<minor>,
2358923590
and the latest supported patch version will be deployed.
23590-
example: "1.23"
23591+
example: "1.24"
2359123592
control_plane:
2359223593
type: object
2359323594
description: >
@@ -23788,7 +23789,7 @@ components:
2378823789
A Kubernetes version number available for deployment
2378923790
to a Kubernetes cluster in the format of <major>.<minor>,
2379023791
and the latest supported patch version.
23791-
example: "1.23"
23792+
example: "1.24"
2379223793
LongviewClient:
2379323794
type: object
2379423795
description: >
@@ -24277,7 +24278,7 @@ components:
2427724278
when responding to an Issue.
2427824279

2427924280
By default, any of a Linode's IP addresses can be used for incident response access.
24280-
example: "12.34.56.78"
24281+
example: "203.0.113.1"
2428124282
default: any
2428224283
port:
2428324284
type: integer
@@ -24461,7 +24462,7 @@ components:
2446124462
format: ip
2446224463
description: >
2446324464
This NodeBalancer's public IPv4 address.
24464-
example: 12.34.56.78
24465+
example: 203.0.113.1
2446524466
readOnly: true
2446624467
x-linode-cli-display: 5
2446724468
ipv6:
@@ -26608,7 +26609,7 @@ components:
2660826609
type: string
2660926610
description: >
2661026611
The last IP Address to successfully authenticate with this TrustedDevice.
26611-
example: 12.34.56.78
26612+
example: 203.0.113.1
2661226613
readOnly: true
2661326614
SecurityQuestion:
2661426615
type: object

0 commit comments

Comments
 (0)