MetaKube provides a REST API that can be used to automate the management of MetaKube clusters.
You can find the full API documentation in the MetaKube Dashboard under API Docs. Note that the executable examples in the API docs use your personal API access token. For integrations into other tools you should use a token from an API Account.
We also provider a Swagger OpenAPI specification at https://metakube.syseleven.de/api/swagger.json.
All resources of the REST API are located under https://metakube.syseleven.de/api
.
In order to authenticate with the REST API programmatically, you can use MetaKube API Accounts. API Accounts live on the project level and can either have full admin permissions (Editor) or read only permissions (Viewer).
To create an API Account, create one in the interface:
And then create a Token for this API Account:
This Token can then be used as a Bearer
token in the Authentication
header of the API request.
To get a list of clusters in the project where the API Account was created in, call:
curl 'https://metakube.syseleven.de/api/v1/projects/<PROJECT_ID>/clusters' -H 'authorization: Bearer <YOUR_TOKEN>' -H 'accept: application/json'