From 6afc53c31b0d68fbf733c38a63442e677da145a0 Mon Sep 17 00:00:00 2001 From: Jochen Ehret Date: Wed, 4 Mar 2026 15:25:11 +0100 Subject: [PATCH] Mark file-based service bindings feature as GA (remove "experimental") --- deploy-apps/environment-variable.html.md.erb | 8 ++++---- services/application-binding.html.md.erb | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deploy-apps/environment-variable.html.md.erb b/deploy-apps/environment-variable.html.md.erb index d2a854bb..c7e84053 100644 --- a/deploy-apps/environment-variable.html.md.erb +++ b/deploy-apps/environment-variable.html.md.erb @@ -31,8 +31,8 @@ Using the Cloud Foundry Command Line Interface (cf CLI), you can run the `cf env 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: * [VCAP_SERVICES](#VCAP-SERVICES) -* [SERVICE_BINDING_ROOT](#SERVICE-BINDING-ROOT) (experimental) -* [VCAP_SERVICES_FILE_PATH](#VCAP-SERVICES-FILE-PATH) (experimental) +* [SERVICE_BINDING_ROOT](#SERVICE-BINDING-ROOT) +* [VCAP_SERVICES_FILE_PATH](#VCAP-SERVICES-FILE-PATH) For more information about the `cf env` command, enter `cf env --help`.
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. For example: `PWD=/home/vcap/app` -### SERVICE_BINDING_ROOT (experimental) +### SERVICE_BINDING_ROOT 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. @@ -357,7 +357,7 @@ VCAP_SERVICES= } ~~~ -### VCAP_SERVICES_FILE_PATH (experimental) +### VCAP_SERVICES_FILE_PATH 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. diff --git a/services/application-binding.html.md.erb b/services/application-binding.html.md.erb index ced392b6..83e2a8ae 100644 --- a/services/application-binding.html.md.erb +++ b/services/application-binding.html.md.erb @@ -53,7 +53,7 @@ For checking the binding data manually app developers can use `cf env`. See [Vie

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.

-#### File-based VCAP services (experimental) +#### File-based VCAP services This delivery method is used when the app feature [file-based-vcap-services](https://v3-apidocs.cloudfoundry.org/index.html#app-features) is enabled. 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 -c 'cat $VCAP_SERVICES_FILE_PATH'

The vcap_services file content cannot exceed 1 MB, otherwise an IncompatibleBindings error is raised.

-#### Service Binding K8s (experimental) +#### Service Binding K8s This delivery method is used when the app feature [service-binding-k8s](https://v3-apidocs.cloudfoundry.org/index.html#app-features) is enabled. 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.