From 587a4f2b338371e7fe1b0bb93de972c2a2f53634 Mon Sep 17 00:00:00 2001 From: He Liu Date: Wed, 5 Jun 2024 11:52:18 +0800 Subject: [PATCH] enable dedicated-v2 topology (#52783) --- .../rosa/cluster/provision/rosa-cluster-provision-commands.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-operator/step-registry/rosa/cluster/provision/rosa-cluster-provision-commands.sh b/ci-operator/step-registry/rosa/cluster/provision/rosa-cluster-provision-commands.sh index 2e97c672ff61..3929ba2f5802 100755 --- a/ci-operator/step-registry/rosa/cluster/provision/rosa-cluster-provision-commands.sh +++ b/ci-operator/step-registry/rosa/cluster/provision/rosa-cluster-provision-commands.sh @@ -337,7 +337,7 @@ if [[ "$HOSTED_CP" == "true" ]]; then # ensure the SC is not for ibm usage so that it could support the latest version of the hosted cluster for ps in $psList ; do topology=$(ocm get /api/clusters_mgmt/v1/provision_shards/${ps} | jq -r '.hypershift_config.topology') - if [[ "$topology" == "dedicated" ]] ; then + if [[ "$topology" == "*dedicated*" ]] ; then PROVISION_SHARD_ID=${ps} fi done