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
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ include_app_syslog_tcp
111
111
*`include_app_syslog_tcp`: Flag to include the app syslog drain over TCP test group.
112
112
*`include_apps`: Flag to include the apps test group.
113
113
*`readiness_health_checks_enabled`: Defaults to `true`. Set to false if you are using an environment without readiness health checks.
114
-
*`include_cnb`: Flag to include tests related to building apps using Cloud Native Buildpacks. Diego must be deployed and the CC API diego_cnb feature flag must be enabled for these tests to pass.
114
+
*`include_cnb`: Flag to include tests related to building apps using Cloud Native Buildpacks. Diego must be deployed and the CC API diego_cnb feature flag must be enabled for these tests to pass. The CF CLI version must be at least v8.9.0.
115
115
*`include_container_networking`: Flag to include tests related to container networking.
116
116
*`credhub_mode`: Valid values are `assisted` or `non-assisted`. [See below](#credhub-modes).
117
117
*`credhub_location`: Location of CredHub instance; default is `https://credhub.service.cf.internal:8844`
@@ -359,7 +359,7 @@ Test Group Name| Description
359
359
`cnb`| Tests our ability to use cloud native buildpacks.
360
360
`detect`| Tests the ability of the platform to detect the correct buildpack for compiling an application if no buildpack is explicitly specified.
361
361
`docker`| Tests our ability to run docker containers on Diego and that we handle docker metadata correctly.
362
-
`file-based service bindings`| Tests file-based service bindings for a buildpack and a CNB app.
362
+
`file-based service bindings`| Tests file-based service bindings for a buildpack app, a CNB app and a Docker app.
363
363
`internet_dependent`| Tests the feature of being able to specify a buildpack via a Github URL. As such, this depends on your Cloud Foundry application containers having access to the Internet. You should take into account the configuration of the network into which you've deployed your Cloud Foundry, as well as any security group settings applied to application containers.
364
364
`isolation_segments`| This test group requires that Diego be deployed with a minimum of 2 cells. One of those cells must have been deployed with a `placement_tag`. If the deployment has been deployed with a routing isolation segment, `isolation_segment_domain` must also be set. For more information, please refer to the [Isolation Segments documentation](https://docs.cloudfoundry.org/adminguide/isolation-segments.html).
365
365
`route_services`| Tests the [Route Services](https://docs.cloudfoundry.org/services/route-services.html) feature of Cloud Foundry.
Copy file name to clipboardExpand all lines: helpers/skip_messages/skip_messages.go
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ const SkipCNBMessage = `Skipping this test because config.IncludeCNB is set to '
11
11
NOTE: Ensure CNB lifecycle is enabled on your platform before enabling this test.`
12
12
constSkipFileBasedServiceBindingsBuildpackApp=`Skipping this test because config.IncludeFileBasedServiceBindings is set to 'false'.`
13
13
constSkipFileBasedServiceBindingsCnbApp=`Skipping this test because config.IncludeFileBasedServiceBindings and/or config.IncludeCNB are set to 'false'.`
14
+
constSkipFileBasedServiceBindingsDockerApp=`Skipping this test because config.IncludeFileBasedServiceBindings and/or config.IncludeDocker are set to 'false'.`
14
15
constSkipInternetDependentMessage=`Skipping this test because config.IncludeInternetDependent is set to 'false'.
15
16
NOTE: Ensure that your platform has access to the internet before running this test.`
16
17
constSkipPrivateDockerRegistryMessage=`Skipping this test because config.IncludePrivateDockerRegistry is set to 'false'.
0 commit comments