diff --git a/spring-cloud-cloud-foundry-connector.html b/spring-cloud-cloud-foundry-connector.html index 4079eee..fdaa964 100644 --- a/spring-cloud-cloud-foundry-connector.html +++ b/spring-cloud-cloud-foundry-connector.html @@ -505,9 +505,11 @@ table.CodeRay td.code>pre{padding:0}

Spring Cloud Cloud Foundry Connector

Table of Contents
-
@@ -536,14 +540,17 @@ table.CodeRay td.code>pre{padding:0} -
-

Cloud Detection

+
+

Cloud Detection

+

This connector checks for the presence of a VCAP_APPLICATION environment variable. This is a system-provided environment variable which is specific to Cloud Foundry. If the variable exists, the connector will be activated.

-
-

Service Detection

+
+
+

Service Detection

+

The connector inspects Cloud Foundry’s VCAP_SERVICES environment variable to detect available services. This variable stores connection and identification information for service instances that are bound to Cloud Foundry applications.

@@ -565,7 +572,7 @@ table.CodeRay td.code>pre{padding:0} ] }, "label": "p-rabbitmq", - "name": "bob", + "name": "rabbit-bus", "plan": "standard", "tags": [ "rabbitmq" @@ -579,8 +586,8 @@ table.CodeRay td.code>pre{padding:0}
--++ @@ -589,7 +596,7 @@ table.CodeRay td.code>pre{padding:0} - + @@ -602,7 +609,28 @@ table.CodeRay td.code>pre{padding:0}

label

The name of the service.

The service offering’s name (not to be confused with a service instance’s name).

credentials.uri

-

The criteria by which it establishes availability of each service are described below.

+

If they are present, it will also consider the following fields:

+
+ ++++ + + + + + + + + + + +

credentials.jdbcUrl

A JDBC connection string.

credentials.${SCHEME}${URL}

A service URL—in the field name, ${SCHEME} is a URI scheme used by the service and ${URL} is the string Url, url, Uri, or uri.

+
+

Supported Services

+
+

This connector comes with built-in support for a variety of service types and providers. The criteria by which it establishes availability of each service are described below.

RabbitMQ

@@ -618,7 +646,10 @@ table.CodeRay td.code>pre{padding:0}

label beginning with the rabbitmq tag

  • -

    uris using the scheme amqp or amqps

    +

    uri or uris using the scheme amqp or amqps

    +
  • +
  • +

    amqpUri, amqpuri, amqpsUri, amqpsuri, amqpUrl, amqpurl, amqpsUrl, or amqpsurl fields in credentials

  • @@ -626,25 +657,89 @@ table.CodeRay td.code>pre{padding:0}

    DB2

    -

    Coming soon…​

    +

    The connector will check for:

    +
    +
    +
      +
    • +

      tags including sqldb, dashDB, or db2

      +
    • +
    • +

      label beginning with the sqldb, dashDB, or db2 tags

      +
    • +
    • +

      uri or uris using the scheme db2

      +
    • +
    • +

      jdbcUrl field in credentials using the scheme db2

      +
    • +
    • +

      db2Uri, db2uri, db2Url, or db2url fields in credentials

      +
    • +

    MongoDB

    -

    Coming soon…​

    +

    The connector will check for:

    +
    +
    +
      +
    • +

      tags including mongodb

      +
    • +
    • +

      label beginning with the mongodb tag

      +
    • +
    • +

      uri or uris using the scheme mongodb

      +
    • +
    • +

      mongodbUri, mongodburi, mongodbUrl, or mongodburl fields in credentials

      +
    • +

    Application monitoring (New Relic)

    -

    Coming soon…​

    +

    The connector will check for:

    +
    +
    +
      +
    • +

      tags including monitoring or newrelic

      +
    • +
    • +

      label beginning with the monitoring or newrelic tags

      +
    • +

    MySQL

    -

    Coming soon…​

    +

    The connector will check for:

    +
    +
    +
      +
    • +

      tags including mysql

      +
    • +
    • +

      label beginning with the mysql tag

      +
    • +
    • +

      uri or uris using the scheme mysql

      +
    • +
    • +

      jdbcUrl field in credentials using the scheme mysql

      +
    • +
    • +

      mysqlUri, mysqluri, mysqlUrl, or mysqlurl fields in credentials

      +
    • +
    @@ -678,8 +773,11 @@ table.CodeRay td.code>pre{padding:0}
    -
    -

    Supporting New Service Types

    +
    +
    +
    +

    Supporting New Service Types

    +

    Extend CloudFoundryServiceInfoCreator with a creator for your service’s ServiceInfo class.

    @@ -688,9 +786,10 @@ table.CodeRay td.code>pre{padding:0}
    + diff --git a/spring-cloud-connectors.html b/spring-cloud-connectors.html index 21f11ae..8cfe87d 100644 --- a/spring-cloud-connectors.html +++ b/spring-cloud-connectors.html @@ -1270,7 +1270,7 @@ spring.cloud.database: mysql://user:pass@host:1234/dbname