v1

latestOpenAPI 3.0.0Apache 2.02026-07-17143274803.9 KB
clusters

Report to Pipeline that a new node is ready (to be called by PKE installer)

post/api/v1/orgs/{orgId}/clusters/{id}/pke/ready

Path parameters

orgIdinteger required

Organization identifier

idinteger required

Cluster identifier

Request body

configstring

kubeconfig in base64 or empty if not a master

namestring

name of node

nodePoolstring

name of nodepool

ipstring

ip address of node (where the other nodes can reach it)

masterboolean

if this node is a master node

workerboolean

if this node is a worker node

Example request

{
  "config": "c3ppYQo=",
  "name": "my-node",
  "nodePool": "master",
  "ip": "127.0.0.1",
  "master": true
}

Response

Success

object required

Example response

{}