bind-service - Cloud Foundry CLI Reference Guide


名前

bind-service - サービス・インスタンスをアプリにバインドします

使用法

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

別名

bs

オプション

--binding-name

アプリ・プロセスにサービス・インスタンスを公開するときの名前 (デフォルト: サービス・インスタンス名)

-c

インラインまたはファイルのいずれかで提供されるサービス固有の構成パラメーターを含む有効な JSON オブジェクト。 サポートされている構成パラメーターのリストについては、当該サービス・オファリングの資料を参照してください。

その他の参照先

services