Returns supported Kubernetes versions for a given kubernetes provider
GET/api/v2/metadata/k8s/:provider/versions
Returns supported Kubernetes versions for a given kubernetes provider
Request
Path Parameters
provider stringrequired
The kubernetes provider to retrieve for
Responses
- 200
- 401
- 403
- 404
- 500
A list of kubernetes versions available with an indication which are supported and which is the Wayfinder default version
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
default boolean
supported boolean
version stringrequired
[
{
"default": true,
"supported": true,
"version": "string"
}
]
If not authenticated
If authenticated but not authorized
provider doesn't exist
A generic API error containing the cause of the error
- application/json
- Schema
- Example (from schema)
Schema
code int32required
detail stringrequired
message stringrequired
uri stringrequired
verb stringrequired
{
"code": 0,
"detail": "string",
"message": "string",
"uri": "string",
"verb": "string"
}
Loading...