update-service - Cloud Foundry CLI Reference Guide


이름

update-service - 서비스 인스턴스 업데이트

사용법

cf update-service SERVICE_INSTANCE [-p NEW_PLAN] [-c PARAMETERS_AS_JSON] [-t TAGS] [--upgrade] Optionally provide service-specific configuration parameters in a valid JSON object in-line: cf update-service 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 update-service SERVICE_INSTANCE -c PATH_TO_FILE Example of valid JSON object: { "cluster_nodes": { "count": 5, "memory_mb": 1024 } } Optionally provide a list of comma-delimited tags that will be written to the VCAP_SERVICES environment variable for any bound applications.

EXAMPLES

cf update-service mydb -p gold cf update-service mydb -c '{"ram_gb":4}' cf update-service mydb -c ~/workspace/tmp/instance_config.json cf update-service mydb -t "list, of, tags" cf update-service mydb --upgrade cf update-service mydb --upgrade --force

옵션

-c

인라인 또는 파일로 제공되는, 서비스 특정 구성 매개변수를 포함하는 올바른 JSON 오브젝트. 지원되는 구성 매개변수 목록은 특정 서비스 오퍼링에 대한 문서를 참조하십시오.

-p

서비스 인스턴스에 대한 서비스 플랜 변경

-t

사용자 제공 태그

--upgrade, -u

Upgrade the service instance to the latest version of the service plan available. It cannot be combined with flags: -c, -p, -t.

--force, -f

Force the upgrade to the latest available version of the service plan. It can only be used with: -u, --upgrade.

다음도 참조

rename-service, services, update-user-provided-service