spring-cloud-app-broker icon indicating copy to clipboard operation
spring-cloud-app-broker copied to clipboard

Spring Cloud project for implementing service brokers that conform to the Open Server Broker API specification

Results 53 spring-cloud-app-broker issues
Sort by recently updated
recently updated
newest added

During release a branch with version changes is created with name `((github-username))/staging`. This prevents from having 2 releases at the same time since all will collide.

Latest release of `spring-cloud-app-broker-docs` was with `1.1.1.RELEASE`. Releases 1.2.0, 1.2.1 & 1.3.0 have not included it. Should it be added back or removed completely?

``` 12-05-2021 17:18:14.731 [reactor-http-epoll-3] INFO o.s.c.a.a.f.cf.CloudFoundryService.lambda$deleteServiceBroker$23 - Success deleting service broker. brokerName=((redacted))-broker-update-instance 12-05-2021 17:18:15.055 [reactor-http-epoll-3] INFO o.s.c.a.a.f.cf.CloudFoundryService.lambda$deleteApp$18 - Success deleting app. appName=((redacted))-broker-app-update-instance 12-05-2021 17:18:25.126 [reactor-http-epoll-5] INFO o.s.c.a.a.f.cf.CloudFoundryService.lambda$deleteServiceBroker$23 - Success deleting...

When creating your first service broker, there is a lot of knowledge and tricks that you have to be aware of. Even though we simplify a lot of that boilerplate...

good first issue
docs

We have a pattern of checking against the latest versions nightly that we did not port to `app-broker` in concourse. We will need to keep the 1.0.x releases of App...

chore

https://docs.spring.io/spring-cloud-app-broker/docs/1.1.1.RELEASE/reference/#service-instance-parameters The documentation for parameter-transformers show `args` as an array element ``` parameters-transformers: - name: EnvironmentMapping args: - include: parameter1,parameter2 - name: PropertyMapping args: - include: count,memory ```

good first issue

Being able to do something like: ``` ... services: - service-name: example plan-name: example-plan apps: - name: example-app1 properties: memory: (( parameters.app1-memory ?: "1G" )) environment: some.property: (( parameters.value ?:...

2.x

Instead of uploading the same application bits over and over again with each service instance provision request, provide support for copying an application's package resource from an existing package. The...

review

App broker is not able to deploy and undeploy backing application due to _error=“invalid_token”, error_description=“Invalid refresh token (expired)_ **Given** Username and password is configured in cloud.deployer.cloudfoundry and app broker generates...

blocked

When permissions don't exist in credhub, `getPermissionsByPathAndActor()` and/or `getPermissions()` would throw `CredHubException` with status code of 404, resulting `CredHubPersistingDeleteServiceInstanceBindingWorkflow` to fail. Since the purpose of the workflow is only to...