See Prerequisites.
-
cf marketplace
displays the service in the marketplace. -
To create a service instance, execute the following command and provide the necessary information:
-
cf create-service cloud-logging <service-plan> <instance_name> -c <parameters>
. -
See Service Plans and Configuration Parameters for configuration options.
-
Here is an example command with additional parameters:
cf create-service cloud-logging standard cloud-logging -c '{ "retention_period": 14, "backend": { "max_data_nodes": 10, "api_enabled": false }, "ingest": { "max_instances": 10 } }'
-
-
Wait for your dedicated instance to be provisioned.
-
Use the following command to verify the service provisioning. This checks the
last operation
status:cf services
-
Wait until the last operation reads
create succeeded
. The service instance is now available for consumption.
-