Bug 1996088
Summary: | fails to delete loadbalancer with osc_lib.exceptions.CommandError: Unable to locate loadbalancers | ||
---|---|---|---|
Product: | Red Hat OpenStack | Reporter: | Gregory Thiemonge <gthiemon> |
Component: | python-octaviaclient | Assignee: | Gregory Thiemonge <gthiemon> |
Status: | CLOSED ERRATA | QA Contact: | Omer Schwartz <oschwart> |
Severity: | high | Docs Contact: | |
Priority: | high | ||
Version: | 16.1 (Train) | CC: | asyedham, bbonguar, jelynch, konguyen, lpeer, majopela, michjohn, oschwart, scohen |
Target Milestone: | z9 | Keywords: | Triaged |
Target Release: | 16.1 (Train on RHEL 8.2) | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | python-octaviaclient-1.10.1-1.20220215154223.b5397ea.el8ost | Doc Type: | Bug Fix |
Doc Text: |
Before this update, python-octaviaclient did not display the full list of load balancers when the user had more than 1,000 load balancers. With this update, the OpenStack Load-balancing service (Octavia) displays all load balancers.
|
Story Points: | --- |
Clone Of: | 1959694 | Environment: | |
Last Closed: | 2022-12-07 20:25:25 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | 1959694 | ||
Bug Blocks: |
Description
Gregory Thiemonge
2021-08-20 13:38:10 UTC
I was able to create 2600 LB, and all of those were deployed with ACTIVE provisioning-status: (overcloud) [stack@undercloud-0 ~]$ cat core_puddle_version RHOS-16.1-RHEL-8-20221108.n.1 (overcloud) [stack@undercloud-0 ~]$ openstack loadbalancer list --provisioning-status ACTIVE -f value | wc -l 2600 ^ I could list all of the 2600 (overcloud) [stack@undercloud-0 ~]$ openstack loadbalancer list --provisioning-status ERROR -f value | wc -l 0 All LBs were deleted without any error: (overcloud) [stack@undercloud-0 ~]$ for lb in $(openstack loadbalancer list --provisioning-status ACTIVE -f value | awk '{print $1}'); do openstack loadbalancer delete $lb; done (overcloud) [stack@undercloud-0 ~]$ openstack loadbalancer list --provisioning-status ACTIVE -f value | wc -l 0 (overcloud) [stack@undercloud-0 ~]$ openstack loadbalancer list --provisioning-status ERROR -f value | wc -l 0 Looks good to me. I am moving the BZ status to VERIFIED. Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (Red Hat OpenStack Platform 16.1.9 bug fix and enhancement advisory), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2022:8795 |