How to delete a blueprint
You can delete a blueprint in multiple ways:
All are discussed here below.
Using the Telegram Chatbot
@todo
Using the Cockpit Portal
Go to the Instance Details page of the service instance, and select Delete service from the Actions dropdown:
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 delete a blueprint, for instance here below for delete the blueprint with name "test-vdc-2.yaml":
curl -X DELETE
-H "Authorization: bearer JWT" /
https://BASE_URL/api/ays/repository/{repository}/blueprint/{blueprint}
In the API Console:
For more information about the API Console go to the section about the API Console.
At the CLI
@todo