Skip to main content

Add-Ons

Manage your Canine add-ons from the command line.

List Add-Ons

View all add-ons in your account:

canine add-ons list

Output:

| NAME     | STATUS    | CLUSTER_ID | CLUSTER_NAME |
|----------|-----------|------------|--------------|
| postgres | Installed | 5 | production |
| redis | Installed | 5 | production |

Add-On Status Values

StatusDescription
InstallingAdd-on is being set up
InstalledAdd-on is running
UpdatingAdd-on is being updated
UninstallingAdd-on is being removed
UninstalledAdd-on has been removed
FailedAdd-on encountered an error

Restart an Add-On

Restart a specific add-on:

canine add-ons restart --add-on <ADD_ON>

Options

OptionDescription
--add-on <ADD_ON>Add-on name (required)

Example

canine add-ons restart --add-on postgres

This restarts the PostgreSQL add-on, which can be useful for applying configuration changes or recovering from issues.