summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Merging trunkRick Harris2011-09-2120-156/+490
| |\ \ \
| * | | | Adding flavor filteringRick Harris2011-09-214-4/+56
| | | | |
| * | | | Pep8 fixesRick Harris2011-09-213-3/+4
| | | | |
| * | | | Merging trunkRick Harris2011-09-2130-410/+839
| |\ \ \ \
| * | | | | Refactoring instance_type_get_allRick Harris2011-09-218-66/+71
| | | | | |
* | | | | | Add next links for server lists in OSAPI 1.1. This adds servers_links to the ↵William Wolf2011-09-225-9/+216
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | json responses, and an extra atom:link element to the servers node in the xml response.
| * | | | | | pep8 fixesWilliam Wolf2011-09-201-3/+3
| | | | | | |
| * | | | | | merge from trunkWilliam Wolf2011-09-206-34/+95
| |\ \ \ \ \ \
| * \ \ \ \ \ \ merged with trunkWilliam Wolf2011-09-1928-395/+763
| |\ \ \ \ \ \ \
| * | | | | | | | oops, add project_id and 'servers' to next linksWilliam Wolf2011-09-192-7/+12
| | | | | | | | |
| * | | | | | | | remove urllib importWilliam Wolf2011-09-191-1/+0
| | | | | | | | |
| * | | | | | | | merge with trunkWilliam Wolf2011-09-192-12/+52
| |\ \ \ \ \ \ \ \ | | | |_|/ / / / / | | |/| | | | | |
| * | | | | | | | make our own function instead of using urllib.urlencode since we apparently ↵William Wolf2011-09-193-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | don't suppor urlencoded strings yet
| * | | | | | | | merge with trunkWilliam Wolf2011-09-1920-161/+358
| |\ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ merge from trunkWilliam Wolf2011-09-1617-56/+306
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | pep8 fixesWilliam Wolf2011-09-151-1/+0
| | | | | | | | | | |
| * | | | | | | | | | pass-through all other parameters in next links as wellWilliam Wolf2011-09-153-10/+39
| | | | | | | | | | |
| * | | | | | | | | | cleanup prints in testsWilliam Wolf2011-09-151-6/+0
| | | | | | | | | | |
| * | | | | | | | | | cleanup prints in testsWilliam Wolf2011-09-151-2/+0
| | | | | | | | | | |
| * | | | | | | | | | get rid of debugsWilliam Wolf2011-09-151-2/+0
| | | | | | | | | | |
| * | | | | | | | | | pep8 issuesWilliam Wolf2011-09-151-1/+0
| | | | | | | | | | |
| * | | | | | | | | | added xml support for servers_list in response with testsWilliam Wolf2011-09-153-39/+79
| | | | | | | | | | |
| * | | | | | | | | | added servers_links in v1.1 with testsWilliam Wolf2011-09-153-2/+97
| | | | | | | | | | |
| * | | | | | | | | | added build_list to servers controllers and view builder and kept all old ↵William Wolf2011-09-153-5/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tests passing
* | | | | | | | | | | Update exception.wrap_exception so that all exceptions (not just Error and ↵Dan Prince2011-09-222-11/+3
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | NovaException types) get logged correctly.
| * | | | | | | | | | Update exception.wrap_exception so that all exceptions (not just ErrorDan Prince2011-09-152-11/+3
| | |/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | and NovaException types) get logged correctly.
* | | | | | | | | | This patch adds instance progress which is used by the OpenStack API to ↵Rick Harris2011-09-2122-106/+318
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | indicate how far along the current executing action is (BUILD/REBUILD, MIGRATION/RESIZE). For the first cut, we decided to keep it simple and compute progress by counting discrete steps. This is not ideal since some steps, in particular, steps which involve transferring large amounts of data over the network, take *much* longer than others. A better approximation would account for the data-transferred to the destination host, since in most cases, this dominates the time spent. In addition to adding progress, this patch: - Allows resizes to use same host for source and destination which is useful for dev environments without a second host. This is enabled by the --allow_resize_to_same_host flag. - Fixes a bug in the glance and migration XenAPI plugins where the VHDs were being copied into the SR in the wrong order. Before the base-copy was copied first meaning it was possible for snapwatchd to see the base-copy before the dependent cow was present. It was treat the base_copy as an unreferenced parent, and GC it. - Additional refactoring and cleanups.
| * | | | | | | | | Renumbering instance progress migrationRick Harris2011-09-2113-71/+192
| |\ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ Fixing testsRick Harris2011-09-2153-572/+1472
| |\ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ Merging trunkRick Harris2011-09-1911-101/+237
| |\ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|/ / / / / | | |/| | | | | | | | |
| * | | | | | | | | | | Renaming progress migration to 47Rick Harris2011-09-191-0/+0
| | | | | | | | | | | |
| * | | | | | | | | | | Fixing list prependRick Harris2011-09-161-1/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Merging trunkRick Harris2011-09-1667-1679/+2387
| |\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Pep8 FixRick Harris2011-09-161-2/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Zero out the progress when beginning a resizeRick Harris2011-09-161-0/+5
| | | | | | | | | | | | |
| * | | | | | | | | | | | Adding migration progressRick Harris2011-09-168-46/+70
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixing tests, PEP8 failuresRick Harris2011-09-163-3/+9
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merging trunkRick Harris2011-09-161-0/+1
| |\ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | PEP8 fixRick Harris2011-09-141-0/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Allowing resizes to the same machineRick Harris2011-09-1611-77/+139
| |/ / / / / / / / / / / /
| * | | | | | | | | | | | Adding progressRick Harris2011-09-148-15/+86
| | | | | | | | | | | | |
| * | | | | | | | | | | | Adding migration for instance progressRick Harris2011-09-141-0/+43
| | | | | | | | | | | | |
* | | | | | | | | | | | | Fixes lp:855115 -- issue with disassociating floating ips.Chris Behrens2011-09-215-12/+68
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Merged trunkChris Behrens2011-09-21125-3817/+5446
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | |_|_|/ / / / / / / / | | |/| | | | | | | | | |
| * | | | | | | | | | | | update floating ips testsChris Behrens2011-09-212-2/+7
| | | | | | | | | | | | |
| * | | | | | | | | | | | floating ip could have no project and we should allow accessChris Behrens2011-09-212-13/+14
| | | | | | | | | | | | |
| * | | | | | | | | | | | actions on floating IPs in other projects for non-admins should not be allowed.Chris Behrens2011-09-213-1/+51
| | | | | | | | | | | | |
| * | | | | | | | | | | | floating_ip_get_by_address should check user's project_idChris Behrens2011-09-211-10/+10
| | | | | | | | | | | | |
* | | | | | | | | | | | | Keystone support in Nova across Zones.Sandy Walsh2011-09-2112-71/+192
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | trunk merge fixupSandy Walsh2011-09-2124-48/+630
| |\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / |/| | | | | | | | | | | |