Reputation: 426
How to create the user defined service in cloud Foundry. I have spring boot app which i want to host as a service. I want this application to be exposed as service so that, the other apps that bind to this would use it by default.
Any help is appreciated.
Upvotes: 0
Views: 319
Reputation: 1698
You can create user defined services using Cloud Foundry CLI commands.
cf cups SERVICE_INSTANCE -p '{"username":"admin","password":"password"}'
Doc Link: https://docs.cloudfoundry.org/devguide/services/user-provided.html
Upvotes: 1