-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
with resource group id to avoid 'No resource group found' error #60291
base: master
Are you sure you want to change the base?
Conversation
/cc @jianlinliu |
@@ -213,7 +213,8 @@ else | |||
echo "Did not found a provisoned resource group" | |||
exit 1 | |||
fi | |||
"${IBMCLOUD_CLI}" target -g ${resource_group} | |||
rg_id=$("${IBMCLOUD_CLI}" resource group $rg --output json | jq -r '.[0]|.id') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rg_id=$("${IBMCLOUD_CLI}" resource group $rg --output json | jq -r '.[0]|.id') | |
rg_id=$("${IBMCLOUD_CLI}" resource group $rg --id) |
ci-operator/step-registry/ibmcloud/provision/vpc/ibmcloud-provision-vpc-commands.sh
Show resolved
Hide resolved
[REHEARSALNOTIFIER]
A total of 165 jobs have been affected by this change. The above listing is non-exhaustive and limited to 25 jobs. A full list of affected jobs can be found here Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
@MayXuQQ: all tests passed! Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jianlinliu, MayXuQQ The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@liangxia could you give an approve? thanks |
based on https://cloud.ibm.com/unifiedsupport/cases?number=CS4162762
use resource group id in "ibmcloud target", try to resolve "No resource group found" issue