Bug 923195
| Summary: | python-novaclient: Allow modifying 'fixed_ips' in nova quota-update to avoid 'exception.FixedIpLimitExceeded'. | ||
|---|---|---|---|
| Product: | Red Hat OpenStack | Reporter: | Omri Hochman <ohochman> |
| Component: | python-novaclient | Assignee: | Nikola Dipanov <ndipanov> |
| Status: | CLOSED ERRATA | QA Contact: | Ofer Blaut <oblaut> |
| Severity: | high | Docs Contact: | |
| Priority: | high | ||
| Version: | 2.0 (Folsom) | CC: | eglynn, jruzicka, ndipanov, oblaut, ohochman |
| Target Milestone: | snapshot5 | ||
| Target Release: | 2.1 | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | python-novaclient-2.10.0-8.el6ost | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2013-04-04 18:03:47 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
Omri Hochman
2013-03-19 12:12:01 UTC
upstream fix is available at: https://review.openstack.org/#/c/24553/ We need to test we can view/modify/ fixed-ip via CLI/Horizon. From ClI:
----------
* nova help quota-update:
--fixed-ips <fixed-ips>
New value for the "fixed-ips" quota
* nova quota-show --tenant 1fccb1ae34e8423eba4940a07ca87c0a
+-----------------------------+---------+
| Property | Value |
+-----------------------------+---------+
| metadata_items | 128 |
| injected_file_content_bytes | 10240 |
| injected_files | 5 |
| gigabytes | 5120000 |
| ram | 5120000 |
| floating_ips | 10 |
| key_pairs | 100 |
| instances | 100 |
| security_group_rules | 20 |
| volumes | 10 |
| cores | 200 |
| fixed_ips | 10 |
| injected_file_path_bytes | 255 |
| security_groups | 10 |
+-----------------------------+---------+
* Before nova quota-update - when attempted to boot more than 10 instances (fixed-ips default = 10) --> Instances that been created over the quota limit raised exception.FixedIpLimitExceeded then those instances switched to status 'Error'.
Note:
-----
this 'FixedIpLimitExceeded' exception can be seen in compute.log and not like other quota error messages, that display message : "ERROR: Quota exceeded for instances: Requested 1, but already used 36 of 10 instances"
* After nova quota-update --fixed-ips - Instances boot successfully.
From Horizon: ------------- * In Default Quotas page <controller>/dashboard/syspanel/quotas/ --> the value 'Fixed Ips' can be seen. * In projects --> modify quota --> /dashboard/syspanel/projects/ --> It seems that the value for fixed_ips is missing. (In reply to comment #7) > From Horizon: > ------------- > > * In Default Quotas page <controller>/dashboard/syspanel/quotas/ --> the > value 'Fixed Ips' can be seen. > > * In projects --> modify quota --> /dashboard/syspanel/projects/ --> It > seems that the value for fixed_ips is missing. Opened #927182. Verified with: python-novaclient-2.10.0-8.el6ost.noarch. * After nova quota-update --fixed-ips - Instances boot successfully. 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, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. http://rhn.redhat.com/errata/RHBA-2013-0706.html |