1
1
openapi: 3.0.1
2
2
info:
3
- version: 4.82 .0
3
+ version: 4.83 .0
4
4
5
5
title: Linode API
6
6
description: |
@@ -6520,14 +6520,17 @@ paths:
6520
6520
k8s_version:
6521
6521
type: string
6522
6522
description: >
6523
- The desired upgraded Kubernetes version for this Kubernetes cluster in the format of
6523
+ The desired Kubernetes version for this Kubernetes cluster in the format of
6524
6524
<major>.<minor>. New and recycled Nodes in this cluster will be installed with the
6525
- latest available patch for the Cluster's upgraded Kubernetes version.
6525
+ latest available patch for the Cluster's Kubernetes version.
6526
6526
6527
- When updating the Kubernetes version, only the next latest minor version can be deployed
6528
- following the currently deployed version. For example, a cluster with Kubernetes version
6529
- 1.16 can be upgraded to version 1.17, but not directly to 1.18. The k8s_version can not be
6530
- downgraded.
6527
+
6528
+ When upgrading the Kubernetes version, only the next latest minor version following the current
6529
+ version can be deployed. For example, a cluster with Kubernetes version 1.16 can be upgraded to
6530
+ version 1.17, but not directly to 1.18.
6531
+
6532
+
6533
+ The Kubernetes version of a cluster can not be downgraded.
6531
6534
responses:
6532
6535
'200':
6533
6536
description: Returns a single Kubernetes cluster.
@@ -6765,7 +6768,7 @@ paths:
6765
6768
**Any local storage on deleted Linodes (such as "hostPath" and "emptyDir" volumes, or "local" PersistentVolumes) will be erased.**
6766
6769
responses:
6767
6770
'200':
6768
- description: Cluster has been recycled .
6771
+ description: Recycle request succeeded and is in progress .
6769
6772
content:
6770
6773
application/json:
6771
6774
schema:
@@ -6957,7 +6960,7 @@ paths:
6957
6960
**Any local storage on deleted Linodes (such as "hostPath" and "emptyDir" volumes, or "local" PersistentVolumes) will be erased.**
6958
6961
responses:
6959
6962
'200':
6960
- description: Node Pool has been recycled .
6963
+ description: Recycle request succeeded and is in progress .
6961
6964
content:
6962
6965
application/json:
6963
6966
schema:
@@ -7028,7 +7031,14 @@ paths:
7028
7031
status:
7029
7032
type: string
7030
7033
description: >
7031
- The Node's status as it pertains to being a Kubernetes node.
7034
+ The creation status of this Node. This status is distinct from this Node's readiness as a
7035
+ Kubernetes Node Object as determined by the command `kubectl get nodes`.
7036
+
7037
+
7038
+ `not_ready` indicates that the Linode is still being created.
7039
+
7040
+
7041
+ `ready` indicates that the Linode has successfully been created and is running Kubernetes software.
7032
7042
enum:
7033
7043
- ready
7034
7044
- not_ready
@@ -7060,7 +7070,7 @@ paths:
7060
7070
x-linode-cli-command: lke
7061
7071
post:
7062
7072
operationId: postLKEClusterNodeRecycle
7063
- x-linode-cli-action: node -recycle
7073
+ x-linode-cli-action: pool -recycle
7064
7074
security:
7065
7075
- personalAccessToken: []
7066
7076
- oauth:
@@ -7076,7 +7086,7 @@ paths:
7076
7086
**Any local storage on deleted Linodes (such as "hostPath" and "emptyDir" volumes, or "local" PersistentVolumes) will be erased.**
7077
7087
responses:
7078
7088
'200':
7079
- description: Node has been recycled .
7089
+ description: Recycle request succeeded and is in progress .
7080
7090
content:
7081
7091
application/json:
7082
7092
schema:
@@ -14342,7 +14352,7 @@ paths:
14342
14352
source: >
14343
14353
curl -H "Content-Type: application/json" \
14344
14354
-H "Authorization: Bearer $TOKEN" \
14345
- -X PUT -d '{
14355
+ -X POST -d '{
14346
14356
"label": "my-volume"
14347
14357
}' \
14348
14358
https://api.linode.com/v4/volumes/12345
@@ -14521,7 +14531,7 @@ paths:
14521
14531
source: >
14522
14532
curl -H "Content-Type: application/json" \
14523
14533
-H "Authorization: Bearer $TOKEN" \
14524
- -X POST -d '{
14534
+ -X PUT -d '{
14525
14535
"label": "my-volume"
14526
14536
}' \
14527
14537
https://api.linode.com/v4/volumes/12345/clone
0 commit comments