bind-service - Cloud Foundry CLI Reference Guide


NAME

bind-service - Eine Serviceinstanz an eine App binden

VERWENDUNG

cf bind-service APP_NAME SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [--binding-name BINDING_NAME] Optionally provide service-specific configuration parameters in a valid JSON object in-line: cf bind-service APP_NAME SERVICE_INSTANCE -c '{"name":"value","name":"value"}' Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file. cf bind-service APP_NAME SERVICE_INSTANCE -c PATH_TO_FILE Example of valid JSON object: { "permissions": "read-only" } Optionally provide a binding name for the association between an app and a service instance: cf bind-service APP_NAME SERVICE_INSTANCE --binding-name BINDING_NAME

EXAMPLES

Linux/Mac: cf bind-service myapp mydb -c '{"permissions":"read-only"}' Windows Command Line: cf bind-service myapp mydb -c "{\"permissions\":\"read-only\"}" Windows PowerShell: cf bind-service myapp mydb -c '{\"permissions\":\"read-only\"}' cf bind-service myapp mydb -c ~/workspace/tmp/instance_config.json --binding-name BINDING_NAME

ALIAS

bs

Optionen

--binding-name

Name für das Offenlegen der Serviceinstanz für den App-Prozess mit (Standard: Serviceinstanzname)

-c

Gültiges JSON-Objekt mit servicespezifischen Konfigurationsparametern, die entweder integriert oder in einer Datei zur Verfügung gestellt werden. Eine Liste unterstützter Konfigurationsparameter finden Sie in der Dokumentation für das jeweilige Serviceangebot.

SIEHE AUCH

services