Deployment add-ons now discoverable via the API
almost 6 years ago by Dan Connor
The Compose API team has rolled out a new endpoint that provides the list of currently active add-ons provisioned for a given deployment.
Here is an example of a response for an Elasticsearch deployment that has the Telegraf add-on enabled:
{
"_embedded": {
"addons": [{
"name": "telegraf"
}]
}
}
Further support for addon management is planned.
Changelog
- added: GET https://api.compose.com/2016-07/deployments/:id/addons
- added: