v1
Double column
API
CLI
JS Client

Cloud Providers /

List providers

Lists supported cloud providers

Response body

  • {object}
    Response object.
    • data

      {object} required
      Result data.
      • providers

        [array] required
        An array of supported cloud providers
        • {object}
          A provider object
          • id

            string required
            The ID of the provider.
          • name

            string required
            The name of the provider.
          • engine

            string required
            The kubernetes engine used.
          • kubernetesVersions

            [array] required
            An array of available kubernetes versions
            • string
          • diskSizes

            [array] required
            An array of supported node disk sizes
            • number
          • flags

            {object} required
            An object with feature flags to indicate (un)supported features
            • preemptible

              boolean
              Preemptible/Spot node pool support
            • autoscaling

              boolean
              Node pool autoscaling support
API
CLI
JS Client

GET /v1/cloud-providers

Example response

200 OK

A list of supported cloud providers.

JSON

{
  "data": {
    "providers": [
      {
        "id": "aws",
        "name": "Amazon Web Services",
        "engine": "Elastic Kubernetes Service (EKS)",
        "kubernetesVersions": [
          "1.27"
        ],
        "diskSizes": [
          100
        ],
        "flags": {
          "preemptible": true,
          "autoscaling": true
        }
      }
    ]
  }
}

© 2024 Northflank Ltd. All rights reserved.