Skip to content

[Update] LKE node pools - nodes #199

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 3 commits into from
Feb 10, 2020
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
31 changes: 19 additions & 12 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6299,18 +6299,20 @@ paths:
description: Returns an array of all Pools in this Kubernetes cluster.
content:
application/json:
x-linode-cli-nested-list: linodes
x-linode-cli-nested-list: nodes
x-linode-cli-use-schema:
type: object
properties:
id:
x-linode-cli-display: 1
type:
x-linode-cli-display: 2
linodes.id:
nodes.id:
x-linode-cli-display: 3
linodes.status:
nodes.instance_id:
x-linode-cli-display: 4
nodes.status:
x-linode-cli-display: 5
schema:
type: object
properties:
Expand Down Expand Up @@ -15638,32 +15640,37 @@ components:
description: >
This Node Pool's unique ID.
example: 456
linodes:
nodes:
type: array
description: >
Status information for the Linodes which are members of this Node
Status information for the Nodes which are members of this Node
Pool. If a Linode has not been provisioned for a given Node slot,
its ID will be returned as null.
the instance_id will be returned as null.
items:
$ref: '#/components/schemas/LKELinodeStatus'
LKELinodeStatus:
$ref: '#/components/schemas/LKENodeStatus'
LKENodeStatus:
type: object
description: >
Status information for a Linode which is a member of a Kubernetes
Status information for a Node which is a member of a Kubernetes
cluster.
readOnly: true
properties:
id:
type: number
description: >
The Linode's ID. When no Linode is currently provisioned for this
Node slot, this ID will be null.
The Node's ID.
x-linode-filterable: true
example: 123456
instance_id:
type: string
description: >
The Linode's ID. When no Linode is currently provisioned for this
Node, this will be null.
example: 123458
status:
type: string
description: >
The Linode's status as it pertains to being a Kubernetes node.
The Node's status as it pertains to being a Kubernetes node.
enum:
- ready
- not_ready
Expand Down