github.com/IBM-Cloud/bluemix-go@v0.0.0-20240423071914-9e96525baef4/examples/icd/icdv4/scalingUpdate/README.md (about) 1 # Cloud Database Set Scaling Group 2 3 Set scaling value on a specified group. Can only be performed on is_adjustable=true groups. Values set are for the group as a whole and resources are distributed amongst the group. Values must be greater than or equal to the minimum size and must be a multiple of the step size. ICD resource instance must be created first via UI or using the `resource/service-instance` example to create an icd instance. Any of the ICD instance types are supported, Postgres, ElasticSearch, RabbitMQ, Etcd, etc. The 64 digit CRN of the icd instance should be supplied as the icdId. Environment variable IC_API_KEY must be set with API key and IC_REGION set to the ICD deployment region. 4 5 Details of the API function implemented can be found in the IBM CLoud API docs: 6 https://console.bluemix.net/apidocs/cloud-databases-api#set-scaling-values-on-a-specified-group 7 8 parameters: 9 Required: --icdId - 64 digit CRN for ICD instance 10 Optional: --memory - New memory size in multiple of step size, divided across all group instances 11 One or more of: 12 Optional: --cpu - New cpu count in multiple of step size, divided across all group instances 13 Optional: --disk - New disk size in multiple of step size, divided across all group instances 14 15 16 Example: 17 ``` 18 go run main.go --icdId crn:v1:bluemix:public:databases-for-postgresql:us-south:a%2F4ea1882a2d3401ed1e459979941966ea:9504e257-8916-4c00-890a-23189eeebdfd:: --memory 4096 19 ```