From 4be4210d62a0348bd848b9d369e99a484bbb2f0f Mon Sep 17 00:00:00 2001 From: Vishvananda Ishaya Date: Sat, 5 Nov 2011 14:10:17 -0700 Subject: [PATCH] Separate metadata api into its own service part 1 of blueprint separate-nova-metadata * adds api/metadata/ and moves code from ec2 * moves metadata into separate binary * changes metadata forward to use metadata host and port * moves the metadata accept rule to the metadata api * adds nova-api-* to setup.py Change-Id: I7f5d8e6cafc55b5c383cd88991f29c6059fb8d82 --- nova/tests/__init__.py | 2 +- setup.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/nova/tests/__init__.py b/nova/tests/__init__.py index 1109dfb70..676518a48 100644 --- a/nova/tests/__init__.py +++ b/nova/tests/__init__.py @@ -24,7 +24,7 @@ :platform: Unix .. moduleauthor:: Jesse Andrews .. moduleauthor:: Devin Carlen -.. moduleauthor:: Vishvananda Ishaya +.. moduleauthor:: Vishvananda Ishaya .. moduleauthor:: Joshua McKenty .. moduleauthor:: Manish Singh .. moduleauthor:: Andy Smith diff --git a/setup.py b/setup.py index 9b11fb95a..e1c9e6c95 100644 --- a/setup.py +++ b/setup.py @@ -119,6 +119,9 @@ setup(name='nova', data_files=find_data_files('share/nova', 'tools'), scripts=['bin/nova-ajax-console-proxy', 'bin/nova-api', + 'bin/nova-api-ec2', + 'bin/nova-api-metadata', + 'bin/nova-api-os', 'bin/nova-compute', 'bin/nova-console', 'bin/nova-dhcpbridge',