diff options
author | ivan-zhu <bozhu@linux.vnet.ibm.com> | 2013-06-24 23:16:18 +0800 |
---|---|---|
committer | ivan-zhu <bozhu@linux.vnet.ibm.com> | 2013-07-15 20:44:06 +0800 |
commit | d811be91bd83dd9c9d10d77060ac7653cce16b07 (patch) | |
tree | 47cc312cad7ca3d6c3337f3f2a19eb5553a3d6bf /setup.cfg | |
parent | 7e3bee9973cf15fd16057b72d869c9efedcc7dc1 (diff) | |
download | nova-d811be91bd83dd9c9d10d77060ac7653cce16b07.tar.gz |
Port user_data API to v3 Part 2
Ports the user_data extensions and the corresponding unittests
to the v3 framework. Moves the commented out tests from the v3
version of test_servers to the user data extension unittests.
Partially implements blueprint nova-v3-api
Change-Id: Id9b406271d821a99bbe7a3b3eb6ad7fc549ae7a3
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -100,11 +100,13 @@ nova.api.v3.extensions.server.create = config_drive = nova.api.openstack.compute.plugins.v3.config_drive:ConfigDrive keypairs_create = nova.api.openstack.compute.plugins.v3.keypairs:Keypairs scheduler_hints = nova.api.openstack.compute.plugins.v3.scheduler_hints:SchedulerHints + user_data = nova.api.openstack.compute.plugins.v3.user_data:UserData nova.api.v3.extensions.server.create.deserialize = availability_zone = nova.api.openstack.compute.plugins.v3.availability_zone:AvailabilityZone config_drive = nova.api.openstack.compute.plugins.v3.config_drive:ConfigDrive scheduler_hints = nova.api.openstack.compute.plugins.v3.scheduler_hints:SchedulerHints + user_data = nova.api.openstack.compute.plugins.v3.user_data:UserData [build_sphinx] all_files = 1 |