Skip to content

Commit

Permalink
fix rosa hcp bugs (#52839)
Browse files Browse the repository at this point in the history
  • Loading branch information
heliubj18 authored Jun 14, 2024
1 parent 6fdce41 commit 86e75df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,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" ]] || [[ "$topology" == "dedicated-v2" ]] ; then
PROVISION_SHARD_ID=${ps}
fi
done
Expand Down

0 comments on commit 86e75df

Please sign in to comment.