~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/flags.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-08-16 14:04:11 UTC
  • mto: This revision was merged to the branch mainline in revision 84.
  • Revision ID: package-import@ubuntu.com-20120816140411-0mr4n241wmk30t9l
Tags: upstream-2012.2~f3
ImportĀ upstreamĀ versionĀ 2012.2~f3

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
core_opts = [
77
77
    cfg.StrOpt('connection_type',
78
78
               default=None,
79
 
               help='Virtualization api connection type : libvirt, xenapi, '
80
 
                    'or fake'),
 
79
               help='Deprecated (use compute_driver instead): Virtualization '
 
80
                    'api connection type : libvirt, xenapi, or fake'),
81
81
    cfg.StrOpt('sql_connection',
82
82
               default='sqlite:///$state_path/$sqlite_db',
83
83
               help='The SQLAlchemy connection string used to connect to the '
316
316
    cfg.StrOpt('node_availability_zone',
317
317
               default='nova',
318
318
               help='availability zone of this node'),
319
 
    cfg.StrOpt('notification_driver',
320
 
               default='nova.notifier.no_op_notifier',
321
 
               help='Default driver for sending notifications'),
322
319
    cfg.ListOpt('memcached_servers',
323
320
                default=None,
324
321
                help='Memcached servers or None for in process cache.'),
342
339
                    'formatted with on creation.'),
343
340
    cfg.StrOpt('root_helper',
344
341
               default='sudo',
345
 
               help='Command prefix to use for running commands as root'),
 
342
               help='Deprecated: command to use for running commands as root'),
 
343
    cfg.StrOpt('rootwrap_config',
 
344
               default=None,
 
345
               help='Path to the rootwrap configuration file to use for '
 
346
                    'running commands as root'),
346
347
    cfg.StrOpt('network_driver',
347
348
               default='nova.network.linux_net',
348
349
               help='Driver to use for network creation'),
409
410
                default='nova.volume.api.API',
410
411
                help='The full class name of the volume API class to use'),
411
412
    cfg.StrOpt('security_group_handler',
412
 
               default='nova.network.quantum.sg.NullSecurityGroupHandler',
 
413
               default='nova.network.sg.NullSecurityGroupHandler',
413
414
               help='The full class name of the security group handler class'),
414
415
    cfg.StrOpt('default_access_ip_network_name',
415
416
               default=None,
416
417
               help='Name of network to use to set access ips for instances'),
417
418
    cfg.StrOpt('auth_strategy',
418
419
               default='noauth',
419
 
               help='The strategy to use for auth. Supports noauth, keystone, '
420
 
                    'and deprecated.'),
 
420
               help='The strategy to use for auth: noauth or keystone.'),
 
421
    cfg.ListOpt('non_inheritable_image_properties',
 
422
                default=['cache_in_nova',
 
423
                         'instance_uuid',
 
424
                         'user_id',
 
425
                         'image_type',
 
426
                         'backup_type',
 
427
                         'min_ram',
 
428
                         'min_disk'],
 
429
                help='These are image properties which a snapshot should not'
 
430
                     ' inherit from an instance'),
 
431
    cfg.BoolOpt('defer_iptables_apply',
 
432
                default=False,
 
433
                help='Whether to batch up the application of IPTables rules'
 
434
                     ' during a host restart and apply all at the end of the'
 
435
                     ' init phase'),
421
436
]
422
437
 
423
438
FLAGS.register_opts(global_opts)