You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GIVEN I have enabled the experimental managed services flag in the helm values GIVEN I have pushed an app GIVEN I have created a managed service instance WHEN I POST /v3/service_credential_bindings with the following request body
WHEN the OSBAPI broker responds with 202 Accepted (i.e. the bind operation is asynchronous) THEN I get a 202 Accepted response with a Location header pointing me to a bind job THEN eventually I see the bind job succeeding THEN I see a credential binding created with the service broker
Dev notes:
The implementation must invoke Bind on the broker over OSBAPI
When requesting Bind from the broker, the implementation should send the accepts_incomplete=true query parameter to enable async provisioning
This story implements the asynchronous bind, i.e. when the broker responds with 202 Accepted
The implementation should poll the binding last operation until the operation completes. Once the operation completes, its status must be reflected in the CFServiceBinding
The binding response credentials object should be persisted in a secret in the same namespace as the CFServiceBinding.
danail-branekov
changed the title
As a Korifi API user I want to be able to bind to a managed service instance
As a Korifi API user I want to be able to bind to a managed service instance (async bind)
Oct 23, 2024
GIVEN I have enabled the experimental managed services flag in the helm values
GIVEN I have pushed an app
GIVEN I have created a managed service instance
WHEN I
POST /v3/service_credential_bindings
with the following request bodyWHEN the OSBAPI broker responds with
202 Accepted
(i.e. the bind operation is asynchronous)THEN I get a
202 Accepted
response with aLocation
header pointing me to a bind jobTHEN eventually I see the bind job succeeding
THEN I see a credential binding created with the service broker
Dev notes:
Bind
on the broker over OSBAPIBind
from the broker, the implementation should send theaccepts_incomplete=true
query parameter to enable async provisioning202 Accepted
CFServiceBinding
credentials
object should be persisted in a secret in the same namespace as theCFServiceBinding
.The text was updated successfully, but these errors were encountered: