Manage the tools in your active environment.

Listing tools

Use the orchestrate tools list command to list all tools in your environment. You can also use the --verbose (-v) argument to get detailed information about each tool in JSON format.

[BASH]
orchestrate tools list -v

Exporting tools

Use the orchestrate tools export command to export a tool configuration from your active environment.

[BASH]
orchestrate tools export -n <tool-name> -o <output-path>

Updating tools

To update a tool, run the import command again using the same tool name that you want to update.

[BASH]
orchestrate tools import -k <kind of the tool> -f <path the tool file that you want to update> -a <id of the app> -r <path to the requirements.txt file>

Removing tools

Use the orchestrate tools remove command to remove an existing tool. This command requires the --name (-n) argument, which specifies the name of the tool you want to delete.

[BASH]
orchestrate tools remove -n my-tool-name