Skip to content

Commit dec458b

Browse files
ci(hot-cluster): use COS standard plan ID for unambiguous creation
Use the plan ID (744bfc56-d12c-4866-88d5-dac9139e0e5d) instead of the plan name to avoid interactive prompts or name resolution issues. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent ba9457e commit dec458b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ibmc-cluster-setup.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,9 @@ jobs:
247247
248248
if [[ -z "${COS_CRN}" ]]; then
249249
echo "Creating COS instance '${COS_INSTANCE_NAME}'..."
250+
# Use plan ID to avoid interactive prompts (744bfc56... = standard plan)
250251
ibmcloud resource service-instance-create "${COS_INSTANCE_NAME}" cloud-object-storage \
251-
premium-global-deployment global
252+
744bfc56-d12c-4866-88d5-dac9139e0e5d global
252253
COS_CRN=$(ibmcloud resource service-instances --service-name cloud-object-storage --output json \
253254
| jq -r --arg n "${COS_INSTANCE_NAME}" '.[] | select(.name == $n) | .crn')
254255
echo "Created COS instance: ${COS_CRN}"

0 commit comments

Comments
 (0)