Skip to content

Commit 619f096

Browse files
authored
Merge pull request #578 from sap-contributions/file-based-service-bindings_GA
Mark file-based service bindings feature as GA (remove "experimental")
2 parents d87ef19 + 6afc53c commit 619f096

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

deploy-apps/environment-variable.html.md.erb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Using the Cloud Foundry Command Line Interface (cf CLI), you can run the `cf env
3131
There are 3 possible ways of providing service binding data to apps, see [Credential Delivery Methods](../services/application-binding.html#credential-delivery-methods). Depending on the chosen method there will be one of the following environment variables:
3232

3333
* [VCAP_SERVICES](#VCAP-SERVICES)
34-
* [SERVICE_BINDING_ROOT](#SERVICE-BINDING-ROOT) (experimental)
35-
* [VCAP_SERVICES_FILE_PATH](#VCAP-SERVICES-FILE-PATH) (experimental)
34+
* [SERVICE_BINDING_ROOT](#SERVICE-BINDING-ROOT)
35+
* [VCAP_SERVICES_FILE_PATH](#VCAP-SERVICES-FILE-PATH)
3636

3737
For more information about the `cf env` command, enter `cf env --help`.<br>
3838
For more information about the `cf set-env` command, enter `cf set-env --help`.
@@ -230,7 +230,7 @@ The present working directory where the buildpack that processed the app ran.
230230

231231
For example: `PWD=/home/vcap/app`
232232

233-
### <a id='SERVICE-BINDING-ROOT'></a> SERVICE_BINDING_ROOT (experimental)
233+
### <a id='SERVICE-BINDING-ROOT'></a> SERVICE_BINDING_ROOT
234234

235235
The root directory location, which contains the service binding information. This must be enabled by an app feature flag. See [Service Binding K8s](../services/application-binding.html#service-binding-k8s) for information about how to enable this, and how service binding data is stored in this directory.
236236

@@ -357,7 +357,7 @@ VCAP_SERVICES=
357357
}
358358
~~~
359359

360-
### <a id='VCAP-SERVICES-FILE-PATH'></a> VCAP_SERVICES_FILE_PATH (experimental)
360+
### <a id='VCAP-SERVICES-FILE-PATH'></a> VCAP_SERVICES_FILE_PATH
361361

362362
This is the path to the file containing the service binding information in JSON format. It must be enabled by an app feature flag. See [File-based VCAP services](../services/application-binding.html#file-based-vcap-services) for more information.
363363

services/application-binding.html.md.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ For checking the binding data manually app developers can use `cf env`. See [Vie
5353
<p class="note important">
5454
The maximum size of content of the VCAP_SERVICES environment variable is 130 KB. If you want to bind more services to the app or the services you want to bind provide lots of data, you can use one of the other methods.</p>
5555

56-
#### <a id='file-based-vcap-services'></a> File-based VCAP services (experimental)
56+
#### <a id='file-based-vcap-services'></a> File-based VCAP services
5757

5858
This delivery method is used when the app feature [file-based-vcap-services](https://v3-apidocs.cloudfoundry.org/index.html#app-features) is enabled.
5959
The environment variable [VCAP_SERVICES_FILE_PATH](../deploy-apps/environment-variable.html#VCAP-SERVICES-FILE-PATH) will be made available in the app container and contains the path to a file containing the same content as the VCAP_SERVICES environment variable above.
@@ -67,7 +67,7 @@ cf ssh <app_name> -c 'cat $VCAP_SERVICES_FILE_PATH'
6767
<p class="note important">
6868
The vcap_services file content cannot exceed 1 MB, otherwise an <code>IncompatibleBindings</code> error is raised.</p>
6969

70-
#### <a id='service-binding-k8s'></a> Service Binding K8s (experimental)
70+
#### <a id='service-binding-k8s'></a> Service Binding K8s
7171

7272
This delivery method is used when the app feature [service-binding-k8s](https://v3-apidocs.cloudfoundry.org/index.html#app-features) is enabled.
7373
The environment variable [SERVICE_BINDING_ROOT](../deploy-apps/environment-variable.html#SERVICE-BINDING-ROOT) is made available in the app container. It contains the path to the root folder of a file structure containing binding information.

0 commit comments

Comments
 (0)