How to list all service instances in a repository
You can list all service instance in multiple ways ways:
Using the Telegram Chatbot
Start the conversation with the chatbot with /start, type /repo and then click select:
After having selected one of the repositories from the list you'll got following reply:
Then type /service and click list, which will show you all the service instances:
Using the Cockpit Portal
See the Getting started with blueprints section.
Using the Cockpit API
In order to use the Cockpit API you first need to obtain an JWT, as documented in the section about how to get a JWT.
Once you got the JWT, you can list all service instances for a specific repository using:
curl -H "Authorization: bearer JWT" /
-d "action=install&async=true&force=false&instance=INSTANCE-NAME&role=ROLE"
https://BASE_URL/api/ays/repository/REPOSITORY-NAME/execute
In the API Console:
For more information about the API Console go to the section about the API Console.
At the CLI
@todo