components/openstack/nova/files/nova.conf
branchs11-update
changeset 3028 5e73a3a3f66a
child 1944 56ac2df1785b
equal deleted inserted replaced
3027:3bcf7d43558b 3028:5e73a3a3f66a
       
     1 [DEFAULT]
       
     2 
       
     3 #
       
     4 # Options defined in nova.availability_zones
       
     5 #
       
     6 
       
     7 # availability_zone to show internal services under (string
       
     8 # value)
       
     9 #internal_service_availability_zone=internal
       
    10 
       
    11 # default compute node availability_zone (string value)
       
    12 #default_availability_zone=nova
       
    13 
       
    14 
       
    15 #
       
    16 # Options defined in nova.crypto
       
    17 #
       
    18 
       
    19 # Filename of root CA (string value)
       
    20 #ca_file=cacert.pem
       
    21 
       
    22 # Filename of private key (string value)
       
    23 #key_file=private/cakey.pem
       
    24 
       
    25 # Filename of root Certificate Revocation List (string value)
       
    26 #crl_file=crl.pem
       
    27 
       
    28 # Where we keep our keys (string value)
       
    29 #keys_path=$state_path/keys
       
    30 
       
    31 # Where we keep our root CA (string value)
       
    32 #ca_path=$state_path/CA
       
    33 
       
    34 # Should we use a CA for each project? (boolean value)
       
    35 #use_project_ca=false
       
    36 
       
    37 # Subject for certificate for users, %s for project, user,
       
    38 # timestamp (string value)
       
    39 #user_cert_subject=/C=US/ST=California/O=OpenStack/OU=NovaDev/CN=%.16s-%.16s-%s
       
    40 
       
    41 # Subject for certificate for projects, %s for project,
       
    42 # timestamp (string value)
       
    43 #project_cert_subject=/C=US/ST=California/O=OpenStack/OU=NovaDev/CN=project-ca-%.16s-%s
       
    44 
       
    45 
       
    46 #
       
    47 # Options defined in nova.exception
       
    48 #
       
    49 
       
    50 # make exception message format errors fatal (boolean value)
       
    51 #fatal_exception_format_errors=false
       
    52 
       
    53 
       
    54 #
       
    55 # Options defined in nova.manager
       
    56 #
       
    57 
       
    58 # Some periodic tasks can be run in a separate process. Should
       
    59 # we run them here? (boolean value)
       
    60 #run_external_periodic_tasks=true
       
    61 
       
    62 
       
    63 #
       
    64 # Options defined in nova.netconf
       
    65 #
       
    66 
       
    67 # ip address of this host (string value)
       
    68 #my_ip=10.0.0.1
       
    69 
       
    70 # Name of this node.  This can be an opaque identifier.  It is
       
    71 # not necessarily a hostname, FQDN, or IP address. However,
       
    72 # the node name must be valid within an AMQP key, and if using
       
    73 # ZeroMQ, a valid hostname, FQDN, or IP address (string value)
       
    74 #host=nova
       
    75 
       
    76 # use ipv6 (boolean value)
       
    77 #use_ipv6=false
       
    78 
       
    79 
       
    80 #
       
    81 # Options defined in nova.notifications
       
    82 #
       
    83 
       
    84 # If set, send compute.instance.update notifications on
       
    85 # instance state changes.  Valid values are False for no
       
    86 # notifications, True for notifications on any instance
       
    87 # changes. (boolean value)
       
    88 #notify_on_any_change=false
       
    89 
       
    90 # If set, send api.fault notifications on caught exceptions in
       
    91 # the API service. (boolean value)
       
    92 #notify_api_faults=false
       
    93 
       
    94 # If set, send compute.instance.update notifications on
       
    95 # instance state changes.  Valid values are None for no
       
    96 # notifications, "vm_state" for notifications on VM state
       
    97 # changes, or "vm_and_task_state" for notifications on VM and
       
    98 # task state changes. (string value)
       
    99 #notify_on_state_change=<None>
       
   100 
       
   101 
       
   102 #
       
   103 # Options defined in nova.paths
       
   104 #
       
   105 
       
   106 # Directory where the nova python module is installed (string
       
   107 # value)
       
   108 #pybasedir=/usr/lib/python2.6/vendor-packages
       
   109 
       
   110 # Directory where nova binaries are installed (string value)
       
   111 bindir=/usr/bin
       
   112 
       
   113 # Top-level directory for maintaining nova's state (string
       
   114 # value)
       
   115 state_path=/var/lib/nova
       
   116 
       
   117 
       
   118 #
       
   119 # Options defined in nova.policy
       
   120 #
       
   121 
       
   122 # JSON file representing policy (string value)
       
   123 #policy_file=policy.json
       
   124 
       
   125 # Rule checked when requested rule is not found (string value)
       
   126 #policy_default_rule=default
       
   127 
       
   128 
       
   129 #
       
   130 # Options defined in nova.quota
       
   131 #
       
   132 
       
   133 # number of instances allowed per project (integer value)
       
   134 #quota_instances=10
       
   135 
       
   136 # number of instance cores allowed per project (integer value)
       
   137 #quota_cores=20
       
   138 
       
   139 # megabytes of instance ram allowed per project (integer
       
   140 # value)
       
   141 #quota_ram=51200
       
   142 
       
   143 # number of floating ips allowed per project (integer value)
       
   144 #quota_floating_ips=10
       
   145 
       
   146 # number of metadata items allowed per instance (integer
       
   147 # value)
       
   148 #quota_metadata_items=128
       
   149 
       
   150 # number of injected files allowed (integer value)
       
   151 #quota_injected_files=5
       
   152 
       
   153 # number of bytes allowed per injected file (integer value)
       
   154 #quota_injected_file_content_bytes=10240
       
   155 
       
   156 # number of bytes allowed per injected file path (integer
       
   157 # value)
       
   158 #quota_injected_file_path_bytes=255
       
   159 
       
   160 # number of security groups per project (integer value)
       
   161 #quota_security_groups=10
       
   162 
       
   163 # number of security rules per security group (integer value)
       
   164 #quota_security_group_rules=20
       
   165 
       
   166 # number of key pairs per user (integer value)
       
   167 #quota_key_pairs=100
       
   168 
       
   169 # number of seconds until a reservation expires (integer
       
   170 # value)
       
   171 #reservation_expire=86400
       
   172 
       
   173 # count of reservations until usage is refreshed (integer
       
   174 # value)
       
   175 #until_refresh=0
       
   176 
       
   177 # number of seconds between subsequent usage refreshes
       
   178 # (integer value)
       
   179 #max_age=0
       
   180 
       
   181 # default driver to use for quota checks (string value)
       
   182 #quota_driver=nova.quota.DbQuotaDriver
       
   183 
       
   184 
       
   185 #
       
   186 # Options defined in nova.service
       
   187 #
       
   188 
       
   189 # seconds between nodes reporting state to datastore (integer
       
   190 # value)
       
   191 #report_interval=10
       
   192 
       
   193 # enable periodic tasks (boolean value)
       
   194 #periodic_enable=true
       
   195 
       
   196 # range of seconds to randomly delay when starting the
       
   197 # periodic task scheduler to reduce stampeding. (Disable by
       
   198 # setting to 0) (integer value)
       
   199 #periodic_fuzzy_delay=60
       
   200 
       
   201 # a list of APIs to enable by default (list value)
       
   202 #enabled_apis=ec2,osapi_compute,metadata
       
   203 
       
   204 # a list of APIs with enabled SSL (list value)
       
   205 #enabled_ssl_apis=
       
   206 
       
   207 # IP address for EC2 API to listen (string value)
       
   208 #ec2_listen=0.0.0.0
       
   209 
       
   210 # port for ec2 api to listen (integer value)
       
   211 #ec2_listen_port=8773
       
   212 
       
   213 # Number of workers for EC2 API service (integer value)
       
   214 #ec2_workers=<None>
       
   215 
       
   216 # IP address for OpenStack API to listen (string value)
       
   217 #osapi_compute_listen=0.0.0.0
       
   218 
       
   219 # list port for osapi compute (integer value)
       
   220 #osapi_compute_listen_port=8774
       
   221 
       
   222 # Number of workers for OpenStack API service (integer value)
       
   223 #osapi_compute_workers=<None>
       
   224 
       
   225 # OpenStack metadata service manager (string value)
       
   226 #metadata_manager=nova.api.manager.MetadataManager
       
   227 
       
   228 # IP address for metadata api to listen (string value)
       
   229 #metadata_listen=0.0.0.0
       
   230 
       
   231 # port for metadata api to listen (integer value)
       
   232 #metadata_listen_port=8775
       
   233 
       
   234 # Number of workers for metadata service (integer value)
       
   235 #metadata_workers=<None>
       
   236 
       
   237 # full class name for the Manager for compute (string value)
       
   238 #compute_manager=nova.compute.manager.ComputeManager
       
   239 
       
   240 # full class name for the Manager for console proxy (string
       
   241 # value)
       
   242 #console_manager=nova.console.manager.ConsoleProxyManager
       
   243 
       
   244 # full class name for the Manager for cert (string value)
       
   245 #cert_manager=nova.cert.manager.CertManager
       
   246 
       
   247 # full class name for the Manager for network (string value)
       
   248 #network_manager=nova.network.manager.VlanManager
       
   249 
       
   250 # full class name for the Manager for scheduler (string value)
       
   251 #scheduler_manager=nova.scheduler.manager.SchedulerManager
       
   252 
       
   253 # maximum time since last check-in for up service (integer
       
   254 # value)
       
   255 #service_down_time=60
       
   256 
       
   257 
       
   258 #
       
   259 # Options defined in nova.test
       
   260 #
       
   261 
       
   262 # File name of clean sqlite db (string value)
       
   263 #sqlite_clean_db=clean.sqlite
       
   264 
       
   265 
       
   266 #
       
   267 # Options defined in nova.utils
       
   268 #
       
   269 
       
   270 # Whether to log monkey patching (boolean value)
       
   271 #monkey_patch=false
       
   272 
       
   273 # List of modules/decorators to monkey patch (list value)
       
   274 #monkey_patch_modules=nova.api.ec2.cloud:nova.openstack.common.notifier.api.notify_decorator,nova.compute.api:nova.openstack.common.notifier.api.notify_decorator
       
   275 
       
   276 # Length of generated instance admin passwords (integer value)
       
   277 #password_length=12
       
   278 
       
   279 # Whether to disable inter-process locks (boolean value)
       
   280 #disable_process_locking=false
       
   281 
       
   282 # time period to generate instance usages for.  Time period
       
   283 # must be hour, day, month or year (string value)
       
   284 #instance_usage_audit_period=month
       
   285 
       
   286 # Path to the rootwrap configuration file to use for running
       
   287 # commands as root (string value)
       
   288 #rootwrap_config=/etc/nova/rootwrap.conf
       
   289 
       
   290 # Explicitly specify the temporary working directory (string
       
   291 # value)
       
   292 #tempdir=<None>
       
   293 
       
   294 
       
   295 #
       
   296 # Options defined in nova.wsgi
       
   297 #
       
   298 
       
   299 # File name for the paste.deploy config for nova-api (string
       
   300 # value)
       
   301 #api_paste_config=api-paste.ini
       
   302 
       
   303 # A python format string that is used as the template to
       
   304 # generate log lines. The following values can be formatted
       
   305 # into it: client_ip, date_time, request_line, status_code,
       
   306 # body_length, wall_seconds. (string value)
       
   307 #wsgi_log_format=%(client_ip)s "%(request_line)s" status: %(status_code)s len: %(body_length)s time: %(wall_seconds).7f
       
   308 
       
   309 # CA certificate file to use to verify connecting clients
       
   310 # (string value)
       
   311 #ssl_ca_file=<None>
       
   312 
       
   313 # SSL certificate of API server (string value)
       
   314 #ssl_cert_file=<None>
       
   315 
       
   316 # SSL private key of API server (string value)
       
   317 #ssl_key_file=<None>
       
   318 
       
   319 # Sets the value of TCP_KEEPIDLE in seconds for each server
       
   320 # socket. Not supported on OS X. (integer value)
       
   321 #tcp_keepidle=600
       
   322 
       
   323 
       
   324 #
       
   325 # Options defined in nova.api.auth
       
   326 #
       
   327 
       
   328 # whether to rate limit the api (boolean value)
       
   329 #api_rate_limit=true
       
   330 
       
   331 # The strategy to use for auth: noauth or keystone. (string
       
   332 # value)
       
   333 #auth_strategy=noauth
       
   334 
       
   335 # Treat X-Forwarded-For as the canonical remote address. Only
       
   336 # enable this if you have a sanitizing proxy. (boolean value)
       
   337 #use_forwarded_for=false
       
   338 
       
   339 
       
   340 #
       
   341 # Options defined in nova.api.ec2
       
   342 #
       
   343 
       
   344 # Number of failed auths before lockout. (integer value)
       
   345 #lockout_attempts=5
       
   346 
       
   347 # Number of minutes to lockout if triggered. (integer value)
       
   348 #lockout_minutes=15
       
   349 
       
   350 # Number of minutes for lockout window. (integer value)
       
   351 #lockout_window=15
       
   352 
       
   353 # URL to get token from ec2 request. (string value)
       
   354 #keystone_ec2_url=http://localhost:5000/v2.0/ec2tokens
       
   355 
       
   356 # Return the IP address as private dns hostname in describe
       
   357 # instances (boolean value)
       
   358 #ec2_private_dns_show_ip=false
       
   359 
       
   360 # Validate security group names according to EC2 specification
       
   361 # (boolean value)
       
   362 #ec2_strict_validation=true
       
   363 
       
   364 # Time in seconds before ec2 timestamp expires (integer value)
       
   365 #ec2_timestamp_expiry=300
       
   366 
       
   367 
       
   368 #
       
   369 # Options defined in nova.api.ec2.cloud
       
   370 #
       
   371 
       
   372 # the ip of the ec2 api server (string value)
       
   373 #ec2_host=$my_ip
       
   374 
       
   375 # the internal ip of the ec2 api server (string value)
       
   376 #ec2_dmz_host=$my_ip
       
   377 
       
   378 # the port of the ec2 api server (integer value)
       
   379 #ec2_port=8773
       
   380 
       
   381 # the protocol to use when connecting to the ec2 api server
       
   382 # (http, https) (string value)
       
   383 #ec2_scheme=http
       
   384 
       
   385 # the path prefix used to call the ec2 api server (string
       
   386 # value)
       
   387 #ec2_path=/services/Cloud
       
   388 
       
   389 # list of region=fqdn pairs separated by commas (list value)
       
   390 #region_list=
       
   391 
       
   392 
       
   393 #
       
   394 # Options defined in nova.api.metadata.base
       
   395 #
       
   396 
       
   397 # List of metadata versions to skip placing into the config
       
   398 # drive (string value)
       
   399 #config_drive_skip_versions=1.0 2007-01-19 2007-03-01 2007-08-29 2007-10-10 2007-12-15 2008-02-01 2008-09-01
       
   400 
       
   401 
       
   402 #
       
   403 # Options defined in nova.api.metadata.handler
       
   404 #
       
   405 
       
   406 # Set flag to indicate Quantum will proxy metadata requests
       
   407 # and resolve instance ids. (boolean value)
       
   408 #service_quantum_metadata_proxy=false
       
   409 
       
   410 # Shared secret to validate proxies Quantum metadata requests
       
   411 # (string value)
       
   412 #quantum_metadata_proxy_shared_secret=
       
   413 
       
   414 
       
   415 #
       
   416 # Options defined in nova.api.openstack.common
       
   417 #
       
   418 
       
   419 # the maximum number of items returned in a single response
       
   420 # from a collection resource (integer value)
       
   421 #osapi_max_limit=1000
       
   422 
       
   423 # Base URL that will be presented to users in links to the
       
   424 # OpenStack Compute API (string value)
       
   425 #osapi_compute_link_prefix=<None>
       
   426 
       
   427 # Base URL that will be presented to users in links to glance
       
   428 # resources (string value)
       
   429 #osapi_glance_link_prefix=<None>
       
   430 
       
   431 
       
   432 #
       
   433 # Options defined in nova.api.openstack.compute
       
   434 #
       
   435 
       
   436 # Permit instance snapshot operations. (boolean value)
       
   437 #allow_instance_snapshots=true
       
   438 
       
   439 
       
   440 #
       
   441 # Options defined in nova.api.openstack.compute.contrib
       
   442 #
       
   443 
       
   444 # Specify list of extensions to load when using
       
   445 # osapi_compute_extension option with
       
   446 # nova.api.openstack.compute.contrib.select_extensions (list
       
   447 # value)
       
   448 #osapi_compute_ext_list=
       
   449 
       
   450 
       
   451 #
       
   452 # Options defined in nova.api.openstack.compute.contrib.fping
       
   453 #
       
   454 
       
   455 # Full path to fping. (string value)
       
   456 fping_path=/usr/bin/fping
       
   457 
       
   458 
       
   459 #
       
   460 # Options defined in nova.api.openstack.compute.contrib.hide_server_addresses
       
   461 #
       
   462 
       
   463 # List of instance states that should hide network info (list
       
   464 # value)
       
   465 #osapi_hide_server_address_states=building
       
   466 
       
   467 
       
   468 #
       
   469 # Options defined in nova.api.openstack.compute.contrib.os_tenant_networks
       
   470 #
       
   471 
       
   472 # Enables or disables quotaing of tenant networks (boolean
       
   473 # value)
       
   474 #enable_network_quota=false
       
   475 
       
   476 # Control for checking for default networks (string value)
       
   477 #use_quantum_default_nets=False
       
   478 
       
   479 # Default tenant id when creating quantum networks (string
       
   480 # value)
       
   481 #quantum_default_tenant_id=default
       
   482 
       
   483 
       
   484 #
       
   485 # Options defined in nova.api.openstack.compute.extensions
       
   486 #
       
   487 
       
   488 # osapi compute extension to load (multi valued)
       
   489 #osapi_compute_extension=nova.api.openstack.compute.contrib.standard_extensions
       
   490 
       
   491 
       
   492 #
       
   493 # Options defined in nova.api.openstack.compute.servers
       
   494 #
       
   495 
       
   496 # Allows use of instance password during server creation
       
   497 # (boolean value)
       
   498 #enable_instance_password=true
       
   499 
       
   500 
       
   501 #
       
   502 # Options defined in nova.api.sizelimit
       
   503 #
       
   504 
       
   505 # the maximum body size per each osapi request(bytes) (integer
       
   506 # value)
       
   507 #osapi_max_request_body_size=114688
       
   508 
       
   509 
       
   510 #
       
   511 # Options defined in nova.cert.rpcapi
       
   512 #
       
   513 
       
   514 # the topic cert nodes listen on (string value)
       
   515 #cert_topic=cert
       
   516 
       
   517 
       
   518 #
       
   519 # Options defined in nova.cloudpipe.pipelib
       
   520 #
       
   521 
       
   522 # image id used when starting up a cloudpipe vpn server
       
   523 # (string value)
       
   524 #vpn_image_id=0
       
   525 
       
   526 # Instance type for vpn instances (string value)
       
   527 #vpn_instance_type=m1.tiny
       
   528 
       
   529 # Template for cloudpipe instance boot script (string value)
       
   530 #boot_script_template=$pybasedir/nova/cloudpipe/bootscript.template
       
   531 
       
   532 # Network to push into openvpn config (string value)
       
   533 #dmz_net=10.0.0.0
       
   534 
       
   535 # Netmask to push into openvpn config (string value)
       
   536 #dmz_mask=255.255.255.0
       
   537 
       
   538 # Suffix to add to project name for vpn key and secgroups
       
   539 # (string value)
       
   540 #vpn_key_suffix=-vpn
       
   541 
       
   542 
       
   543 #
       
   544 # Options defined in nova.common.memorycache
       
   545 #
       
   546 
       
   547 # Memcached servers or None for in process cache. (list value)
       
   548 #memcached_servers=<None>
       
   549 
       
   550 
       
   551 #
       
   552 # Options defined in nova.compute
       
   553 #
       
   554 
       
   555 # The full class name of the compute API class to use (string
       
   556 # value)
       
   557 #compute_api_class=nova.compute.api.API
       
   558 
       
   559 
       
   560 #
       
   561 # Options defined in nova.compute.api
       
   562 #
       
   563 
       
   564 # Allow destination machine to match source for resize. Useful
       
   565 # when testing in single-host environments. (boolean value)
       
   566 #allow_resize_to_same_host=false
       
   567 
       
   568 # availability zone to use when user doesn't specify one
       
   569 # (string value)
       
   570 #default_schedule_zone=<None>
       
   571 
       
   572 # These are image properties which a snapshot should not
       
   573 # inherit from an instance (list value)
       
   574 #non_inheritable_image_properties=cache_in_nova,bittorrent
       
   575 
       
   576 # kernel image that indicates not to use a kernel, but to use
       
   577 # a raw disk image instead (string value)
       
   578 #null_kernel=nokernel
       
   579 
       
   580 # When creating multiple instances with a single request using
       
   581 # the os-multiple-create API extension, this template will be
       
   582 # used to build the display name for each instance. The
       
   583 # benefit is that the instances end up with different
       
   584 # hostnames. To restore legacy behavior of every instance
       
   585 # having the same name, set this option to "%(name)s".  Valid
       
   586 # keys for the template are: name, uuid, count. (string value)
       
   587 #multi_instance_display_name_template=%(name)s-%(uuid)s
       
   588 
       
   589 
       
   590 #
       
   591 # Options defined in nova.compute.instance_types
       
   592 #
       
   593 
       
   594 # default instance type to use, testing only (string value)
       
   595 #default_instance_type=m1.small
       
   596 
       
   597 
       
   598 #
       
   599 # Options defined in nova.compute.manager
       
   600 #
       
   601 
       
   602 # Console proxy host to use to connect to instances on this
       
   603 # host. (string value)
       
   604 #console_host=nova
       
   605 
       
   606 # Name of network to use to set access ips for instances
       
   607 # (string value)
       
   608 #default_access_ip_network_name=<None>
       
   609 
       
   610 # Whether to batch up the application of IPTables rules during
       
   611 # a host restart and apply all at the end of the init phase
       
   612 # (boolean value)
       
   613 #defer_iptables_apply=false
       
   614 
       
   615 # where instances are stored on disk (string value)
       
   616 #instances_path=$state_path/instances
       
   617 
       
   618 # Generate periodic compute.instance.exists notifications
       
   619 # (boolean value)
       
   620 #instance_usage_audit=false
       
   621 
       
   622 # Number of 1 second retries needed in live_migration (integer
       
   623 # value)
       
   624 #live_migration_retry_count=30
       
   625 
       
   626 # Whether to start guests that were running before the host
       
   627 # rebooted (boolean value)
       
   628 #resume_guests_state_on_host_boot=false
       
   629 
       
   630 # interval to pull bandwidth usage info (integer value)
       
   631 #bandwidth_poll_interval=600
       
   632 
       
   633 # Number of seconds between instance info_cache self healing
       
   634 # updates (integer value)
       
   635 #heal_instance_info_cache_interval=60
       
   636 
       
   637 # Interval in seconds for querying the host status (integer
       
   638 # value)
       
   639 #host_state_interval=120
       
   640 
       
   641 # Number of seconds to wait between runs of the image cache
       
   642 # manager (integer value)
       
   643 #image_cache_manager_interval=2400
       
   644 
       
   645 # Interval in seconds for reclaiming deleted instances
       
   646 # (integer value)
       
   647 #reclaim_instance_interval=0
       
   648 
       
   649 # Interval in seconds for gathering volume usages (integer
       
   650 # value)
       
   651 #volume_usage_poll_interval=0
       
   652 
       
   653 # Action to take if a running deleted instance is
       
   654 # detected.Valid options are 'noop', 'log' and 'reap'. Set to
       
   655 # 'noop' to disable. (string value)
       
   656 #running_deleted_instance_action=log
       
   657 
       
   658 # Number of seconds to wait between runs of the cleanup task.
       
   659 # (integer value)
       
   660 #running_deleted_instance_poll_interval=1800
       
   661 
       
   662 # Number of seconds after being deleted when a running
       
   663 # instance should be considered eligible for cleanup. (integer
       
   664 # value)
       
   665 #running_deleted_instance_timeout=0
       
   666 
       
   667 # Automatically hard reboot an instance if it has been stuck
       
   668 # in a rebooting state longer than N seconds. Set to 0 to
       
   669 # disable. (integer value)
       
   670 #reboot_timeout=0
       
   671 
       
   672 # Amount of time in seconds an instance can be in BUILD before
       
   673 # going into ERROR status.Set to 0 to disable. (integer value)
       
   674 #instance_build_timeout=0
       
   675 
       
   676 # Automatically unrescue an instance after N seconds. Set to 0
       
   677 # to disable. (integer value)
       
   678 #rescue_timeout=0
       
   679 
       
   680 # Automatically confirm resizes after N seconds. Set to 0 to
       
   681 # disable. (integer value)
       
   682 #resize_confirm_window=0
       
   683 
       
   684 
       
   685 #
       
   686 # Options defined in nova.compute.resource_tracker
       
   687 #
       
   688 
       
   689 # Amount of disk in MB to reserve for the host (integer value)
       
   690 #reserved_host_disk_mb=0
       
   691 
       
   692 # Amount of memory in MB to reserve for the host (integer
       
   693 # value)
       
   694 #reserved_host_memory_mb=512
       
   695 
       
   696 # Class that will manage stats for the local compute host
       
   697 # (string value)
       
   698 #compute_stats_class=nova.compute.stats.Stats
       
   699 
       
   700 
       
   701 #
       
   702 # Options defined in nova.compute.rpcapi
       
   703 #
       
   704 
       
   705 # the topic compute nodes listen on (string value)
       
   706 #compute_topic=compute
       
   707 
       
   708 
       
   709 #
       
   710 # Options defined in nova.console.manager
       
   711 #
       
   712 
       
   713 # Driver to use for the console proxy (string value)
       
   714 console_driver=nova.console.fake.FakeConsoleProxy
       
   715 
       
   716 # Stub calls to compute worker for tests (boolean value)
       
   717 #stub_compute=false
       
   718 
       
   719 # Publicly visible name for this console host (string value)
       
   720 #console_public_hostname=nova
       
   721 
       
   722 
       
   723 #
       
   724 # Options defined in nova.console.rpcapi
       
   725 #
       
   726 
       
   727 # the topic console proxy nodes listen on (string value)
       
   728 #console_topic=console
       
   729 
       
   730 
       
   731 #
       
   732 # Options defined in nova.console.vmrc
       
   733 #
       
   734 
       
   735 # port for VMware VMRC connections (integer value)
       
   736 #console_vmrc_port=443
       
   737 
       
   738 # number of retries for retrieving VMRC information (integer
       
   739 # value)
       
   740 #console_vmrc_error_retries=10
       
   741 
       
   742 
       
   743 #
       
   744 # Options defined in nova.console.xvp
       
   745 #
       
   746 
       
   747 # XVP conf template (string value)
       
   748 #console_xvp_conf_template=$pybasedir/nova/console/xvp.conf.template
       
   749 
       
   750 # generated XVP conf file (string value)
       
   751 #console_xvp_conf=/etc/xvp.conf
       
   752 
       
   753 # XVP master process pid file (string value)
       
   754 #console_xvp_pid=/var/run/xvp.pid
       
   755 
       
   756 # XVP log file (string value)
       
   757 #console_xvp_log=/var/log/xvp.log
       
   758 
       
   759 # port for XVP to multiplex VNC connections on (integer value)
       
   760 #console_xvp_multiplex_port=5900
       
   761 
       
   762 
       
   763 #
       
   764 # Options defined in nova.consoleauth
       
   765 #
       
   766 
       
   767 # the topic console auth proxy nodes listen on (string value)
       
   768 #consoleauth_topic=consoleauth
       
   769 
       
   770 
       
   771 #
       
   772 # Options defined in nova.consoleauth.manager
       
   773 #
       
   774 
       
   775 # How many seconds before deleting tokens (integer value)
       
   776 #console_token_ttl=600
       
   777 
       
   778 # Manager for console auth (string value)
       
   779 #consoleauth_manager=nova.consoleauth.manager.ConsoleAuthManager
       
   780 
       
   781 
       
   782 #
       
   783 # Options defined in nova.db.api
       
   784 #
       
   785 
       
   786 # Services to be added to the available pool on create
       
   787 # (boolean value)
       
   788 #enable_new_services=true
       
   789 
       
   790 # Template string to be used to generate instance names
       
   791 # (string value)
       
   792 #instance_name_template=instance-%08x
       
   793 
       
   794 # Template string to be used to generate snapshot names
       
   795 # (string value)
       
   796 #snapshot_name_template=snapshot-%s
       
   797 
       
   798 
       
   799 #
       
   800 # Options defined in nova.db.base
       
   801 #
       
   802 
       
   803 # driver to use for database access (string value)
       
   804 #db_driver=nova.db
       
   805 
       
   806 
       
   807 #
       
   808 # Options defined in nova.db.sqlalchemy.api
       
   809 #
       
   810 
       
   811 # When set, compute API will consider duplicate hostnames
       
   812 # invalid within the specified scope, regardless of case.
       
   813 # Should be empty, "project" or "global". (string value)
       
   814 #osapi_compute_unique_server_name_scope=
       
   815 
       
   816 
       
   817 #
       
   818 # Options defined in nova.image.glance
       
   819 #
       
   820 
       
   821 # default glance hostname or ip (string value)
       
   822 #glance_host=$my_ip
       
   823 
       
   824 # default glance port (integer value)
       
   825 #glance_port=9292
       
   826 
       
   827 # Default protocol to use when connecting to glance. Set to
       
   828 # https for SSL. (string value)
       
   829 #glance_protocol=http
       
   830 
       
   831 # A list of the glance api servers available to nova. Prefix
       
   832 # with https:// for ssl-based glance api servers.
       
   833 # ([hostname|ip]:port) (list value)
       
   834 #glance_api_servers=$glance_host:$glance_port
       
   835 
       
   836 # Allow to perform insecure SSL (https) requests to glance
       
   837 # (boolean value)
       
   838 #glance_api_insecure=false
       
   839 
       
   840 # Number retries when downloading an image from glance
       
   841 # (integer value)
       
   842 #glance_num_retries=0
       
   843 
       
   844 # A list of url scheme that can be downloaded directly via the
       
   845 # direct_url.  Currently supported schemes: [file]. (list
       
   846 # value)
       
   847 #allowed_direct_url_schemes=
       
   848 
       
   849 
       
   850 #
       
   851 # Options defined in nova.image.s3
       
   852 #
       
   853 
       
   854 # parent dir for tempdir used for image decryption (string
       
   855 # value)
       
   856 #image_decryption_dir=/tmp
       
   857 
       
   858 # hostname or ip for openstack to use when accessing the s3
       
   859 # api (string value)
       
   860 #s3_host=$my_ip
       
   861 
       
   862 # port used when accessing the s3 api (integer value)
       
   863 #s3_port=3333
       
   864 
       
   865 # access key to use for s3 server for images (string value)
       
   866 #s3_access_key=notchecked
       
   867 
       
   868 # secret key to use for s3 server for images (string value)
       
   869 #s3_secret_key=notchecked
       
   870 
       
   871 # whether to use ssl when talking to s3 (boolean value)
       
   872 #s3_use_ssl=false
       
   873 
       
   874 # whether to affix the tenant id to the access key when
       
   875 # downloading from s3 (boolean value)
       
   876 #s3_affix_tenant=false
       
   877 
       
   878 
       
   879 #
       
   880 # Options defined in nova.ipv6.api
       
   881 #
       
   882 
       
   883 # Backend to use for IPv6 generation (string value)
       
   884 #ipv6_backend=rfc2462
       
   885 
       
   886 
       
   887 #
       
   888 # Options defined in nova.network
       
   889 #
       
   890 
       
   891 # The full class name of the network API class to use (string
       
   892 # value)
       
   893 network_api_class=nova.network.quantumv2.api.API
       
   894 
       
   895 
       
   896 #
       
   897 # Options defined in nova.network.driver
       
   898 #
       
   899 
       
   900 # Driver to use for network creation (string value)
       
   901 #network_driver=nova.network.linux_net
       
   902 
       
   903 
       
   904 #
       
   905 # Options defined in nova.network.floating_ips
       
   906 #
       
   907 
       
   908 # Default pool for floating ips (string value)
       
   909 #default_floating_pool=nova
       
   910 
       
   911 # Autoassigning floating ip to VM (boolean value)
       
   912 #auto_assign_floating_ip=false
       
   913 
       
   914 # full class name for the DNS Manager for floating IPs (string
       
   915 # value)
       
   916 #floating_ip_dns_manager=nova.network.noop_dns_driver.NoopDNSDriver
       
   917 
       
   918 # full class name for the DNS Manager for instance IPs (string
       
   919 # value)
       
   920 #instance_dns_manager=nova.network.noop_dns_driver.NoopDNSDriver
       
   921 
       
   922 # full class name for the DNS Zone for instance IPs (string
       
   923 # value)
       
   924 #instance_dns_domain=
       
   925 
       
   926 
       
   927 #
       
   928 # Options defined in nova.network.ldapdns
       
   929 #
       
   930 
       
   931 # URL for ldap server which will store dns entries (string
       
   932 # value)
       
   933 #ldap_dns_url=ldap://ldap.example.com:389
       
   934 
       
   935 # user for ldap DNS (string value)
       
   936 #ldap_dns_user=uid=admin,ou=people,dc=example,dc=org
       
   937 
       
   938 # password for ldap DNS (string value)
       
   939 #ldap_dns_password=password
       
   940 
       
   941 # Hostmaster for ldap dns driver Statement of Authority
       
   942 # (string value)
       
   943 #[email protected]
       
   944 
       
   945 # DNS Servers for ldap dns driver (multi valued)
       
   946 #ldap_dns_servers=dns.example.org
       
   947 
       
   948 # Base DN for DNS entries in ldap (string value)
       
   949 #ldap_dns_base_dn=ou=hosts,dc=example,dc=org
       
   950 
       
   951 # Refresh interval (in seconds) for ldap dns driver Statement
       
   952 # of Authority (string value)
       
   953 #ldap_dns_soa_refresh=1800
       
   954 
       
   955 # Retry interval (in seconds) for ldap dns driver Statement of
       
   956 # Authority (string value)
       
   957 #ldap_dns_soa_retry=3600
       
   958 
       
   959 # Expiry interval (in seconds) for ldap dns driver Statement
       
   960 # of Authority (string value)
       
   961 #ldap_dns_soa_expiry=86400
       
   962 
       
   963 # Minimum interval (in seconds) for ldap dns driver Statement
       
   964 # of Authority (string value)
       
   965 #ldap_dns_soa_minimum=7200
       
   966 
       
   967 
       
   968 #
       
   969 # Options defined in nova.network.linux_net
       
   970 #
       
   971 
       
   972 # location of flagfiles for dhcpbridge (multi valued)
       
   973 #dhcpbridge_flagfile=/etc/nova/nova-dhcpbridge.conf
       
   974 
       
   975 # Location to keep network config files (string value)
       
   976 #networks_path=$state_path/networks
       
   977 
       
   978 # Interface for public IP addresses (string value)
       
   979 #public_interface=eth0
       
   980 
       
   981 # MTU setting for vlan (string value)
       
   982 #network_device_mtu=<None>
       
   983 
       
   984 # location of nova-dhcpbridge (string value)
       
   985 #dhcpbridge=$bindir/nova-dhcpbridge
       
   986 
       
   987 # Public IP of network host (string value)
       
   988 #routing_source_ip=$my_ip
       
   989 
       
   990 # Lifetime of a DHCP lease in seconds (integer value)
       
   991 #dhcp_lease_time=120
       
   992 
       
   993 # if set, uses specific dns server for dnsmasq. Canbe
       
   994 # specified multiple times. (multi valued)
       
   995 #dns_server=
       
   996 
       
   997 # if set, uses the dns1 and dns2 from the network ref.as dns
       
   998 # servers. (boolean value)
       
   999 #use_network_dns_servers=false
       
  1000 
       
  1001 # A list of dmz range that should be accepted (list value)
       
  1002 #dmz_cidr=
       
  1003 
       
  1004 # Traffic to this range will always be snatted to the fallback
       
  1005 # ip, even if it would normally be bridged out of the node.
       
  1006 # Can be specified multiple times. (multi valued)
       
  1007 #force_snat_range=
       
  1008 
       
  1009 # Override the default dnsmasq settings with this file (string
       
  1010 # value)
       
  1011 #dnsmasq_config_file=
       
  1012 
       
  1013 # Driver used to create ethernet devices. (string value)
       
  1014 #linuxnet_interface_driver=nova.network.linux_net.LinuxBridgeInterfaceDriver
       
  1015 
       
  1016 # Name of Open vSwitch bridge used with linuxnet (string
       
  1017 # value)
       
  1018 #linuxnet_ovs_integration_bridge=br-int
       
  1019 
       
  1020 # send gratuitous ARPs for HA setup (boolean value)
       
  1021 #send_arp_for_ha=false
       
  1022 
       
  1023 # send this many gratuitous ARPs for HA setup (integer value)
       
  1024 #send_arp_for_ha_count=3
       
  1025 
       
  1026 # Use single default gateway. Only first nic of vm will get
       
  1027 # default gateway from dhcp server (boolean value)
       
  1028 #use_single_default_gateway=false
       
  1029 
       
  1030 # An interface that bridges can forward to. If this is set to
       
  1031 # all then all traffic will be forwarded. Can be specified
       
  1032 # multiple times. (multi valued)
       
  1033 #forward_bridge_interface=all
       
  1034 
       
  1035 # the ip for the metadata api server (string value)
       
  1036 #metadata_host=$my_ip
       
  1037 
       
  1038 # the port for the metadata api port (integer value)
       
  1039 #metadata_port=8775
       
  1040 
       
  1041 # Regular expression to match iptables rule that shouldalways
       
  1042 # be on the top. (string value)
       
  1043 #iptables_top_regex=
       
  1044 
       
  1045 # Regular expression to match iptables rule that shouldalways
       
  1046 # be on the bottom. (string value)
       
  1047 #iptables_bottom_regex=
       
  1048 
       
  1049 
       
  1050 #
       
  1051 # Options defined in nova.network.manager
       
  1052 #
       
  1053 
       
  1054 # Bridge for simple network instances (string value)
       
  1055 #flat_network_bridge=<None>
       
  1056 
       
  1057 # Dns for simple network (string value)
       
  1058 #flat_network_dns=8.8.4.4
       
  1059 
       
  1060 # Whether to attempt to inject network setup into guest
       
  1061 # (boolean value)
       
  1062 #flat_injected=false
       
  1063 
       
  1064 # FlatDhcp will bridge into this interface if set (string
       
  1065 # value)
       
  1066 #flat_interface=<None>
       
  1067 
       
  1068 # First VLAN for private networks (integer value)
       
  1069 #vlan_start=100
       
  1070 
       
  1071 # vlans will bridge into this interface if set (string value)
       
  1072 #vlan_interface=<None>
       
  1073 
       
  1074 # Number of networks to support (integer value)
       
  1075 #num_networks=1
       
  1076 
       
  1077 # Public IP for the cloudpipe VPN servers (string value)
       
  1078 #vpn_ip=$my_ip
       
  1079 
       
  1080 # First Vpn port for private networks (integer value)
       
  1081 #vpn_start=1000
       
  1082 
       
  1083 # Number of addresses in each private subnet (integer value)
       
  1084 #network_size=256
       
  1085 
       
  1086 # Fixed IP address block (string value)
       
  1087 #fixed_range=10.0.0.0/8
       
  1088 
       
  1089 # Fixed IPv6 address block (string value)
       
  1090 #fixed_range_v6=fd00::/48
       
  1091 
       
  1092 # Default IPv4 gateway (string value)
       
  1093 #gateway=<None>
       
  1094 
       
  1095 # Default IPv6 gateway (string value)
       
  1096 #gateway_v6=<None>
       
  1097 
       
  1098 # Number of addresses reserved for vpn clients (integer value)
       
  1099 #cnt_vpn_clients=0
       
  1100 
       
  1101 # Seconds after which a deallocated ip is disassociated
       
  1102 # (integer value)
       
  1103 #fixed_ip_disassociate_timeout=600
       
  1104 
       
  1105 # Number of attempts to create unique mac address (integer
       
  1106 # value)
       
  1107 #create_unique_mac_address_attempts=5
       
  1108 
       
  1109 # If passed, use fake network devices and addresses (boolean
       
  1110 # value)
       
  1111 #fake_network=false
       
  1112 
       
  1113 # If True, skip using the queue and make local calls (boolean
       
  1114 # value)
       
  1115 #fake_call=false
       
  1116 
       
  1117 # If True, unused gateway devices (VLAN and bridge) are
       
  1118 # deleted in VLAN network mode with multi hosted networks
       
  1119 # (boolean value)
       
  1120 #teardown_unused_network_gateway=false
       
  1121 
       
  1122 # If True, send a dhcp release on instance termination
       
  1123 # (boolean value)
       
  1124 #force_dhcp_release=false
       
  1125 
       
  1126 # If True in multi_host mode, all compute hosts share the same
       
  1127 # dhcp address. (boolean value)
       
  1128 #share_dhcp_address=false
       
  1129 
       
  1130 # If True, when a DNS entry must be updated, it sends a fanout
       
  1131 # cast to all network hosts to update their DNS entries in
       
  1132 # multi host mode (boolean value)
       
  1133 #update_dns_entries=false
       
  1134 
       
  1135 # Number of seconds to wait between runs of updates to DNS
       
  1136 # entries. (integer value)
       
  1137 #dns_update_periodic_interval=-1
       
  1138 
       
  1139 # domain to use for building the hostnames (string value)
       
  1140 #dhcp_domain=novalocal
       
  1141 
       
  1142 # Indicates underlying L3 management library (string value)
       
  1143 #l3_lib=nova.network.l3.LinuxNetL3
       
  1144 
       
  1145 
       
  1146 #
       
  1147 # Options defined in nova.network.quantumv2.api
       
  1148 #
       
  1149 
       
  1150 # URL for connecting to quantum (string value)
       
  1151 #quantum_url=http://127.0.0.1:9696
       
  1152 
       
  1153 # timeout value for connecting to quantum in seconds (integer
       
  1154 # value)
       
  1155 #quantum_url_timeout=30
       
  1156 
       
  1157 # username for connecting to quantum in admin context (string
       
  1158 # value)
       
  1159 #quantum_admin_username=<None>
       
  1160 
       
  1161 # password for connecting to quantum in admin context (string
       
  1162 # value)
       
  1163 #quantum_admin_password=<None>
       
  1164 
       
  1165 # tenant name for connecting to quantum in admin context
       
  1166 # (string value)
       
  1167 #quantum_admin_tenant_name=<None>
       
  1168 
       
  1169 # region name for connecting to quantum in admin context
       
  1170 # (string value)
       
  1171 #quantum_region_name=<None>
       
  1172 
       
  1173 # auth url for connecting to quantum in admin context (string
       
  1174 # value)
       
  1175 #quantum_admin_auth_url=http://localhost:5000/v2.0
       
  1176 
       
  1177 # if set, ignore any SSL validation issues (boolean value)
       
  1178 #quantum_api_insecure=false
       
  1179 
       
  1180 # auth strategy for connecting to quantum in admin context
       
  1181 # (string value)
       
  1182 #quantum_auth_strategy=keystone
       
  1183 
       
  1184 # Name of Integration Bridge used by Open vSwitch (string
       
  1185 # value)
       
  1186 #quantum_ovs_bridge=br-int
       
  1187 
       
  1188 # Number of seconds before querying quantum for extensions
       
  1189 # (integer value)
       
  1190 #quantum_extension_sync_interval=600
       
  1191 
       
  1192 
       
  1193 #
       
  1194 # Options defined in nova.network.rpcapi
       
  1195 #
       
  1196 
       
  1197 # the topic network nodes listen on (string value)
       
  1198 #network_topic=network
       
  1199 
       
  1200 # Default value for multi_host in networks. Also, if set, some
       
  1201 # rpc network calls will be sent directly to host. (boolean
       
  1202 # value)
       
  1203 #multi_host=false
       
  1204 
       
  1205 
       
  1206 #
       
  1207 # Options defined in nova.network.security_group.openstack_driver
       
  1208 #
       
  1209 
       
  1210 # The full class name of the security API class (string value)
       
  1211 #security_group_api=nova
       
  1212 
       
  1213 # The full class name of the security group handler class
       
  1214 # (string value)
       
  1215 #security_group_handler=nova.network.sg.NullSecurityGroupHandler
       
  1216 
       
  1217 
       
  1218 #
       
  1219 # Options defined in bin.nova-clear-rabbit-queues
       
  1220 #
       
  1221 
       
  1222 # Queues to delete (multi valued)
       
  1223 #queues=
       
  1224 
       
  1225 # delete nova exchange too. (boolean value)
       
  1226 #delete_exchange=false
       
  1227 
       
  1228 
       
  1229 #
       
  1230 # Options defined in bin.nova-novncproxy
       
  1231 #
       
  1232 
       
  1233 # Record sessions to FILE.[session_number] (boolean value)
       
  1234 #record=false
       
  1235 
       
  1236 # Become a daemon (background process) (boolean value)
       
  1237 #daemon=false
       
  1238 
       
  1239 # Disallow non-encrypted connections (boolean value)
       
  1240 #ssl_only=false
       
  1241 
       
  1242 # Source is ipv6 (boolean value)
       
  1243 #source_is_ipv6=false
       
  1244 
       
  1245 # SSL certificate file (string value)
       
  1246 #cert=self.pem
       
  1247 
       
  1248 # SSL key file (if separate from cert) (string value)
       
  1249 #key=<None>
       
  1250 
       
  1251 # Run webserver on same port. Serve files from DIR. (string
       
  1252 # value)
       
  1253 #web=/usr/share/novnc
       
  1254 
       
  1255 # Host on which to listen for incoming requests (string value)
       
  1256 #novncproxy_host=0.0.0.0
       
  1257 
       
  1258 # Port on which to listen for incoming requests (integer
       
  1259 # value)
       
  1260 #novncproxy_port=6080
       
  1261 
       
  1262 
       
  1263 #
       
  1264 # Options defined in nova.objectstore.s3server
       
  1265 #
       
  1266 
       
  1267 # path to s3 buckets (string value)
       
  1268 #buckets_path=$state_path/buckets
       
  1269 
       
  1270 # IP address for S3 API to listen (string value)
       
  1271 #s3_listen=0.0.0.0
       
  1272 
       
  1273 # port for s3 api to listen (integer value)
       
  1274 #s3_listen_port=3333
       
  1275 
       
  1276 
       
  1277 #
       
  1278 # Options defined in nova.openstack.common.db.api
       
  1279 #
       
  1280 
       
  1281 # The backend to use for db (string value)
       
  1282 #db_backend=sqlalchemy
       
  1283 
       
  1284 # Enable the experimental use of thread pooling for all DB API
       
  1285 # calls (boolean value)
       
  1286 #dbapi_use_tpool=false
       
  1287 
       
  1288 
       
  1289 #
       
  1290 # Options defined in nova.openstack.common.db.sqlalchemy.session
       
  1291 #
       
  1292 
       
  1293 # The SQLAlchemy connection string used to connect to the
       
  1294 # database (string value)
       
  1295 #sql_connection=sqlite:////nova/openstack/common/db/$sqlite_db
       
  1296 
       
  1297 # the filename to use with sqlite (string value)
       
  1298 #sqlite_db=nova.sqlite
       
  1299 
       
  1300 # timeout before idle sql connections are reaped (integer
       
  1301 # value)
       
  1302 #sql_idle_timeout=3600
       
  1303 
       
  1304 # If passed, use synchronous mode for sqlite (boolean value)
       
  1305 #sqlite_synchronous=true
       
  1306 
       
  1307 # Minimum number of SQL connections to keep open in a pool
       
  1308 # (integer value)
       
  1309 #sql_min_pool_size=1
       
  1310 
       
  1311 # Maximum number of SQL connections to keep open in a pool
       
  1312 # (integer value)
       
  1313 #sql_max_pool_size=5
       
  1314 
       
  1315 # maximum db connection retries during startup. (setting -1
       
  1316 # implies an infinite retry count) (integer value)
       
  1317 #sql_max_retries=10
       
  1318 
       
  1319 # interval between retries of opening a sql connection
       
  1320 # (integer value)
       
  1321 #sql_retry_interval=10
       
  1322 
       
  1323 # If set, use this value for max_overflow with sqlalchemy
       
  1324 # (integer value)
       
  1325 #sql_max_overflow=<None>
       
  1326 
       
  1327 # Verbosity of SQL debugging information. 0=None,
       
  1328 # 100=Everything (integer value)
       
  1329 #sql_connection_debug=0
       
  1330 
       
  1331 # Add python stack traces to SQL as comment strings (boolean
       
  1332 # value)
       
  1333 #sql_connection_trace=false
       
  1334 
       
  1335 
       
  1336 #
       
  1337 # Options defined in nova.openstack.common.eventlet_backdoor
       
  1338 #
       
  1339 
       
  1340 # port for eventlet backdoor to listen (integer value)
       
  1341 #backdoor_port=<None>
       
  1342 
       
  1343 
       
  1344 #
       
  1345 # Options defined in nova.openstack.common.lockutils
       
  1346 #
       
  1347 
       
  1348 # Whether to disable inter-process locks (boolean value)
       
  1349 #disable_process_locking=false
       
  1350 
       
  1351 # Directory to use for lock files. Default to a temp directory
       
  1352 # (string value)
       
  1353 #lock_path=<None>
       
  1354 
       
  1355 
       
  1356 #
       
  1357 # Options defined in nova.openstack.common.log
       
  1358 #
       
  1359 
       
  1360 # Print debugging output (set logging level to DEBUG instead
       
  1361 # of default WARNING level). (boolean value)
       
  1362 #debug=false
       
  1363 
       
  1364 # Print more verbose output (set logging level to INFO instead
       
  1365 # of default WARNING level). (boolean value)
       
  1366 #verbose=false
       
  1367 
       
  1368 # Log output to standard error (boolean value)
       
  1369 #use_stderr=true
       
  1370 
       
  1371 # Default file mode used when creating log files (string
       
  1372 # value)
       
  1373 #logfile_mode=0644
       
  1374 
       
  1375 # format string to use for log messages with context (string
       
  1376 # value)
       
  1377 #logging_context_format_string=%(asctime)s.%(msecs)03d %(levelname)s %(name)s [%(request_id)s %(user)s %(tenant)s] %(instance)s%(message)s
       
  1378 
       
  1379 # format string to use for log messages without context
       
  1380 # (string value)
       
  1381 #logging_default_format_string=%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
       
  1382 
       
  1383 # data to append to log format when level is DEBUG (string
       
  1384 # value)
       
  1385 #logging_debug_format_suffix=%(funcName)s %(pathname)s:%(lineno)d
       
  1386 
       
  1387 # prefix each line of exception output with this format
       
  1388 # (string value)
       
  1389 #logging_exception_prefix=%(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s
       
  1390 
       
  1391 # list of logger=LEVEL pairs (list value)
       
  1392 #default_log_levels=amqplib=WARN,sqlalchemy=WARN,boto=WARN,suds=INFO,keystone=INFO,eventlet.wsgi.server=WARN
       
  1393 
       
  1394 # publish error events (boolean value)
       
  1395 #publish_errors=false
       
  1396 
       
  1397 # make deprecations fatal (boolean value)
       
  1398 #fatal_deprecations=false
       
  1399 
       
  1400 # If an instance is passed with the log message, format it
       
  1401 # like this (string value)
       
  1402 #instance_format="[instance: %(uuid)s] "
       
  1403 
       
  1404 # If an instance UUID is passed with the log message, format
       
  1405 # it like this (string value)
       
  1406 #instance_uuid_format="[instance: %(uuid)s] "
       
  1407 
       
  1408 # If this option is specified, the logging configuration file
       
  1409 # specified is used and overrides any other logging options
       
  1410 # specified. Please see the Python logging module
       
  1411 # documentation for details on logging configuration files.
       
  1412 # (string value)
       
  1413 #log_config=<None>
       
  1414 
       
  1415 # A logging.Formatter log message format string which may use
       
  1416 # any of the available logging.LogRecord attributes. Default:
       
  1417 # %(default)s (string value)
       
  1418 #log_format=%(asctime)s %(levelname)8s [%(name)s] %(message)s
       
  1419 
       
  1420 # Format string for %%(asctime)s in log records. Default:
       
  1421 # %(default)s (string value)
       
  1422 #log_date_format=%Y-%m-%d %H:%M:%S
       
  1423 
       
  1424 # (Optional) Name of log file to output to. If not set,
       
  1425 # logging will go to stdout. (string value)
       
  1426 #log_file=<None>
       
  1427 
       
  1428 # (Optional) The directory to keep log files in (will be
       
  1429 # prepended to --log-file) (string value)
       
  1430 #log_dir=<None>
       
  1431 
       
  1432 # Use syslog for logging. (boolean value)
       
  1433 #use_syslog=false
       
  1434 
       
  1435 # syslog facility to receive log lines (string value)
       
  1436 #syslog_log_facility=LOG_USER
       
  1437 
       
  1438 
       
  1439 #
       
  1440 # Options defined in nova.openstack.common.notifier.api
       
  1441 #
       
  1442 
       
  1443 # Driver or drivers to handle sending notifications (multi
       
  1444 # valued)
       
  1445 #notification_driver=
       
  1446 
       
  1447 # Default notification level for outgoing notifications
       
  1448 # (string value)
       
  1449 #default_notification_level=INFO
       
  1450 
       
  1451 # Default publisher_id for outgoing notifications (string
       
  1452 # value)
       
  1453 #default_publisher_id=$host
       
  1454 
       
  1455 
       
  1456 #
       
  1457 # Options defined in nova.openstack.common.notifier.rpc_notifier
       
  1458 #
       
  1459 
       
  1460 # AMQP topic used for openstack notifications (list value)
       
  1461 #notification_topics=notifications
       
  1462 
       
  1463 
       
  1464 #
       
  1465 # Options defined in nova.openstack.common.rpc
       
  1466 #
       
  1467 
       
  1468 # The messaging module to use, defaults to kombu. (string
       
  1469 # value)
       
  1470 #rpc_backend=nova.openstack.common.rpc.impl_kombu
       
  1471 
       
  1472 # Size of RPC thread pool (integer value)
       
  1473 #rpc_thread_pool_size=64
       
  1474 
       
  1475 # Size of RPC connection pool (integer value)
       
  1476 #rpc_conn_pool_size=30
       
  1477 
       
  1478 # Seconds to wait for a response from call or multicall
       
  1479 # (integer value)
       
  1480 #rpc_response_timeout=60
       
  1481 
       
  1482 # Seconds to wait before a cast expires (TTL). Only supported
       
  1483 # by impl_zmq. (integer value)
       
  1484 #rpc_cast_timeout=30
       
  1485 
       
  1486 # Modules of exceptions that are permitted to be recreatedupon
       
  1487 # receiving exception data from an rpc call. (list value)
       
  1488 #allowed_rpc_exception_modules=nova.openstack.common.exception,nova.exception,cinder.exception,exceptions
       
  1489 
       
  1490 # If passed, use a fake RabbitMQ provider (boolean value)
       
  1491 #fake_rabbit=false
       
  1492 
       
  1493 # AMQP exchange to connect to if using RabbitMQ or Qpid
       
  1494 # (string value)
       
  1495 #control_exchange=openstack
       
  1496 
       
  1497 
       
  1498 #
       
  1499 # Options defined in nova.openstack.common.rpc.amqp
       
  1500 #
       
  1501 
       
  1502 # Enable a fast single reply queue if using AMQP based RPC
       
  1503 # like RabbitMQ or Qpid. (boolean value)
       
  1504 #amqp_rpc_single_reply_queue=false
       
  1505 
       
  1506 
       
  1507 #
       
  1508 # Options defined in nova.openstack.common.rpc.impl_kombu
       
  1509 #
       
  1510 
       
  1511 # SSL version to use (valid only if SSL enabled) (string
       
  1512 # value)
       
  1513 #kombu_ssl_version=
       
  1514 
       
  1515 # SSL key file (valid only if SSL enabled) (string value)
       
  1516 #kombu_ssl_keyfile=
       
  1517 
       
  1518 # SSL cert file (valid only if SSL enabled) (string value)
       
  1519 #kombu_ssl_certfile=
       
  1520 
       
  1521 # SSL certification authority file (valid only if SSL enabled)
       
  1522 # (string value)
       
  1523 #kombu_ssl_ca_certs=
       
  1524 
       
  1525 # The RabbitMQ broker address where a single node is used
       
  1526 # (string value)
       
  1527 #rabbit_host=localhost
       
  1528 
       
  1529 # The RabbitMQ broker port where a single node is used
       
  1530 # (integer value)
       
  1531 #rabbit_port=5672
       
  1532 
       
  1533 # RabbitMQ HA cluster host:port pairs (list value)
       
  1534 #rabbit_hosts=$rabbit_host:$rabbit_port
       
  1535 
       
  1536 # connect over SSL for RabbitMQ (boolean value)
       
  1537 #rabbit_use_ssl=false
       
  1538 
       
  1539 # the RabbitMQ userid (string value)
       
  1540 #rabbit_userid=guest
       
  1541 
       
  1542 # the RabbitMQ password (string value)
       
  1543 #rabbit_password=guest
       
  1544 
       
  1545 # the RabbitMQ virtual host (string value)
       
  1546 #rabbit_virtual_host=/
       
  1547 
       
  1548 # how frequently to retry connecting with RabbitMQ (integer
       
  1549 # value)
       
  1550 #rabbit_retry_interval=1
       
  1551 
       
  1552 # how long to backoff for between retries when connecting to
       
  1553 # RabbitMQ (integer value)
       
  1554 #rabbit_retry_backoff=2
       
  1555 
       
  1556 # maximum retries with trying to connect to RabbitMQ (the
       
  1557 # default of 0 implies an infinite retry count) (integer
       
  1558 # value)
       
  1559 #rabbit_max_retries=0
       
  1560 
       
  1561 # use durable queues in RabbitMQ (boolean value)
       
  1562 #rabbit_durable_queues=false
       
  1563 
       
  1564 # use H/A queues in RabbitMQ (x-ha-policy: all).You need to
       
  1565 # wipe RabbitMQ database when changing this option. (boolean
       
  1566 # value)
       
  1567 #rabbit_ha_queues=false
       
  1568 
       
  1569 
       
  1570 #
       
  1571 # Options defined in nova.openstack.common.rpc.impl_qpid
       
  1572 #
       
  1573 
       
  1574 # Qpid broker hostname (string value)
       
  1575 #qpid_hostname=localhost
       
  1576 
       
  1577 # Qpid broker port (string value)
       
  1578 #qpid_port=5672
       
  1579 
       
  1580 # Qpid HA cluster host:port pairs (list value)
       
  1581 #qpid_hosts=$qpid_hostname:$qpid_port
       
  1582 
       
  1583 # Username for qpid connection (string value)
       
  1584 #qpid_username=
       
  1585 
       
  1586 # Password for qpid connection (string value)
       
  1587 #qpid_password=
       
  1588 
       
  1589 # Space separated list of SASL mechanisms to use for auth
       
  1590 # (string value)
       
  1591 #qpid_sasl_mechanisms=
       
  1592 
       
  1593 # Seconds between connection keepalive heartbeats (integer
       
  1594 # value)
       
  1595 #qpid_heartbeat=60
       
  1596 
       
  1597 # Transport to use, either 'tcp' or 'ssl' (string value)
       
  1598 #qpid_protocol=tcp
       
  1599 
       
  1600 # Disable Nagle algorithm (boolean value)
       
  1601 #qpid_tcp_nodelay=true
       
  1602 
       
  1603 
       
  1604 #
       
  1605 # Options defined in nova.openstack.common.rpc.impl_zmq
       
  1606 #
       
  1607 
       
  1608 # ZeroMQ bind address. Should be a wildcard (*), an ethernet
       
  1609 # interface, or IP. The "host" option should point or resolve
       
  1610 # to this address. (string value)
       
  1611 #rpc_zmq_bind_address=*
       
  1612 
       
  1613 # MatchMaker driver (string value)
       
  1614 #rpc_zmq_matchmaker=nova.openstack.common.rpc.matchmaker.MatchMakerLocalhost
       
  1615 
       
  1616 # ZeroMQ receiver listening port (integer value)
       
  1617 #rpc_zmq_port=9501
       
  1618 
       
  1619 # Number of ZeroMQ contexts, defaults to 1 (integer value)
       
  1620 #rpc_zmq_contexts=1
       
  1621 
       
  1622 # Maximum number of ingress messages to locally buffer per
       
  1623 # topic. Default is unlimited. (integer value)
       
  1624 #rpc_zmq_topic_backlog=<None>
       
  1625 
       
  1626 # Directory for holding IPC sockets (string value)
       
  1627 #rpc_zmq_ipc_dir=/var/run/openstack
       
  1628 
       
  1629 # Name of this node. Must be a valid hostname, FQDN, or IP
       
  1630 # address. Must match "host" option, if running Nova. (string
       
  1631 # value)
       
  1632 #rpc_zmq_host=sorcha
       
  1633 
       
  1634 
       
  1635 #
       
  1636 # Options defined in nova.openstack.common.rpc.matchmaker
       
  1637 #
       
  1638 
       
  1639 # Matchmaker ring file (JSON) (string value)
       
  1640 #matchmaker_ringfile=/etc/nova/matchmaker_ring.json
       
  1641 
       
  1642 
       
  1643 #
       
  1644 # Options defined in nova.scheduler.driver
       
  1645 #
       
  1646 
       
  1647 # The scheduler host manager class to use (string value)
       
  1648 #scheduler_host_manager=nova.scheduler.host_manager.HostManager
       
  1649 
       
  1650 # Maximum number of attempts to schedule an instance (integer
       
  1651 # value)
       
  1652 #scheduler_max_attempts=3
       
  1653 
       
  1654 
       
  1655 #
       
  1656 # Options defined in nova.scheduler.filter_scheduler
       
  1657 #
       
  1658 
       
  1659 # New instances will be scheduled on a host chosen randomly
       
  1660 # from a subset of the N best hosts. This property defines the
       
  1661 # subset size that a host is chosen from. A value of 1 chooses
       
  1662 # the first host returned by the weighing functions. This
       
  1663 # value must be at least 1. Any value less than 1 will be
       
  1664 # ignored, and 1 will be used instead (integer value)
       
  1665 #scheduler_host_subset_size=1
       
  1666 
       
  1667 
       
  1668 #
       
  1669 # Options defined in nova.scheduler.filters.core_filter
       
  1670 #
       
  1671 
       
  1672 # Virtual CPU to Physical CPU allocation ratio (floating point
       
  1673 # value)
       
  1674 #cpu_allocation_ratio=16.0
       
  1675 
       
  1676 
       
  1677 #
       
  1678 # Options defined in nova.scheduler.filters.disk_filter
       
  1679 #
       
  1680 
       
  1681 # virtual disk to physical disk allocation ratio (floating
       
  1682 # point value)
       
  1683 #disk_allocation_ratio=1.0
       
  1684 
       
  1685 
       
  1686 #
       
  1687 # Options defined in nova.scheduler.filters.io_ops_filter
       
  1688 #
       
  1689 
       
  1690 # Ignore hosts that have too many
       
  1691 # builds/resizes/snaps/migrations (integer value)
       
  1692 #max_io_ops_per_host=8
       
  1693 
       
  1694 
       
  1695 #
       
  1696 # Options defined in nova.scheduler.filters.isolated_hosts_filter
       
  1697 #
       
  1698 
       
  1699 # Images to run on isolated host (list value)
       
  1700 #isolated_images=
       
  1701 
       
  1702 # Host reserved for specific images (list value)
       
  1703 #isolated_hosts=
       
  1704 
       
  1705 
       
  1706 #
       
  1707 # Options defined in nova.scheduler.filters.num_instances_filter
       
  1708 #
       
  1709 
       
  1710 # Ignore hosts that have too many instances (integer value)
       
  1711 #max_instances_per_host=50
       
  1712 
       
  1713 
       
  1714 #
       
  1715 # Options defined in nova.scheduler.filters.ram_filter
       
  1716 #
       
  1717 
       
  1718 # virtual ram to physical ram allocation ratio (floating point
       
  1719 # value)
       
  1720 #ram_allocation_ratio=1.5
       
  1721 
       
  1722 
       
  1723 #
       
  1724 # Options defined in nova.scheduler.host_manager
       
  1725 #
       
  1726 
       
  1727 # Filter classes available to the scheduler which may be
       
  1728 # specified more than once.  An entry of
       
  1729 # "nova.scheduler.filters.standard_filters" maps to all
       
  1730 # filters included with nova. (multi valued)
       
  1731 #scheduler_available_filters=nova.scheduler.filters.all_filters
       
  1732 
       
  1733 # Which filter class names to use for filtering hosts when not
       
  1734 # specified in the request. (list value)
       
  1735 #scheduler_default_filters=RetryFilter,AvailabilityZoneFilter,RamFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter
       
  1736 
       
  1737 # Which weight class names to use for weighing hosts (list
       
  1738 # value)
       
  1739 #scheduler_weight_classes=nova.scheduler.weights.all_weighers
       
  1740 
       
  1741 
       
  1742 #
       
  1743 # Options defined in nova.scheduler.manager
       
  1744 #
       
  1745 
       
  1746 # Default driver to use for the scheduler (string value)
       
  1747 #scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler
       
  1748 
       
  1749 
       
  1750 #
       
  1751 # Options defined in nova.scheduler.multi
       
  1752 #
       
  1753 
       
  1754 # Driver to use for scheduling compute calls (string value)
       
  1755 #compute_scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler
       
  1756 
       
  1757 # Default driver to use for scheduling calls (string value)
       
  1758 #default_scheduler_driver=nova.scheduler.chance.ChanceScheduler
       
  1759 
       
  1760 
       
  1761 #
       
  1762 # Options defined in nova.scheduler.rpcapi
       
  1763 #
       
  1764 
       
  1765 # the topic scheduler nodes listen on (string value)
       
  1766 #scheduler_topic=scheduler
       
  1767 
       
  1768 
       
  1769 #
       
  1770 # Options defined in nova.scheduler.scheduler_options
       
  1771 #
       
  1772 
       
  1773 # Absolute path to scheduler configuration JSON file. (string
       
  1774 # value)
       
  1775 #scheduler_json_config_location=
       
  1776 
       
  1777 
       
  1778 #
       
  1779 # Options defined in nova.scheduler.weights.least_cost
       
  1780 #
       
  1781 
       
  1782 # Which cost functions the LeastCostScheduler should use (list
       
  1783 # value)
       
  1784 #least_cost_functions=<None>
       
  1785 
       
  1786 # How much weight to give the noop cost function (floating
       
  1787 # point value)
       
  1788 #noop_cost_fn_weight=1.0
       
  1789 
       
  1790 # How much weight to give the fill-first cost function. A
       
  1791 # negative value will reverse behavior: e.g. spread-first
       
  1792 # (floating point value)
       
  1793 #compute_fill_first_cost_fn_weight=<None>
       
  1794 
       
  1795 
       
  1796 #
       
  1797 # Options defined in nova.scheduler.weights.ram
       
  1798 #
       
  1799 
       
  1800 # Multiplier used for weighing ram.  Negative numbers mean to
       
  1801 # stack vs spread. (floating point value)
       
  1802 #ram_weight_multiplier=1.0
       
  1803 
       
  1804 
       
  1805 #
       
  1806 # Options defined in nova.servicegroup.api
       
  1807 #
       
  1808 
       
  1809 # The driver for servicegroup service (valid options are: db,
       
  1810 # zk, mc) (string value)
       
  1811 #servicegroup_driver=db
       
  1812 
       
  1813 
       
  1814 #
       
  1815 # Options defined in nova.virt.configdrive
       
  1816 #
       
  1817 
       
  1818 # Config drive format. One of iso9660 (default) or vfat
       
  1819 # (string value)
       
  1820 #config_drive_format=iso9660
       
  1821 
       
  1822 # Where to put temporary files associated with config drive
       
  1823 # creation (string value)
       
  1824 #config_drive_tempdir=<None>
       
  1825 
       
  1826 # Set to force injection to take place on a config drive (if
       
  1827 # set, valid options are: always) (string value)
       
  1828 #force_config_drive=<None>
       
  1829 
       
  1830 # Name and optionally path of the tool used for ISO image
       
  1831 # creation (string value)
       
  1832 #mkisofs_cmd=genisoimage
       
  1833 
       
  1834 
       
  1835 #
       
  1836 # Options defined in nova.virt.disk.api
       
  1837 #
       
  1838 
       
  1839 # Template file for injected network (string value)
       
  1840 #injected_network_template=$pybasedir/nova/virt/interfaces.template
       
  1841 
       
  1842 # mkfs commands for ephemeral device. The format is
       
  1843 # <os_type>=<mkfs command> (multi valued)
       
  1844 #virt_mkfs=default=mkfs.ext3 -L %(fs_label)s -F %(target)s
       
  1845 #virt_mkfs=linux=mkfs.ext3 -L %(fs_label)s -F %(target)s
       
  1846 #virt_mkfs=windows=mkfs.ntfs --force --fast --label %(fs_label)s %(target)s
       
  1847 
       
  1848 
       
  1849 #
       
  1850 # Options defined in nova.virt.disk.mount.nbd
       
  1851 #
       
  1852 
       
  1853 # time to wait for a NBD device coming up (integer value)
       
  1854 #timeout_nbd=10
       
  1855 
       
  1856 
       
  1857 #
       
  1858 # Options defined in nova.virt.driver
       
  1859 #
       
  1860 
       
  1861 # Driver to use for controlling virtualization. Options
       
  1862 # include: libvirt.LibvirtDriver, xenapi.XenAPIDriver,
       
  1863 # fake.FakeDriver, baremetal.BareMetalDriver,
       
  1864 # vmwareapi.VMWareESXDriver (string value)
       
  1865 compute_driver=solariszones.SolarisZonesDriver
       
  1866 
       
  1867 # The default format an ephemeral_volume will be formatted
       
  1868 # with on creation. (string value)
       
  1869 #default_ephemeral_format=<None>
       
  1870 
       
  1871 # VM image preallocation mode: "none" => no storage
       
  1872 # provisioning is done up front, "space" => storage is fully
       
  1873 # allocated at instance start (string value)
       
  1874 #preallocate_images=none
       
  1875 
       
  1876 # Whether to use cow images (boolean value)
       
  1877 #use_cow_images=true
       
  1878 
       
  1879 
       
  1880 #
       
  1881 # Options defined in nova.virt.firewall
       
  1882 #
       
  1883 
       
  1884 # Firewall driver (defaults to hypervisor specific iptables
       
  1885 # driver) (string value)
       
  1886 #firewall_driver=<None>
       
  1887 
       
  1888 # Whether to allow network traffic from same network (boolean
       
  1889 # value)
       
  1890 #allow_same_net_traffic=true
       
  1891 
       
  1892 
       
  1893 #
       
  1894 # Options defined in nova.virt.hyperv.vif
       
  1895 #
       
  1896 
       
  1897 # External virtual switch Name, if not provided, the first
       
  1898 # external virtual switch is used (string value)
       
  1899 #vswitch_name=<None>
       
  1900 
       
  1901 
       
  1902 #
       
  1903 # Options defined in nova.virt.hyperv.vmops
       
  1904 #
       
  1905 
       
  1906 # Required for live migration among hosts with different CPU
       
  1907 # features (boolean value)
       
  1908 #limit_cpu_features=false
       
  1909 
       
  1910 # Sets the admin password in the config drive image (boolean
       
  1911 # value)
       
  1912 #config_drive_inject_password=false
       
  1913 
       
  1914 # qemu-img is used to convert between different image types
       
  1915 # (string value)
       
  1916 #qemu_img_cmd=qemu-img.exe
       
  1917 
       
  1918 # Attaches the Config Drive image as a cdrom drive instead of
       
  1919 # a disk drive (boolean value)
       
  1920 #config_drive_cdrom=false
       
  1921 
       
  1922 
       
  1923 #
       
  1924 # Options defined in nova.virt.hyperv.volumeops
       
  1925 #
       
  1926 
       
  1927 # The number of times we retry on attaching volume  (integer
       
  1928 # value)
       
  1929 #hyperv_attaching_volume_retry_count=10
       
  1930 
       
  1931 # The seconds to wait between an volume attachment attempt
       
  1932 # (integer value)
       
  1933 #hyperv_wait_between_attach_retry=5
       
  1934 
       
  1935 # Force volumeutils v1 (boolean value)
       
  1936 #force_volumeutils_v1=false
       
  1937 
       
  1938 
       
  1939 #
       
  1940 # Options defined in nova.virt.images
       
  1941 #
       
  1942 
       
  1943 # Force backing images to raw format (boolean value)
       
  1944 #force_raw_images=true
       
  1945 
       
  1946 
       
  1947 #
       
  1948 # Options defined in nova.virt.libvirt.driver
       
  1949 #
       
  1950 
       
  1951 # Rescue ami image (string value)
       
  1952 #rescue_image_id=<None>
       
  1953 
       
  1954 # Rescue aki image (string value)
       
  1955 #rescue_kernel_id=<None>
       
  1956 
       
  1957 # Rescue ari image (string value)
       
  1958 #rescue_ramdisk_id=<None>
       
  1959 
       
  1960 # Libvirt domain type (valid options are: kvm, lxc, qemu, uml,
       
  1961 # xen) (string value)
       
  1962 #libvirt_type=kvm
       
  1963 
       
  1964 # Override the default libvirt URI (which is dependent on
       
  1965 # libvirt_type) (string value)
       
  1966 #libvirt_uri=
       
  1967 
       
  1968 # Inject the admin password at boot time, without an agent.
       
  1969 # (boolean value)
       
  1970 #libvirt_inject_password=false
       
  1971 
       
  1972 # Inject the ssh public key at boot time (boolean value)
       
  1973 #libvirt_inject_key=true
       
  1974 
       
  1975 # The partition to inject to : -2 => disable, -1 => inspect
       
  1976 # (libguestfs only), 0 => not partitioned, >0 => partition
       
  1977 # number (integer value)
       
  1978 #libvirt_inject_partition=1
       
  1979 
       
  1980 # Sync virtual and real mouse cursors in Windows VMs (boolean
       
  1981 # value)
       
  1982 #use_usb_tablet=true
       
  1983 
       
  1984 # Migration target URI (any included "%s" is replaced with the
       
  1985 # migration target hostname) (string value)
       
  1986 #live_migration_uri=qemu+tcp://%s/system
       
  1987 
       
  1988 # Migration flags to be set for live migration (string value)
       
  1989 #live_migration_flag=VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER
       
  1990 
       
  1991 # Migration flags to be set for block migration (string value)
       
  1992 #block_migration_flag=VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_NON_SHARED_INC
       
  1993 
       
  1994 # Maximum bandwidth to be used during migration, in Mbps
       
  1995 # (integer value)
       
  1996 #live_migration_bandwidth=0
       
  1997 
       
  1998 # Snapshot image format (valid options are : raw, qcow2, vmdk,
       
  1999 # vdi). Defaults to same as source image (string value)
       
  2000 #snapshot_image_format=<None>
       
  2001 
       
  2002 # The libvirt VIF driver to configure the VIFs. (string value)
       
  2003 #libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtGenericVIFDriver
       
  2004 
       
  2005 # Libvirt handlers for remote volumes. (list value)
       
  2006 #libvirt_volume_drivers=iscsi=nova.virt.libvirt.volume.LibvirtISCSIVolumeDriver,local=nova.virt.libvirt.volume.LibvirtVolumeDriver,fake=nova.virt.libvirt.volume.LibvirtFakeVolumeDriver,rbd=nova.virt.libvirt.volume.LibvirtNetVolumeDriver,sheepdog=nova.virt.libvirt.volume.LibvirtNetVolumeDriver,nfs=nova.virt.libvirt.volume.LibvirtNFSVolumeDriver,aoe=nova.virt.libvirt.volume.LibvirtAOEVolumeDriver,glusterfs=nova.virt.libvirt.volume.LibvirtGlusterfsVolumeDriver,fibre_channel=nova.virt.libvirt.volume.LibvirtFibreChannelVolumeDriver,scality=nova.virt.libvirt.volume.LibvirtScalityVolumeDriver
       
  2007 
       
  2008 # Override the default disk prefix for the devices attached to
       
  2009 # a server, which is dependent on libvirt_type. (valid options
       
  2010 # are: sd, xvd, uvd, vd) (string value)
       
  2011 #libvirt_disk_prefix=<None>
       
  2012 
       
  2013 # Number of seconds to wait for instance to shut down after
       
  2014 # soft reboot request is made. We fall back to hard reboot if
       
  2015 # instance does not shutdown within this window. (integer
       
  2016 # value)
       
  2017 #libvirt_wait_soft_reboot_seconds=120
       
  2018 
       
  2019 # Use a separated OS thread pool to realize non-blocking
       
  2020 # libvirt calls (boolean value)
       
  2021 #libvirt_nonblocking=true
       
  2022 
       
  2023 # Set to "host-model" to clone the host CPU feature flags; to
       
  2024 # "host-passthrough" to use the host CPU model exactly; to
       
  2025 # "custom" to use a named CPU model; to "none" to not set any
       
  2026 # CPU model. If libvirt_type="kvm|qemu", it will default to
       
  2027 # "host-model", otherwise it will default to "none" (string
       
  2028 # value)
       
  2029 #libvirt_cpu_mode=<None>
       
  2030 
       
  2031 # Set to a named libvirt CPU model (see names listed in
       
  2032 # /usr/share/libvirt/cpu_map.xml). Only has effect if
       
  2033 # libvirt_cpu_mode="custom" and libvirt_type="kvm|qemu"
       
  2034 # (string value)
       
  2035 #libvirt_cpu_model=<None>
       
  2036 
       
  2037 # Location where libvirt driver will store snapshots before
       
  2038 # uploading them to image service (string value)
       
  2039 #libvirt_snapshots_directory=$instances_path/snapshots
       
  2040 
       
  2041 # Location where the Xen hvmloader is kept (string value)
       
  2042 #xen_hvmloader_path=/usr/lib/xen/boot/hvmloader
       
  2043 
       
  2044 # Specific cachemodes to use for different disk types e.g:
       
  2045 # ["file=directsync","block=none"] (list value)
       
  2046 #disk_cachemodes=
       
  2047 
       
  2048 
       
  2049 #
       
  2050 # Options defined in nova.virt.libvirt.imagebackend
       
  2051 #
       
  2052 
       
  2053 # VM Images format. Acceptable values are: raw, qcow2, lvm,
       
  2054 # default. If default is specified, then use_cow_images flag
       
  2055 # is used instead of this one. (string value)
       
  2056 #libvirt_images_type=default
       
  2057 
       
  2058 # LVM Volume Group that is used for VM images, when you
       
  2059 # specify libvirt_images_type=lvm. (string value)
       
  2060 #libvirt_images_volume_group=<None>
       
  2061 
       
  2062 # Create sparse logical volumes (with virtualsize) if this
       
  2063 # flag is set to True. (boolean value)
       
  2064 #libvirt_sparse_logical_volumes=false
       
  2065 
       
  2066 # The amount of storage (in megabytes) to allocate for LVM
       
  2067 # snapshot copy-on-write blocks. (integer value)
       
  2068 #libvirt_lvm_snapshot_size=1000
       
  2069 
       
  2070 
       
  2071 #
       
  2072 # Options defined in nova.virt.libvirt.imagecache
       
  2073 #
       
  2074 
       
  2075 # Where cached images are stored under $instances_path.This is
       
  2076 # NOT the full path - just a folder name.For per-compute-host
       
  2077 # cached images, set to _base_$my_ip (string value)
       
  2078 #base_dir_name=_base
       
  2079 
       
  2080 # Allows image information files to be stored in non-standard
       
  2081 # locations (string value)
       
  2082 #image_info_filename_pattern=$instances_path/$base_dir_name/%(image)s.info
       
  2083 
       
  2084 # Should unused base images be removed? (boolean value)
       
  2085 #remove_unused_base_images=true
       
  2086 
       
  2087 # Should unused kernel images be removed? This is only safe to
       
  2088 # enable if all compute nodes have been updated to support
       
  2089 # this option. This will enabled by default in future.
       
  2090 # (boolean value)
       
  2091 #remove_unused_kernels=false
       
  2092 
       
  2093 # Unused resized base images younger than this will not be
       
  2094 # removed (integer value)
       
  2095 #remove_unused_resized_minimum_age_seconds=3600
       
  2096 
       
  2097 # Unused unresized base images younger than this will not be
       
  2098 # removed (integer value)
       
  2099 #remove_unused_original_minimum_age_seconds=86400
       
  2100 
       
  2101 # Write a checksum for files in _base to disk (boolean value)
       
  2102 #checksum_base_images=false
       
  2103 
       
  2104 # How frequently to checksum base images (integer value)
       
  2105 #checksum_interval_seconds=3600
       
  2106 
       
  2107 
       
  2108 #
       
  2109 # Options defined in nova.virt.libvirt.utils
       
  2110 #
       
  2111 
       
  2112 # Compress snapshot images when possible. This currently
       
  2113 # applies exclusively to qcow2 images (boolean value)
       
  2114 #libvirt_snapshot_compression=false
       
  2115 
       
  2116 
       
  2117 #
       
  2118 # Options defined in nova.virt.libvirt.vif
       
  2119 #
       
  2120 
       
  2121 # Name of Integration Bridge used by Open vSwitch (string
       
  2122 # value)
       
  2123 #libvirt_ovs_bridge=br-int
       
  2124 
       
  2125 # Use virtio for bridge interfaces with KVM/QEMU (boolean
       
  2126 # value)
       
  2127 #libvirt_use_virtio_for_bridges=true
       
  2128 
       
  2129 
       
  2130 #
       
  2131 # Options defined in nova.virt.libvirt.volume
       
  2132 #
       
  2133 
       
  2134 # number of times to rescan iSCSI target to find volume
       
  2135 # (integer value)
       
  2136 #num_iscsi_scan_tries=3
       
  2137 
       
  2138 # the RADOS client name for accessing rbd volumes (string
       
  2139 # value)
       
  2140 #rbd_user=<None>
       
  2141 
       
  2142 # the libvirt uuid of the secret for the rbd_uservolumes
       
  2143 # (string value)
       
  2144 #rbd_secret_uuid=<None>
       
  2145 
       
  2146 # Dir where the nfs volume is mounted on the compute node
       
  2147 # (string value)
       
  2148 #nfs_mount_point_base=$state_path/mnt
       
  2149 
       
  2150 # Mount options passed to the nfs client. See section of the
       
  2151 # nfs man page for details (string value)
       
  2152 #nfs_mount_options=<None>
       
  2153 
       
  2154 # number of times to rediscover AoE target to find volume
       
  2155 # (integer value)
       
  2156 #num_aoe_discover_tries=3
       
  2157 
       
  2158 # Dir where the glusterfs volume is mounted on the compute
       
  2159 # node (string value)
       
  2160 #glusterfs_mount_point_base=$state_path/mnt
       
  2161 
       
  2162 # use multipath connection of the iSCSI volume (boolean value)
       
  2163 #libvirt_iscsi_use_multipath=false
       
  2164 
       
  2165 # Path or URL to Scality SOFS configuration file (string
       
  2166 # value)
       
  2167 #scality_sofs_config=<None>
       
  2168 
       
  2169 # Base dir where Scality SOFS shall be mounted (string value)
       
  2170 #scality_sofs_mount_point=$state_path/scality
       
  2171 
       
  2172 
       
  2173 #
       
  2174 # Options defined in nova.virt.powervm.driver
       
  2175 #
       
  2176 
       
  2177 # PowerVM manager type (ivm, hmc) (string value)
       
  2178 #powervm_mgr_type=ivm
       
  2179 
       
  2180 # PowerVM manager host or ip (string value)
       
  2181 #powervm_mgr=<None>
       
  2182 
       
  2183 # PowerVM manager user name (string value)
       
  2184 #powervm_mgr_user=<None>
       
  2185 
       
  2186 # PowerVM manager user password (string value)
       
  2187 #powervm_mgr_passwd=<None>
       
  2188 
       
  2189 # PowerVM image remote path where images will be moved. Make
       
  2190 # sure this path can fit your biggest image in glance (string
       
  2191 # value)
       
  2192 #powervm_img_remote_path=/home/padmin
       
  2193 
       
  2194 # Local directory to download glance images to. Make sure this
       
  2195 # path can fit your biggest image in glance (string value)
       
  2196 #powervm_img_local_path=/tmp
       
  2197 
       
  2198 
       
  2199 #
       
  2200 # Options defined in nova.virt.vmwareapi.driver
       
  2201 #
       
  2202 
       
  2203 # URL for connection to VMware ESX/VC host. Required if
       
  2204 # compute_driver is vmwareapi.VMwareESXDriver or
       
  2205 # vmwareapi.VMwareVCDriver. (string value)
       
  2206 #vmwareapi_host_ip=<None>
       
  2207 
       
  2208 # Username for connection to VMware ESX/VC host. Used only if
       
  2209 # compute_driver is vmwareapi.VMwareESXDriver or
       
  2210 # vmwareapi.VMwareVCDriver. (string value)
       
  2211 #vmwareapi_host_username=<None>
       
  2212 
       
  2213 # Password for connection to VMware ESX/VC host. Used only if
       
  2214 # compute_driver is vmwareapi.VMwareESXDriver or
       
  2215 # vmwareapi.VMwareVCDriver. (string value)
       
  2216 #vmwareapi_host_password=<None>
       
  2217 
       
  2218 # Name of a VMware Cluster ComputeResource. Used only if
       
  2219 # compute_driver is vmwareapi.VMwareVCDriver. (string value)
       
  2220 #vmwareapi_cluster_name=<None>
       
  2221 
       
  2222 # The interval used for polling of remote tasks. Used only if
       
  2223 # compute_driver is vmwareapi.VMwareESXDriver or
       
  2224 # vmwareapi.VMwareVCDriver. (floating point value)
       
  2225 #vmwareapi_task_poll_interval=5.0
       
  2226 
       
  2227 # The number of times we retry on failures, e.g., socket
       
  2228 # error, etc. Used only if compute_driver is
       
  2229 # vmwareapi.VMwareESXDriver or vmwareapi.VMwareVCDriver.
       
  2230 # (integer value)
       
  2231 #vmwareapi_api_retry_count=10
       
  2232 
       
  2233 # VNC starting port (integer value)
       
  2234 #vnc_port=5900
       
  2235 
       
  2236 # Total number of VNC ports (integer value)
       
  2237 #vnc_port_total=10000
       
  2238 
       
  2239 # VNC password (string value)
       
  2240 #vnc_password=<None>
       
  2241 
       
  2242 # Whether to use linked clone (boolean value)
       
  2243 #use_linked_clone=true
       
  2244 
       
  2245 
       
  2246 #
       
  2247 # Options defined in nova.virt.vmwareapi.vif
       
  2248 #
       
  2249 
       
  2250 # Physical ethernet adapter name for vlan networking (string
       
  2251 # value)
       
  2252 #vmwareapi_vlan_interface=vmnic0
       
  2253 
       
  2254 
       
  2255 #
       
  2256 # Options defined in nova.virt.vmwareapi.vim
       
  2257 #
       
  2258 
       
  2259 # Optional VIM Service WSDL Location e.g
       
  2260 # http://<server>/vimService.wsdl
       
  2261 #vmwareapi_wsdl_loc=<None>
       
  2262 
       
  2263 
       
  2264 #
       
  2265 # Options defined in nova.virt.xenapi.agent
       
  2266 #
       
  2267 
       
  2268 # number of seconds to wait for agent reply (integer value)
       
  2269 #agent_timeout=30
       
  2270 
       
  2271 # number of seconds to wait for agent to be fully operational
       
  2272 # (integer value)
       
  2273 #agent_version_timeout=300
       
  2274 
       
  2275 # number of seconds to wait for agent reply to resetnetwork
       
  2276 # request (integer value)
       
  2277 #agent_resetnetwork_timeout=60
       
  2278 
       
  2279 # Specifies the path in which the xenapi guest agent should be
       
  2280 # located. If the agent is present, network configuration is
       
  2281 # not injected into the image. Used if
       
  2282 # compute_driver=xenapi.XenAPIDriver and  flat_injected=True
       
  2283 # (string value)
       
  2284 #xenapi_agent_path=usr/sbin/xe-update-networking
       
  2285 
       
  2286 # Disable XenAPI agent. Reduces the amount of time it takes
       
  2287 # nova to detect that a VM has started, when that VM does not
       
  2288 # have the agent installed (boolean value)
       
  2289 #xenapi_disable_agent=false
       
  2290 
       
  2291 
       
  2292 #
       
  2293 # Options defined in nova.virt.xenapi.driver
       
  2294 #
       
  2295 
       
  2296 # URL for connection to XenServer/Xen Cloud Platform. Required
       
  2297 # if compute_driver=xenapi.XenAPIDriver (string value)
       
  2298 #xenapi_connection_url=<None>
       
  2299 
       
  2300 # Username for connection to XenServer/Xen Cloud Platform.
       
  2301 # Used only if compute_driver=xenapi.XenAPIDriver (string
       
  2302 # value)
       
  2303 #xenapi_connection_username=root
       
  2304 
       
  2305 # Password for connection to XenServer/Xen Cloud Platform.
       
  2306 # Used only if compute_driver=xenapi.XenAPIDriver (string
       
  2307 # value)
       
  2308 #xenapi_connection_password=<None>
       
  2309 
       
  2310 # Maximum number of concurrent XenAPI connections. Used only
       
  2311 # if compute_driver=xenapi.XenAPIDriver (integer value)
       
  2312 #xenapi_connection_concurrent=5
       
  2313 
       
  2314 # The interval used for polling of coalescing vhds. Used only
       
  2315 # if compute_driver=xenapi.XenAPIDriver (floating point value)
       
  2316 #xenapi_vhd_coalesce_poll_interval=5.0
       
  2317 
       
  2318 # Ensure compute service is running on host XenAPI connects
       
  2319 # to. (boolean value)
       
  2320 #xenapi_check_host=true
       
  2321 
       
  2322 # Max number of times to poll for VHD to coalesce. Used only
       
  2323 # if compute_driver=xenapi.XenAPIDriver (integer value)
       
  2324 #xenapi_vhd_coalesce_max_attempts=5
       
  2325 
       
  2326 # Base path to the storage repository (string value)
       
  2327 #xenapi_sr_base_path=/var/run/sr-mount
       
  2328 
       
  2329 # iSCSI Target Host (string value)
       
  2330 #target_host=<None>
       
  2331 
       
  2332 # iSCSI Target Port, 3260 Default (string value)
       
  2333 #target_port=3260
       
  2334 
       
  2335 # IQN Prefix (string value)
       
  2336 #iqn_prefix=iqn.2010-10.org.openstack
       
  2337 
       
  2338 # Used to enable the remapping of VBD dev (Works around an
       
  2339 # issue in Ubuntu Maverick) (boolean value)
       
  2340 #xenapi_remap_vbd_dev=false
       
  2341 
       
  2342 # Specify prefix to remap VBD dev to (ex. /dev/xvdb ->
       
  2343 # /dev/sdb) (string value)
       
  2344 #xenapi_remap_vbd_dev_prefix=sd
       
  2345 
       
  2346 # Timeout in seconds for XenAPI login. (integer value)
       
  2347 #xenapi_login_timeout=10
       
  2348 
       
  2349 
       
  2350 #
       
  2351 # Options defined in nova.virt.xenapi.pool
       
  2352 #
       
  2353 
       
  2354 # To use for hosts with different CPUs (boolean value)
       
  2355 #use_join_force=true
       
  2356 
       
  2357 
       
  2358 #
       
  2359 # Options defined in nova.virt.xenapi.vif
       
  2360 #
       
  2361 
       
  2362 # Name of Integration Bridge used by Open vSwitch (string
       
  2363 # value)
       
  2364 #xenapi_ovs_integration_bridge=xapi1
       
  2365 
       
  2366 
       
  2367 #
       
  2368 # Options defined in nova.virt.xenapi.vm_utils
       
  2369 #
       
  2370 
       
  2371 # Cache glance images locally. `all` will cache all images,
       
  2372 # `some` will only cache images that have the image_property
       
  2373 # `cache_in_nova=True`, and `none` turns off caching entirely
       
  2374 # (string value)
       
  2375 #cache_images=all
       
  2376 
       
  2377 # Default OS type (string value)
       
  2378 #default_os_type=linux
       
  2379 
       
  2380 # Time to wait for a block device to be created (integer
       
  2381 # value)
       
  2382 #block_device_creation_timeout=10
       
  2383 
       
  2384 # Maximum size in bytes of kernel or ramdisk images (integer
       
  2385 # value)
       
  2386 #max_kernel_ramdisk_size=16777216
       
  2387 
       
  2388 # Filter for finding the SR to be used to install guest
       
  2389 # instances on. The default value is the Local Storage in
       
  2390 # default XenServer/XCP installations. To select an SR with a
       
  2391 # different matching criteria, you could set it to other-
       
  2392 # config:my_favorite_sr=true. On the other hand, to fall back
       
  2393 # on the Default SR, as displayed by XenCenter, set this flag
       
  2394 # to: default-sr:true (string value)
       
  2395 #sr_matching_filter=other-config:i18n-key=local-storage
       
  2396 
       
  2397 # Whether to use sparse_copy for copying data on a resize down
       
  2398 # (False will use standard dd). This speeds up resizes down
       
  2399 # considerably since large runs of zeros won't have to be
       
  2400 # rsynced (boolean value)
       
  2401 #xenapi_sparse_copy=true
       
  2402 
       
  2403 # Maximum number of retries to unplug VBD (integer value)
       
  2404 #xenapi_num_vbd_unplug_retries=10
       
  2405 
       
  2406 # Whether or not to download images via Bit Torrent
       
  2407 # (all|some|none). (string value)
       
  2408 #xenapi_torrent_images=none
       
  2409 
       
  2410 # Base URL for torrent files. (string value)
       
  2411 #xenapi_torrent_base_url=<None>
       
  2412 
       
  2413 # Probability that peer will become a seeder. (1.0 = 100%)
       
  2414 # (floating point value)
       
  2415 #xenapi_torrent_seed_chance=1.0
       
  2416 
       
  2417 # Number of seconds after downloading an image via BitTorrent
       
  2418 # that it should be seeded for other peers. (integer value)
       
  2419 #xenapi_torrent_seed_duration=3600
       
  2420 
       
  2421 # Cached torrent files not accessed within this number of
       
  2422 # seconds can be reaped (integer value)
       
  2423 #xenapi_torrent_max_last_accessed=86400
       
  2424 
       
  2425 # Beginning of port range to listen on (integer value)
       
  2426 #xenapi_torrent_listen_port_start=6881
       
  2427 
       
  2428 # End of port range to listen on (integer value)
       
  2429 #xenapi_torrent_listen_port_end=6891
       
  2430 
       
  2431 # Number of seconds a download can remain at the same progress
       
  2432 # percentage w/o being considered a stall (integer value)
       
  2433 #xenapi_torrent_download_stall_cutoff=600
       
  2434 
       
  2435 # Maximum number of seeder processes to run concurrently
       
  2436 # within a given dom0. (-1 = no limit) (integer value)
       
  2437 #xenapi_torrent_max_seeder_processes_per_host=1
       
  2438 
       
  2439 
       
  2440 #
       
  2441 # Options defined in nova.virt.xenapi.vmops
       
  2442 #
       
  2443 
       
  2444 # number of seconds to wait for instance to go to running
       
  2445 # state (integer value)
       
  2446 #xenapi_running_timeout=60
       
  2447 
       
  2448 # The XenAPI VIF driver using XenServer Network APIs. (string
       
  2449 # value)
       
  2450 #xenapi_vif_driver=nova.virt.xenapi.vif.XenAPIBridgeDriver
       
  2451 
       
  2452 # Object Store Driver used to handle image uploads. (string
       
  2453 # value)
       
  2454 #xenapi_image_upload_handler=nova.virt.xenapi.imageupload.glance.GlanceStore
       
  2455 
       
  2456 
       
  2457 #
       
  2458 # Options defined in nova.vnc
       
  2459 #
       
  2460 
       
  2461 # location of vnc console proxy, in the form
       
  2462 # "http://127.0.0.1:6080/vnc_auto.html" (string value)
       
  2463 #novncproxy_base_url=http://127.0.0.1:6080/vnc_auto.html
       
  2464 
       
  2465 # location of nova xvp vnc console proxy, in the form
       
  2466 # "http://127.0.0.1:6081/console" (string value)
       
  2467 #xvpvncproxy_base_url=http://127.0.0.1:6081/console
       
  2468 
       
  2469 # IP address on which instance vncservers should listen
       
  2470 # (string value)
       
  2471 #vncserver_listen=127.0.0.1
       
  2472 
       
  2473 # the address to which proxy clients (like nova-xvpvncproxy)
       
  2474 # should connect (string value)
       
  2475 #vncserver_proxyclient_address=127.0.0.1
       
  2476 
       
  2477 # enable vnc related features (boolean value)
       
  2478 #vnc_enabled=true
       
  2479 
       
  2480 # keymap for vnc (string value)
       
  2481 #vnc_keymap=en-us
       
  2482 
       
  2483 
       
  2484 #
       
  2485 # Options defined in nova.vnc.xvp_proxy
       
  2486 #
       
  2487 
       
  2488 # Port that the XCP VNC proxy should bind to (integer value)
       
  2489 #xvpvncproxy_port=6081
       
  2490 
       
  2491 # Address that the XCP VNC proxy should bind to (string value)
       
  2492 #xvpvncproxy_host=0.0.0.0
       
  2493 
       
  2494 
       
  2495 #
       
  2496 # Options defined in nova.volume
       
  2497 #
       
  2498 
       
  2499 # The full class name of the volume API class to use (string
       
  2500 # value)
       
  2501 #volume_api_class=nova.volume.cinder.API
       
  2502 
       
  2503 
       
  2504 #
       
  2505 # Options defined in nova.volume.cinder
       
  2506 #
       
  2507 
       
  2508 # Info to match when looking for cinder in the service
       
  2509 # catalog. Format is : separated values of the form:
       
  2510 # <service_type>:<service_name>:<endpoint_type> (string value)
       
  2511 #cinder_catalog_info=volume:cinder:publicURL
       
  2512 
       
  2513 # Override service catalog lookup with template for cinder
       
  2514 # endpoint e.g. http://localhost:8776/v1/%(project_id)s
       
  2515 # (string value)
       
  2516 #cinder_endpoint_template=<None>
       
  2517 
       
  2518 # region name of this node (string value)
       
  2519 #os_region_name=<None>
       
  2520 
       
  2521 # Number of cinderclient retries on failed http calls (integer
       
  2522 # value)
       
  2523 #cinder_http_retries=3
       
  2524 
       
  2525 # Allow to perform insecure SSL requests to cinder (boolean
       
  2526 # value)
       
  2527 #cinder_api_insecure=false
       
  2528 
       
  2529 # Allow attach between instance and volume in different
       
  2530 # availability zones. (boolean value)
       
  2531 #cinder_cross_az_attach=true
       
  2532 
       
  2533 
       
  2534 [HYPERV]
       
  2535 
       
  2536 #
       
  2537 # Options defined in nova.virt.hyperv.pathutils
       
  2538 #
       
  2539 
       
  2540 # The name of a Windows share name mapped to the
       
  2541 # "instances_path" dir and used by the resize feature to copy
       
  2542 # files to the target host. If left blank, an administrative
       
  2543 # share will be used, looking for the same "instances_path"
       
  2544 # used locally (string value)
       
  2545 #instances_path_share=
       
  2546 
       
  2547 
       
  2548 [conductor]
       
  2549 
       
  2550 #
       
  2551 # Options defined in nova.conductor.api
       
  2552 #
       
  2553 
       
  2554 # Perform nova-conductor operations locally (boolean value)
       
  2555 #use_local=false
       
  2556 
       
  2557 # the topic conductor nodes listen on (string value)
       
  2558 #topic=conductor
       
  2559 
       
  2560 # full class name for the Manager for conductor (string value)
       
  2561 #manager=nova.conductor.manager.ConductorManager
       
  2562 
       
  2563 
       
  2564 [cells]
       
  2565 
       
  2566 #
       
  2567 # Options defined in nova.cells.manager
       
  2568 #
       
  2569 
       
  2570 # Cells communication driver to use (string value)
       
  2571 #driver=nova.cells.rpc_driver.CellsRPCDriver
       
  2572 
       
  2573 # Number of seconds after an instance was updated or deleted
       
  2574 # to continue to update cells (integer value)
       
  2575 #instance_updated_at_threshold=3600
       
  2576 
       
  2577 # Number of instances to update per periodic task run (integer
       
  2578 # value)
       
  2579 #instance_update_num_instances=1
       
  2580 
       
  2581 
       
  2582 #
       
  2583 # Options defined in nova.cells.messaging
       
  2584 #
       
  2585 
       
  2586 # Maximum number of hops for cells routing. (integer value)
       
  2587 #max_hop_count=10
       
  2588 
       
  2589 # Cells scheduler to use (string value)
       
  2590 #scheduler=nova.cells.scheduler.CellsScheduler
       
  2591 
       
  2592 
       
  2593 #
       
  2594 # Options defined in nova.cells.opts
       
  2595 #
       
  2596 
       
  2597 # Enable cell functionality (boolean value)
       
  2598 #enable=false
       
  2599 
       
  2600 # the topic cells nodes listen on (string value)
       
  2601 #topic=cells
       
  2602 
       
  2603 # Manager for cells (string value)
       
  2604 #manager=nova.cells.manager.CellsManager
       
  2605 
       
  2606 # name of this cell (string value)
       
  2607 #name=nova
       
  2608 
       
  2609 # Key/Multi-value list with the capabilities of the cell (list
       
  2610 # value)
       
  2611 #capabilities=hypervisor=xenserver;kvm,os=linux;windows
       
  2612 
       
  2613 # Seconds to wait for response from a call to a cell. (integer
       
  2614 # value)
       
  2615 #call_timeout=60
       
  2616 
       
  2617 
       
  2618 #
       
  2619 # Options defined in nova.cells.rpc_driver
       
  2620 #
       
  2621 
       
  2622 # Base queue name to use when communicating between cells.
       
  2623 # Various topics by message type will be appended to this.
       
  2624 # (string value)
       
  2625 #rpc_driver_queue_base=cells.intercell
       
  2626 
       
  2627 
       
  2628 #
       
  2629 # Options defined in nova.cells.scheduler
       
  2630 #
       
  2631 
       
  2632 # How many retries when no cells are available. (integer
       
  2633 # value)
       
  2634 #scheduler_retries=10
       
  2635 
       
  2636 # How often to retry in seconds when no cells are available.
       
  2637 # (integer value)
       
  2638 #scheduler_retry_delay=2
       
  2639 
       
  2640 
       
  2641 #
       
  2642 # Options defined in nova.cells.state
       
  2643 #
       
  2644 
       
  2645 # Seconds between getting fresh cell info from db. (integer
       
  2646 # value)
       
  2647 #db_check_interval=60
       
  2648 
       
  2649 
       
  2650 [zookeeper]
       
  2651 
       
  2652 #
       
  2653 # Options defined in nova.servicegroup.drivers.zk
       
  2654 #
       
  2655 
       
  2656 # The ZooKeeper addresses for servicegroup service in the
       
  2657 # format of host1:port,host2:port,host3:port (string value)
       
  2658 #address=<None>
       
  2659 
       
  2660 # recv_timeout parameter for the zk session (integer value)
       
  2661 #recv_timeout=4000
       
  2662 
       
  2663 # The prefix used in ZooKeeper to store ephemeral nodes
       
  2664 # (string value)
       
  2665 #sg_prefix=/servicegroups
       
  2666 
       
  2667 # Number of seconds to wait until retrying to join the session
       
  2668 # (integer value)
       
  2669 #sg_retry_interval=5
       
  2670 
       
  2671 
       
  2672 [baremetal]
       
  2673 
       
  2674 #
       
  2675 # Options defined in nova.virt.baremetal.db.api
       
  2676 #
       
  2677 
       
  2678 # The backend to use for bare-metal database (string value)
       
  2679 #db_backend=sqlalchemy
       
  2680 
       
  2681 
       
  2682 #
       
  2683 # Options defined in nova.virt.baremetal.db.sqlalchemy.session
       
  2684 #
       
  2685 
       
  2686 # The SQLAlchemy connection string used to connect to the
       
  2687 # bare-metal database (string value)
       
  2688 #sql_connection=sqlite:///$state_path/baremetal_$sqlite_db
       
  2689 
       
  2690 
       
  2691 #
       
  2692 # Options defined in nova.virt.baremetal.driver
       
  2693 #
       
  2694 
       
  2695 # Whether baremetal compute injects password or not (boolean
       
  2696 # value)
       
  2697 #inject_password=true
       
  2698 
       
  2699 # Template file for injected network (string value)
       
  2700 #injected_network_template=$pybasedir/nova/virt/baremetal/interfaces.template
       
  2701 
       
  2702 # Baremetal VIF driver. (string value)
       
  2703 #vif_driver=nova.virt.baremetal.vif_driver.BareMetalVIFDriver
       
  2704 
       
  2705 # Baremetal volume driver. (string value)
       
  2706 #volume_driver=nova.virt.baremetal.volume_driver.LibvirtVolumeDriver
       
  2707 
       
  2708 # a list of additional capabilities corresponding to
       
  2709 # instance_type_extra_specs for this compute host to
       
  2710 # advertise. Valid entries are name=value, pairs For example,
       
  2711 # "key1:val1, key2:val2" (list value)
       
  2712 #instance_type_extra_specs=
       
  2713 
       
  2714 # Baremetal driver back-end (pxe or tilera) (string value)
       
  2715 #driver=nova.virt.baremetal.pxe.PXE
       
  2716 
       
  2717 # Baremetal power management method (string value)
       
  2718 #power_manager=nova.virt.baremetal.ipmi.IPMI
       
  2719 
       
  2720 # Baremetal compute node's tftp root path (string value)
       
  2721 #tftp_root=/tftpboot
       
  2722 
       
  2723 
       
  2724 #
       
  2725 # Options defined in nova.virt.baremetal.ipmi
       
  2726 #
       
  2727 
       
  2728 # path to baremetal terminal program (string value)
       
  2729 #terminal=shellinaboxd
       
  2730 
       
  2731 # path to baremetal terminal SSL cert(PEM) (string value)
       
  2732 #terminal_cert_dir=<None>
       
  2733 
       
  2734 # path to directory stores pidfiles of baremetal_terminal
       
  2735 # (string value)
       
  2736 #terminal_pid_dir=$state_path/baremetal/console
       
  2737 
       
  2738 # maximal number of retries for IPMI operations (integer
       
  2739 # value)
       
  2740 #ipmi_power_retry=5
       
  2741 
       
  2742 
       
  2743 #
       
  2744 # Options defined in nova.virt.baremetal.pxe
       
  2745 #
       
  2746 
       
  2747 # Default kernel image ID used in deployment phase (string
       
  2748 # value)
       
  2749 #deploy_kernel=<None>
       
  2750 
       
  2751 # Default ramdisk image ID used in deployment phase (string
       
  2752 # value)
       
  2753 #deploy_ramdisk=<None>
       
  2754 
       
  2755 # Template file for injected network config (string value)
       
  2756 #net_config_template=$pybasedir/nova/virt/baremetal/net-dhcp.ubuntu.template
       
  2757 
       
  2758 # additional append parameters for baremetal PXE boot (string
       
  2759 # value)
       
  2760 #pxe_append_params=<None>
       
  2761 
       
  2762 # Template file for PXE configuration (string value)
       
  2763 #pxe_config_template=$pybasedir/nova/virt/baremetal/pxe_config.template
       
  2764 
       
  2765 # Timeout for PXE deployments. Default: 0 (unlimited) (integer
       
  2766 # value)
       
  2767 #pxe_deploy_timeout=0
       
  2768 
       
  2769 
       
  2770 #
       
  2771 # Options defined in nova.virt.baremetal.virtual_power_driver
       
  2772 #
       
  2773 
       
  2774 # ip or name to virtual power host (string value)
       
  2775 #virtual_power_ssh_host=
       
  2776 
       
  2777 # base command to use for virtual power(vbox,virsh) (string
       
  2778 # value)
       
  2779 #virtual_power_type=vbox
       
  2780 
       
  2781 # user to execute virtual power commands as (string value)
       
  2782 #virtual_power_host_user=
       
  2783 
       
  2784 # password for virtual power host_user (string value)
       
  2785 #virtual_power_host_pass=
       
  2786 
       
  2787 
       
  2788 #
       
  2789 # Options defined in nova.virt.baremetal.volume_driver
       
  2790 #
       
  2791 
       
  2792 # Do not set this out of dev/test environments. If a node does
       
  2793 # not have a fixed PXE IP address, volumes are exported with
       
  2794 # globally opened ACL (boolean value)
       
  2795 #use_unsafe_iscsi=false
       
  2796 
       
  2797 # iSCSI IQN prefix used in baremetal volume connections.
       
  2798 # (string value)
       
  2799 #iscsi_iqn_prefix=iqn.2010-10.org.openstack.baremetal
       
  2800 
       
  2801 
       
  2802 [rpc_notifier2]
       
  2803 
       
  2804 #
       
  2805 # Options defined in nova.openstack.common.notifier.rpc_notifier2
       
  2806 #
       
  2807 
       
  2808 # AMQP topic(s) used for openstack notifications (list value)
       
  2809 #topics=notifications
       
  2810 
       
  2811 
       
  2812 [trusted_computing]
       
  2813 
       
  2814 #
       
  2815 # Options defined in nova.scheduler.filters.trusted_filter
       
  2816 #
       
  2817 
       
  2818 # attestation server http (string value)
       
  2819 #attestation_server=<None>
       
  2820 
       
  2821 # attestation server Cert file for Identity verification
       
  2822 # (string value)
       
  2823 #attestation_server_ca_file=<None>
       
  2824 
       
  2825 # attestation server port (string value)
       
  2826 #attestation_port=8443
       
  2827 
       
  2828 # attestation web API URL (string value)
       
  2829 #attestation_api_url=/OpenAttestationWebServices/V1.0
       
  2830 
       
  2831 # attestation authorization blob - must change (string value)
       
  2832 #attestation_auth_blob=<None>
       
  2833 
       
  2834 # Attestation status cache valid period length (integer value)
       
  2835 #attestation_auth_timeout=60
       
  2836 
       
  2837 
       
  2838 [vmware]
       
  2839 
       
  2840 #
       
  2841 # Options defined in nova.virt.vmwareapi.vmops
       
  2842 #
       
  2843 
       
  2844 # Name of Integration Bridge (string value)
       
  2845 #integration_bridge=br-int
       
  2846 
       
  2847 
       
  2848 [spice]
       
  2849 
       
  2850 #
       
  2851 # Options defined in nova.spice
       
  2852 #
       
  2853 
       
  2854 # location of spice html5 console proxy, in the form
       
  2855 # "http://127.0.0.1:6082/spice_auto.html" (string value)
       
  2856 #html5proxy_base_url=http://127.0.0.1:6082/spice_auto.html
       
  2857 
       
  2858 # IP address on which instance spice server should listen
       
  2859 # (string value)
       
  2860 #server_listen=127.0.0.1
       
  2861 
       
  2862 # the address to which proxy clients (like nova-
       
  2863 # spicehtml5proxy) should connect (string value)
       
  2864 #server_proxyclient_address=127.0.0.1
       
  2865 
       
  2866 # enable spice related features (boolean value)
       
  2867 #enabled=false
       
  2868 
       
  2869 # enable spice guest agent support (boolean value)
       
  2870 #agent_enabled=true
       
  2871 
       
  2872 # keymap for spice (string value)
       
  2873 #keymap=en-us
       
  2874 
       
  2875 
       
  2876 #
       
  2877 # Options defined in nova.virt.solariszones.driver
       
  2878 #
       
  2879 
       
  2880 # Default path to Glance cache for Solaris Zones. (string
       
  2881 # value)
       
  2882 #glancecache_dirname=/export/glance
       
  2883 
       
  2884 # Default path to Solaris Zone root file systems. (string
       
  2885 # value)
       
  2886 #zonepath_dirname=/export/zone
       
  2887 
       
  2888 # Location where solariszones driver will store snapshots
       
  2889 # before uploading them to image service (string value)
       
  2890 #solariszones_snapshots_directory=$instances_path/snapshots
       
  2891 
       
  2892 
       
  2893 # Total option count: 587