Bug 907863
| Summary: | ipallocationpools remains after subnet deletion | ||
|---|---|---|---|
| Product: | Red Hat OpenStack | Reporter: | Gary Kotton <gkotton> |
| Component: | openstack-quantum | Assignee: | Gary Kotton <gkotton> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Ofer Blaut <oblaut> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 2.0 (Folsom) | CC: | chrisw, ykaul |
| Target Milestone: | snapshot3 | Keywords: | Rebase, Triaged |
| Target Release: | 2.1 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Rebase: Bug Fixes and Enhancements | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2013-06-28 14:41:30 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Gary Kotton
2013-02-05 12:39:10 UTC
Verified openstack-quantum-2012.2.3-5.el6ost.noarch mysql> select * from ipallocationpools; +--------------------------------------+--------------------------------------+--------------+---------------+ | id | subnet_id | first_ip | last_ip | +--------------------------------------+--------------------------------------+--------------+---------------+ | 8712b741-0b1a-4f07-b07c-d3e1321db877 | 0993298f-55bf-4e92-9571-71703cecf3f4 | 88.66.66.2 | 88.66.66.254 | | 26ec9582-ef9b-4e51-965f-8c0c4b85a908 | 39741d8d-8c28-4b94-8194-3537c6b7fe1d | 10.35.180.20 | 10.35.180.150 | | dc751c8f-ad6e-4104-a5b3-f98516ae8584 | 50ba5b1f-a0f8-4a58-8800-37ffc1db4841 | 10.0.0.2 | 10.0.0.254 | +--------------------------------------+--------------------------------------+--------------+---------------+ 3 rows in set (0.00 sec) mysql> Ctrl-C -- exit! Aborted [root@puma34 ~(keystone_admin_tenant1)]$ quantum subnet-delete sub1 Deleted subnet: sub1 [root@puma34 ~(keystone_admin_tenant1)]$ [root@puma34 ~(keystone_admin_tenant1)]$ [root@puma34 ~(keystone_admin_tenant1)]$ [root@puma34 ~(keystone_admin_tenant1)]$ mysql -u root ovs_quantum -e "select * from ipallocationpools" +--------------------------------------+--------------------------------------+--------------+---------------+ | id | subnet_id | first_ip | last_ip | +--------------------------------------+--------------------------------------+--------------+---------------+ | 8712b741-0b1a-4f07-b07c-d3e1321db877 | 0993298f-55bf-4e92-9571-71703cecf3f4 | 88.66.66.2 | 88.66.66.254 | | 26ec9582-ef9b-4e51-965f-8c0c4b85a908 | 39741d8d-8c28-4b94-8194-3537c6b7fe1d | 10.35.180.20 | 10.35.180.150 | +--------------------------------------+--------------------------------------+--------------+---------------+ |