It'd be useful to see what st is doing on behalf of the developer. E.g., when deploying a service to Cloud Foundry, the command cf create-service ... is run when a service is deployed.
Example that uses a verbose switch:
$ st deploy
Deploying service 'myredis'
$ st undeploy
Undeploying service 'myredis'
$ st deploy -v
Deploying service 'myredis'
cf create-service p-redis shared-vm myredis
Creating service instance myredis in org pivot-ccheetham / space playground as ccheetham@pivotal.io...
OK
$ st undeploy
Undeploying service 'myredis'
f delete-service myredis -f
Deleting service myredis in org pivot-ccheetham / space playground as ccheetham@pivotal.io...
OK
It'd be useful to see what
st
is doing on behalf of the developer. E.g., when deploying a service to Cloud Foundry, the commandcf create-service ...
is run when a service is deployed.Example that uses a verbose switch: