Avisi cloud logo
Clusters

List cluster node pools.

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

Path Parameters

organisationSlug
Required
string

environmentSlug
Required
string

clusterSlug
Required
string

curl -X GET "http://localhost:8090/api/v1/orgs/string/clusters/string/string/pools"

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"
  }
]