-
Notifications
You must be signed in to change notification settings - Fork 170
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
Increase timeout for allow successful data re-balance on VSphere/Azure platforms #9994
Increase timeout for allow successful data re-balance on VSphere/Azure platforms #9994
Conversation
Passed here- https://url.corp.redhat.com/a255f95 and https://url.corp.redhat.com/6c815c1 |
@@ -112,7 +112,7 @@ def add_capacity_test(ui_flag=False): | |||
verify_storage_device_class(device_class) | |||
verify_device_class_in_osd_tree(ct_pod, device_class) | |||
|
|||
check_ceph_health_after_add_capacity(ceph_rebalance_timeout=3600) | |||
check_ceph_health_after_add_capacity(ceph_rebalance_timeout=5400) |
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.
It's not mandatory, but if the issue is only with vSphere IPI, maybe we can do something like this:
timeout = 3600 if is_vsphere_ipi_cluster() else 5400
check_ceph_health_after_add_capacity(ceph_rebalance_timeout=timeout)
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.
No, data re-balance issue is also seen with VSphere UPI and Azure IPI.
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.
Okay
Signed-off-by: am-agrawa <[email protected]>
Signed-off-by: am-agrawa <[email protected]>
38d5cef
to
13a1b2e
Compare
New changes are detected. LGTM label has been removed. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: am-agrawa, ebenahar, prsurve The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/cherry-pick release-4.15 |
/cherry-pick release-4.14 |
/cherry-pick release-4.13 |
/cherry-pick release-4.12 |
@am-agrawa: #9994 failed to apply on top of branch "release-4.13":
In response to this:
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. |
@am-agrawa: new pull request created: #10067 In response to this:
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. |
@am-agrawa: new pull request created: #10068 In response to this:
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. |
@am-agrawa: #9994 failed to apply on top of branch "release-4.12":
In response to this:
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. |
…e platforms (red-hat-storage#9994) Signed-off-by: am-agrawa <[email protected]>
We saw multiple failures on VSphere IPI for test
test_add_capacity_ui
with data re-balance issue however the test passes on AWS IPI. Increasing the re-balance timeout should stabilise it.