Shafs Jan
Shafs Jan

Reputation: 426

User defined service in cloud foundry

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

Answers (1)

Kumaresh Babu N S
Kumaresh Babu N S

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

Related Questions