lp:~ykliu711/nova/cleaning

Created by Jerry Liu and last modified
Get this branch:
bzr branch lp:~ykliu711/nova/cleaning
Only Jerry Liu can upload to this branch. If you are Jerry Liu please log in for upload directions.

Branch merges

Related bugs

Related blueprints

Branch information

Owner:
Jerry Liu
Project:
OpenStack Compute (nova)
Status:
Development

Recent revisions

1605. By Vish Ishaya

Fix the display of swap units in nova manage.

1604. By Scott Moser

convert images that are not 'raw' to 'raw' during caching to node

1603. By Mark McLoughlin

Add iptables filter rules for dnsmasq (lp:844935)

On Fedora, the default policy for the INPUT chain in the filter table
is DROP. This means that DHCP and DNS request packets from the guest
get dropped.

Add these rules to allow the traffic through:

 $> sudo iptables -t filter -A nova-network-INPUT -i br0 -p udp -m udp --dport 67 -j ACCEPT
 $> sudo iptables -t filter -A nova-network-INPUT -i br0 -p tcp -m tcp --dport 67 -j ACCEPT
 $> sudo iptables -t filter -A nova-network-INPUT -i br0 -p udp -m udp --dport 53 -j ACCEPT
 $> sudo iptables -t filter -A nova-network-INPUT -i br0 -p tcp -m tcp --dport 53 -j ACCEPT

1602. By Scott Moser

create disk.local the same way ephemerals are created (LP: #851145)

If the user did not specify '--block-device-mapping /dev/vdb=ephemeral0', then the first non-root device would end up being created differently then if they had. It would not have a filesystem on it.

This makes 'local_gb' in the libvirt connection created the same way that
it would be if it were named ephemeral0.

1601. By Brad McConnell <email address hidden>

Fixed --uuid network command in nova-manage to desc to "uuid" instead of "net_uuid"

1600. By Trey Morris

removes warning set forth in d3 for deprecated setting of bridge automagically

1599. By Dan Prince

Update migration 047 to dynamically lookup the name of the instance_id
fkey before dropping it. We can't hard code the name of the fkey since we
didn't name it explicitly on create.

1598. By Jason Kölker

Fixes migration for Mysql to drop the FK on the right table

1597. By Chris Behrens

Reverted some changes to instance_get_all_by_filters() that was added in rev 1594. An additional argument for filtering on instance uuids is not needed, as you can add 'uuid: uuid_list' into the filters dictionary. Just needed to add 'uuid' as an exact_match_filter. This restores the filtering to do a single DB query.

Also updated ID/UUID mapping code to be a little more efficient, by returning a dictionary of 'ID: UUID'... vs a list.

Fixed a test that assumed list order.

A couple of typo fixes and a pep8 issue in trunk also fixed.

1596. By <email address hidden>

Reworked the export command to be
nova-manage shell export --filename=somefile

This will output the somefile file in to the keystone-manage syntax that will then be used by a shellscript that is being proposed to keystone.

Branch metadata

Branch format:
Branch format 7
Repository format:
Bazaar repository format 2a (needs bzr 1.16 or later)
Stacked on:
lp:~hudson-openstack/nova/trunk
This branch contains Public information 
Everyone can see this information.

Subscribers