Avisi cloud logo
Clusters

Create node pool inside a cluster.

POST
/api/v1/orgs/{organisationSlug}/clusters/{environmentSlug}/{clusterSlug}/pools

Request Body

application/jsonRequired

namestring

Minimum length: 1Maximum length: 25Pattern: "^[a-z0-9-]+$"

nodeSizestring

autoScalingboolean

enableNodeAutoReplacementboolean

enableNodeRebootsboolean

upgradeStrategystring

Value in: "REPLACE" | "INPLACE" | "INPLACE_WITHOUT_DRAIN" | "REPLACE_MINOR_INPLACE_PATCH" | "REPLACE_MINOR_INPLACE_PATCH_WITHOUT_DRAIN"

minSizeinteger

Format: "int64"

maxSizeinteger

Format: "int64"

availabilityZonestring

annotationsobject

labelsobject

taintsarray<object>

Path Parameters

organisationSlug
Required
string

environmentSlug
Required
string

clusterSlug
Required
string

curl -X POST "http://localhost:8090/api/v1/orgs/string/clusters/string/string/pools" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "string",
    "nodeSize": "string",
    "autoScaling": true,
    "enableNodeAutoReplacement": true,
    "enableNodeReboots": true,
    "upgradeStrategy": "REPLACE",
    "minSize": 0,
    "maxSize": 0,
    "availabilityZone": "string",
    "annotations": {
      "property1": "string",
      "property2": "string"
    },
    "labels": {
      "property1": "string",
      "property2": "string"
    },
    "taints": [
      {
        "key": "string",
        "value": "string",
        "effect": "string"
      }
    ]
  }'

Request was successfully processed. The response body contains the requested data.

{
  "id": 0,
  "identity": "10a80a7a-1a32-4a74-b592-aa2a4ef691c5",
  "name": "string",
  "availabilityZone": "string",
  "nodeSize": "string",
  "autoScaling": true,
  "enableNodeAutoReplacement": true,
  "enableNodeReboots": true,
  "upgradeStrategy": "REPLACE",
  "minSize": 0,
  "maxSize": 0,
  "annotations": {
    "property1": "string",
    "property2": "string"
  },
  "labels": {
    "property1": "string",
    "property2": "string"
  },
  "taints": [
    {
      "key": "string",
      "value": "string",
      "effect": "string"
    }
  ],
  "createdAt": "2019-08-24T14:15:22Z",
  "modifiedAt": "2019-08-24T14:15:22Z",
  "provisionStatus": "UNKNOWN"
}