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