summaryrefslogtreecommitdiffstats
path: root/nova/flags.py
diff options
context:
space:
mode:
authorMonsyne Dragon <mdragon@rackspace.com>2011-01-11 12:24:58 +0000
committerTarmac <>2011-01-11 12:24:58 +0000
commitb8de5221368c4055fc593c6d0d7164f2be956924 (patch)
tree4a2ecd78ebf13db0fabde69f176676c3347144f8 /nova/flags.py
parent1e746ce1ef027aa2549a8fba2904f3797eff0702 (diff)
parentd6a66d13718a41d5146d713ced192e795e72457e (diff)
downloadnova-b8de5221368c4055fc593c6d0d7164f2be956924.tar.gz
nova-b8de5221368c4055fc593c6d0d7164f2be956924.tar.xz
nova-b8de5221368c4055fc593c6d0d7164f2be956924.zip
Implementation of xs-console blueprint (adds support for console proxies like xvp)
If you spin up the nova-console service, you should be able to see the xvp.conf being edited, and the xvp daemon started/stopped if you exercise the openstack console api (consoles sub-resource on servers)
Diffstat (limited to 'nova/flags.py')
-rw-r--r--nova/flags.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/nova/flags.py b/nova/flags.py
index 0e6d3176c..ab3a2b5f8 100644
--- a/nova/flags.py
+++ b/nova/flags.py
@@ -228,6 +228,8 @@ DEFINE_integer('s3_port', 3333, 's3 port')
DEFINE_string('s3_host', '$my_ip', 's3 host (for infrastructure)')
DEFINE_string('s3_dmz', '$my_ip', 's3 dmz ip (for instances)')
DEFINE_string('compute_topic', 'compute', 'the topic compute nodes listen on')
+DEFINE_string('console_topic', 'console',
+ 'the topic console proxy 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')
@@ -281,6 +283,8 @@ DEFINE_integer('sql_retry_interval', 10, 'sql connection retry interval')
DEFINE_string('compute_manager', 'nova.compute.manager.ComputeManager',
'Manager for compute')
+DEFINE_string('console_manager', 'nova.console.manager.ConsoleProxyManager',
+ 'Manager for console proxy')
DEFINE_string('network_manager', 'nova.network.manager.VlanManager',
'Manager for network')
DEFINE_string('volume_manager', 'nova.volume.manager.VolumeManager',