Fleets

List fleets

get
Query parameters
querystringOptional

the query to filter fleets by, e.g. name:fleet-1

selectorstringOptional

the selector to filter fleets by, e.g. configuration=my-config

offsetstringOptional

the pagination offset

limitstringOptional

the maximum number of results to return

sortstringOptional

the field on which to sort results. A '-' prefix indicates descending sorting.

Responses
200

OK

application/json
get
GET /v1/fleets HTTP/1.1
Host: 
Accept: */*
{
  "fleets": [
    {
      "apiVersion": "string",
      "kind": "string",
      "metadata": {
        "additionalInfo": {
          "documentation": [
            {
              "text": "text",
              "url": "text"
            }
          ],
          "message": "string"
        },
        "dateModified": "text",
        "deprecated": true,
        "description": "string",
        "displayName": "string",
        "hash": "text",
        "icon": "string",
        "id": "string",
        "labels": {},
        "name": "string",
        "resourceDocLink": "string",
        "stability": "string",
        "version": 1,
        "warning": "string"
      },
      "spec": {
        "configuration": "text",
        "selector": {
          "matchLabels": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          }
        }
      },
      "status": {}
    }
  ]
}

Was this helpful?