title | type |
---|---|
Deprovision Kyma Runtime using KEB |
Tutorials |
This tutorial shows how to deprovision Kyma Runtime on Azure using Kyma Environment Broker.
-
Ensure that these environment variables are exported:
export BROKER_URL={KYMA_ENVIRONMENT_BROKER_URL} export INSTANCE_ID={INSTANCE_ID_FROM_PROVISIONING_CALL}
-
Get the access token. Export this variable based on the token you got from the OAuth client:
export AUTHORIZATION_HEADER="Authorization: Bearer $ACCESS_TOKEN"
-
Make a call to the Kyma Environment Broker to delete a Runtime on Azure.
curl --request DELETE "https://$BROKER_URL/oauth/v2/service_instances/$INSTANCE_ID?accepts_incomplete=true&service_id=47c9dcbf-ff30-448e-ab36-d3bad66ba281&plan_id=4deee563-e5ec-4731-b9b1-53b42d855f0c" \ --header 'X-Broker-API-Version: 2.13' \ --header "$AUTHORIZATION_HEADER"
A successful call returns the operation ID:
{
"operation":"8a7bfd9b-f2f5-43d1-bb67-177d2434053c"
}
- Check the operation status as described here.