spring-cloud-open-service-broker
spring-cloud-open-service-broker copied to clipboard
Spring Cloud project for creating service brokers that conform to the Open Server Broker API specification
Release notes: https://github.com/openservicebrokerapi/servicebroker/blob/master/release-notes.md#v216 - [x] Add guidance for remembering the state of service instance and service binding operations (no code changes required) - [x] Add guidance to handle 500 errors...
Hi, Following this issue: [https://github.com/spring-cloud/spring-cloud-open-service-broker/issues/311](311) Regarding support for the labeling service instances. I saw that in OSB master, fetching a Service Instance returns also the metadata [https://github.com/openservicebrokerapi/servicebroker/blob/master/spec.md#fetching-a-service-instance](url) Is this implementation...
The sample service broker is as below. https://docs.cloudfoundry.org/services/managing-service-brokers.html In this case, if a user creates a service instance, it should create or install the service and provide access to it.
In OSB latest Spec version an option to label service instances was added. Information on the labeling option: https://github.com/openservicebrokerapi/servicebroker/blob/master/spec.md#fetching-a-service-instance
At the time of writing, the `CreateServiceInstanceRequest` provides a `getParameters` method that takes a class to convert the parameters to. This class needs to be a Java bean class for...
In our OSB service methods we need access to the caller's principal and authority information that we have authenticated in a security filter. How can this be achieved with the...
To generate the response in `ServiceInstanceBindingController.createServiceInstanceBinding` this little method is called: https://github.com/spring-cloud/spring-cloud-open-service-broker/blob/a32b84e1836f37b74a40bf1a8262c9c924f63cb8/spring-cloud-open-service-broker-core/src/main/java/org/springframework/cloud/servicebroker/controller/ServiceInstanceBindingController.java#L144-L155 When the binding existed the method returns 200 OK. But based on [OSB api spec](https://github.com/openservicebrokerapi/servicebroker/blob/v2.15/spec.md#response-6) (both v2.15 and...
* As a spring-cloud-open-service-broker user * in order to expose additional dashboard endpoints restricted to CF users having access to the service instance * I need some support to check...
What is the problem? Need a sample (example) of service broker which follows Oauth for platform-broker Auth. Most of the sample brokers are following basic auth only for platform-broker communication....