Skip to content

[Hotfix] v4.142.3-patch1 #744

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 1 commit into from
Jan 12, 2023
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
47 changes: 21 additions & 26 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10766,37 +10766,32 @@ paths:
schema:
type: object
properties:
data:
type: object
id:
type: string
readOnly: true
description: >
The selected node in the cluster.
properties:
id:
type: string
readOnly: true
description: >
The Node's ID.
example: "12345-6aa78910bc"
instance_id:
type: integer
description: >
The Linode's ID. If no Linode is currently provisioned for this Node, this is `null`.
example: 123456
status:
type: string
description: >
The creation status of this Node. This status is distinct from this Node's readiness as a
Kubernetes Node Object as determined by the command `kubectl get nodes`.
The Node's ID.
example: "12345-6aa78910bc"
instance_id:
type: integer
description: >
The Linode's ID. If no Linode is currently provisioned for this Node, this is `null`.
example: 123456
status:
type: string
description: >
The creation status of this Node. This status is distinct from this Node's readiness as a
Kubernetes Node Object as determined by the command `kubectl get nodes`.


`not_ready` indicates that the Linode is still being created.
`not_ready` indicates that the Linode is still being created.


`ready` indicates that the Linode has successfully been created and is running Kubernetes software.
enum:
- ready
- not_ready
example: ready
`ready` indicates that the Linode has successfully been created and is running Kubernetes software.
enum:
- ready
- not_ready
example: ready
default:
$ref: '#/components/responses/ErrorResponse'
x-code-samples:
Expand Down