summaryrefslogtreecommitdiffstats
path: root/nova/flags.py
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@yahoo.com>2010-09-28 09:22:36 -0700
committerVishvananda Ishaya <vishvananda@yahoo.com>2010-09-28 09:22:36 -0700
commit669cf475d11700064aa16f959077d0512e6b1531 (patch)
tree7de0a38210cf41b2c819af388004191be19aff53 /nova/flags.py
parentbe1b1e320c17630430cfa567d8685f8cfc5773e4 (diff)
parentcb311a3deb42094261b91467b7717f4eb3e9eaba (diff)
downloadnova-669cf475d11700064aa16f959077d0512e6b1531.tar.gz
nova-669cf475d11700064aa16f959077d0512e6b1531.tar.xz
nova-669cf475d11700064aa16f959077d0512e6b1531.zip
merged trunk
Diffstat (limited to 'nova/flags.py')
-rw-r--r--nova/flags.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/nova/flags.py b/nova/flags.py
index 7b0c95a3c..6a1c14490 100644
--- a/nova/flags.py
+++ b/nova/flags.py
@@ -167,10 +167,14 @@ def DECLARE(name, module_string, flag_values=FLAGS):
# Define any app-specific flags in their own files, docs at:
# http://code.google.com/p/python-gflags/source/browse/trunk/gflags.py#39
+DEFINE_list('region_list',
+ [],
+ 'list of region=url pairs separated by commas')
DEFINE_string('connection_type', 'libvirt', 'libvirt, xenapi or fake')
DEFINE_integer('s3_port', 3333, 's3 port')
DEFINE_string('s3_host', '127.0.0.1', 's3 host')
DEFINE_string('compute_topic', 'compute', 'the topic compute nodes listen on')
+DEFINE_string('scheduler_topic', 'scheduler', 'the topic scheduler nodes listen on')
DEFINE_string('volume_topic', 'volume', 'the topic volume nodes listen on')
DEFINE_string('network_topic', 'network', 'the topic network nodes listen on')
@@ -213,6 +217,8 @@ DEFINE_string('network_manager', 'nova.network.manager.VlanManager',
'Manager for network')
DEFINE_string('volume_manager', 'nova.volume.manager.AOEManager',
'Manager for volume')
+DEFINE_string('scheduler_manager', 'nova.scheduler.manager.SchedulerManager',
+ 'Manager for scheduler')
DEFINE_string('host', socket.gethostname(),
'name of this node')