Guest User

Untitled

a guest
Apr 21st, 2015
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 103.26 KB | None | 0 0
  1. [DEFAULT]
  2.  
  3. rpc_backend=rabbit
  4.  
  5. rabbit_host = 192.168.16.60
  6. rabbit_password = qwerty
  7.  
  8.  
  9. #
  10. # Options defined in oslo.messaging
  11. #
  12.  
  13. # Use durable queues in amqp. (boolean value)
  14. # Deprecated group;name - DEFAULT;rabbit_durable_queues
  15. #amqp_durable_queues=false
  16.  
  17. # Auto-delete queues in amqp. (boolean value)
  18. #amqp_auto_delete=false
  19.  
  20. # Size of RPC connection pool. (integer value)
  21. #rpc_conn_pool_size=30
  22.  
  23. # Qpid broker hostname. (string value)
  24. #qpid_hostname=localhost
  25.  
  26. # Qpid broker port. (integer value)
  27. #qpid_port=5672
  28.  
  29. # Qpid HA cluster host:port pairs. (list value)
  30. #qpid_hosts=$qpid_hostname:$qpid_port
  31.  
  32. # Username for Qpid connection. (string value)
  33. #qpid_username=
  34.  
  35. # Password for Qpid connection. (string value)
  36. #qpid_password=
  37.  
  38. # Space separated list of SASL mechanisms to use for auth.
  39. # (string value)
  40. #qpid_sasl_mechanisms=
  41.  
  42. # Seconds between connection keepalive heartbeats. (integer
  43. # value)
  44. #qpid_heartbeat=60
  45.  
  46. # Transport to use, either 'tcp' or 'ssl'. (string value)
  47. #qpid_protocol=tcp
  48.  
  49. # Whether to disable the Nagle algorithm. (boolean value)
  50. #qpid_tcp_nodelay=true
  51.  
  52. # The number of prefetched messages held by receiver. (integer
  53. # value)
  54. #qpid_receiver_capacity=1
  55.  
  56. # The qpid topology version to use. Version 1 is what was
  57. # originally used by impl_qpid. Version 2 includes some
  58. # backwards-incompatible changes that allow broker federation
  59. # to work. Users should update to version 2 when they are
  60. # able to take everything down, as it requires a clean break.
  61. # (integer value)
  62. #qpid_topology_version=1
  63.  
  64. # SSL version to use (valid only if SSL enabled). valid values
  65. # are TLSv1, SSLv23 and SSLv3. SSLv2 may be available on some
  66. # distributions. (string value)
  67. #kombu_ssl_version=
  68.  
  69. # SSL key file (valid only if SSL enabled). (string value)
  70. #kombu_ssl_keyfile=
  71.  
  72. # SSL cert file (valid only if SSL enabled). (string value)
  73. #kombu_ssl_certfile=
  74.  
  75. # SSL certification authority file (valid only if SSL
  76. # enabled). (string value)
  77. #kombu_ssl_ca_certs=
  78.  
  79. # How long to wait before reconnecting in response to an AMQP
  80. # consumer cancel notification. (floating point value)
  81. #kombu_reconnect_delay=1.0
  82.  
  83. # The RabbitMQ broker address where a single node is used.
  84. # (string value)
  85. #rabbit_host=localhost
  86.  
  87. # The RabbitMQ broker port where a single node is used.
  88. # (integer value)
  89. #rabbit_port=5672
  90.  
  91. # RabbitMQ HA cluster host:port pairs. (list value)
  92. #rabbit_hosts=$rabbit_host:$rabbit_port
  93.  
  94. # Connect over SSL for RabbitMQ. (boolean value)
  95. #rabbit_use_ssl=false
  96.  
  97. # The RabbitMQ userid. (string value)
  98. #rabbit_userid=guest
  99.  
  100. # The RabbitMQ password. (string value)
  101. #rabbit_password=guest
  102.  
  103. # the RabbitMQ login method (string value)
  104. #rabbit_login_method=AMQPLAIN
  105.  
  106. # The RabbitMQ virtual host. (string value)
  107. #rabbit_virtual_host=/
  108.  
  109. # How frequently to retry connecting with RabbitMQ. (integer
  110. # value)
  111. #rabbit_retry_interval=1
  112.  
  113. # How long to backoff for between retries when connecting to
  114. # RabbitMQ. (integer value)
  115. #rabbit_retry_backoff=2
  116.  
  117. # Maximum number of RabbitMQ connection retries. Default is 0
  118. # (infinite retry count). (integer value)
  119. #rabbit_max_retries=0
  120.  
  121. # Use HA queues in RabbitMQ (x-ha-policy: all). If you change
  122. # this option, you must wipe the RabbitMQ database. (boolean
  123. # value)
  124. #rabbit_ha_queues=false
  125.  
  126. # If passed, use a fake RabbitMQ provider. (boolean value)
  127. #fake_rabbit=false
  128.  
  129. # ZeroMQ bind address. Should be a wildcard (*), an ethernet
  130. # interface, or IP. The "host" option should point or resolve
  131. # to this address. (string value)
  132. #rpc_zmq_bind_address=*
  133.  
  134. # MatchMaker driver. (string value)
  135. #rpc_zmq_matchmaker=oslo.messaging._drivers.matchmaker.MatchMakerLocalhost
  136.  
  137. # ZeroMQ receiver listening port. (integer value)
  138. #rpc_zmq_port=9501
  139.  
  140. # Number of ZeroMQ contexts, defaults to 1. (integer value)
  141. #rpc_zmq_contexts=1
  142.  
  143. # Maximum number of ingress messages to locally buffer per
  144. # topic. Default is unlimited. (integer value)
  145. #rpc_zmq_topic_backlog=<None>
  146.  
  147. # Directory for holding IPC sockets. (string value)
  148. #rpc_zmq_ipc_dir=/var/run/openstack
  149.  
  150. # Name of this node. Must be a valid hostname, FQDN, or IP
  151. # address. Must match "host" option, if running Nova. (string
  152. # value)
  153. #rpc_zmq_host=nova
  154.  
  155. # Seconds to wait before a cast expires (TTL). Only supported
  156. # by impl_zmq. (integer value)
  157. #rpc_cast_timeout=30
  158.  
  159. # Heartbeat frequency. (integer value)
  160. #matchmaker_heartbeat_freq=300
  161.  
  162. # Heartbeat time-to-live. (integer value)
  163. #matchmaker_heartbeat_ttl=600
  164.  
  165. # Size of RPC greenthread pool. (integer value)
  166. #rpc_thread_pool_size=64
  167.  
  168. # Driver or drivers to handle sending notifications. (multi
  169. # valued)
  170. #notification_driver=
  171.  
  172. # AMQP topic used for OpenStack notifications. (list value)
  173. # Deprecated group;name - [rpc_notifier2]/topics
  174. #notification_topics=notifications
  175.  
  176. # Seconds to wait for a response from a call. (integer value)
  177. #rpc_response_timeout=60
  178.  
  179. # A URL representing the messaging driver to use and its full
  180. # configuration. If not set, we fall back to the rpc_backend
  181. # option and driver specific configuration. (string value)
  182. #transport_url=<None>
  183.  
  184. # The messaging driver to use, defaults to rabbit. Other
  185. # drivers include qpid and zmq. (string value)
  186. #rpc_backend=rabbit
  187.  
  188. # The default exchange under which topics are scoped. May be
  189. # overridden by an exchange name specified in the
  190. # transport_url option. (string value)
  191. #control_exchange=openstack
  192.  
  193.  
  194. #
  195. # Options defined in nova.availability_zones
  196. #
  197.  
  198. # The availability_zone to show internal services under
  199. # (string value)
  200. #internal_service_availability_zone=internal
  201.  
  202. # Default compute node availability_zone (string value)
  203. #default_availability_zone=nova
  204.  
  205.  
  206. #
  207. # Options defined in nova.crypto
  208. #
  209.  
  210. # Filename of root CA (string value)
  211. #ca_file=cacert.pem
  212.  
  213. # Filename of private key (string value)
  214. #key_file=private/cakey.pem
  215.  
  216. # Filename of root Certificate Revocation List (string value)
  217. #crl_file=crl.pem
  218.  
  219. # Where we keep our keys (string value)
  220. #keys_path=$state_path/keys
  221.  
  222. # Where we keep our root CA (string value)
  223. #ca_path=$state_path/CA
  224.  
  225. # Should we use a CA for each project? (boolean value)
  226. #use_project_ca=false
  227.  
  228. # Subject for certificate for users, %s for project, user,
  229. # timestamp (string value)
  230. #user_cert_subject=/C=US/ST=California/O=OpenStack/OU=NovaDev/CN=%.16s-%.16s-%s
  231.  
  232. # Subject for certificate for projects, %s for project,
  233. # timestamp (string value)
  234. #project_cert_subject=/C=US/ST=California/O=OpenStack/OU=NovaDev/CN=project-ca-%.16s-%s
  235.  
  236.  
  237. #
  238. # Options defined in nova.exception
  239. #
  240.  
  241. # Make exception message format errors fatal (boolean value)
  242. #fatal_exception_format_errors=false
  243.  
  244.  
  245. #
  246. # Options defined in nova.netconf
  247. #
  248.  
  249. # IP address of this host (string value)
  250. #my_ip=10.0.0.1
  251.  
  252. # Name of this node. This can be an opaque identifier. It is
  253. # not necessarily a hostname, FQDN, or IP address. However,
  254. # the node name must be valid within an AMQP key, and if using
  255. # ZeroMQ, a valid hostname, FQDN, or IP address (string value)
  256. #host=nova
  257.  
  258. # Use IPv6 (boolean value)
  259. #use_ipv6=false
  260.  
  261.  
  262. #
  263. # Options defined in nova.notifications
  264. #
  265.  
  266. # If set, send compute.instance.update notifications on
  267. # instance state changes. Valid values are None for no
  268. # notifications, "vm_state" for notifications on VM state
  269. # changes, or "vm_and_task_state" for notifications on VM and
  270. # task state changes. (string value)
  271. #notify_on_state_change=<None>
  272.  
  273. # If set, send api.fault notifications on caught exceptions in
  274. # the API service. (boolean value)
  275. #notify_api_faults=false
  276.  
  277. # Default notification level for outgoing notifications
  278. # (string value)
  279. #default_notification_level=INFO
  280.  
  281. # Default publisher_id for outgoing notifications (string
  282. # value)
  283. #default_publisher_id=<None>
  284.  
  285.  
  286. #
  287. # Options defined in nova.paths
  288. #
  289.  
  290. # Directory where the nova python module is installed (string
  291. # value)
  292. #pybasedir=/usr/lib/python/site-packages
  293.  
  294. # Directory where nova binaries are installed (string value)
  295. #bindir=/usr/local/bin
  296.  
  297. # Top-level directory for maintaining nova's state (string
  298. # value)
  299. #state_path=/var/lib/nova
  300.  
  301.  
  302. #
  303. # Options defined in nova.quota
  304. #
  305.  
  306. # Number of instances allowed per project (integer value)
  307. #quota_instances=10
  308.  
  309. # Number of instance cores allowed per project (integer value)
  310. #quota_cores=20
  311.  
  312. # Megabytes of instance RAM allowed per project (integer
  313. # value)
  314. #quota_ram=51200
  315.  
  316. # Number of floating IPs allowed per project (integer value)
  317. #quota_floating_ips=10
  318.  
  319. # Number of fixed IPs allowed per project (this should be at
  320. # least the number of instances allowed) (integer value)
  321. #quota_fixed_ips=-1
  322.  
  323. # Number of metadata items allowed per instance (integer
  324. # value)
  325. #quota_metadata_items=128
  326.  
  327. # Number of injected files allowed (integer value)
  328. #quota_injected_files=5
  329.  
  330. # Number of bytes allowed per injected file (integer value)
  331. #quota_injected_file_content_bytes=10240
  332.  
  333. # Length of injected file path (integer value)
  334. # Deprecated group;name - DEFAULT;quota_injected_file_path_bytes
  335. #quota_injected_file_path_length=255
  336.  
  337. # Number of security groups per project (integer value)
  338. #quota_security_groups=10
  339.  
  340. # Number of security rules per security group (integer value)
  341. #quota_security_group_rules=20
  342.  
  343. # Number of key pairs per user (integer value)
  344. #quota_key_pairs=100
  345.  
  346. # Number of server groups per project (integer value)
  347. #quota_server_groups=10
  348.  
  349. # Number of servers per server group (integer value)
  350. #quota_server_group_members=10
  351.  
  352. # Number of seconds until a reservation expires (integer
  353. # value)
  354. #reservation_expire=86400
  355.  
  356. # Count of reservations until usage is refreshed (integer
  357. # value)
  358. #until_refresh=0
  359.  
  360. # Number of seconds between subsequent usage refreshes
  361. # (integer value)
  362. #max_age=0
  363.  
  364. # Default driver to use for quota checks (string value)
  365. #quota_driver=nova.quota.DbQuotaDriver
  366.  
  367.  
  368. #
  369. # Options defined in nova.service
  370. #
  371.  
  372. # Seconds between nodes reporting state to datastore (integer
  373. # value)
  374. #report_interval=10
  375.  
  376. # Enable periodic tasks (boolean value)
  377. #periodic_enable=true
  378.  
  379. # Range of seconds to randomly delay when starting the
  380. # periodic task scheduler to reduce stampeding. (Disable by
  381. # setting to 0) (integer value)
  382. #periodic_fuzzy_delay=60
  383.  
  384. # A list of APIs to enable by default (list value)
  385. #enabled_apis=ec2,osapi_compute,metadata
  386.  
  387. # A list of APIs with enabled SSL (list value)
  388. #enabled_ssl_apis=
  389.  
  390. # The IP address on which the EC2 API will listen. (string
  391. # value)
  392. #ec2_listen=0.0.0.0
  393.  
  394. # The port on which the EC2 API will listen. (integer value)
  395. #ec2_listen_port=8773
  396.  
  397. # Number of workers for EC2 API service. The default will be
  398. # equal to the number of CPUs available. (integer value)
  399. #ec2_workers=<None>
  400.  
  401. # The IP address on which the OpenStack API will listen.
  402. # (string value)
  403. #osapi_compute_listen=0.0.0.0
  404.  
  405. # The port on which the OpenStack API will listen. (integer
  406. # value)
  407. #osapi_compute_listen_port=8774
  408.  
  409. # Number of workers for OpenStack API service. The default
  410. # will be the number of CPUs available. (integer value)
  411. #osapi_compute_workers=<None>
  412.  
  413. # OpenStack metadata service manager (string value)
  414. #metadata_manager=nova.api.manager.MetadataManager
  415.  
  416. # The IP address on which the metadata API will listen.
  417. # (string value)
  418. #metadata_listen=0.0.0.0
  419.  
  420. # The port on which the metadata API will listen. (integer
  421. # value)
  422. #metadata_listen_port=8775
  423.  
  424. # Number of workers for metadata service. The default will be
  425. # the number of CPUs available. (integer value)
  426. #metadata_workers=<None>
  427.  
  428. # Full class name for the Manager for compute (string value)
  429. #compute_manager=nova.compute.manager.ComputeManager
  430.  
  431. # Full class name for the Manager for console proxy (string
  432. # value)
  433. #console_manager=nova.console.manager.ConsoleProxyManager
  434.  
  435. # Manager for console auth (string value)
  436. #consoleauth_manager=nova.consoleauth.manager.ConsoleAuthManager
  437.  
  438. # Full class name for the Manager for cert (string value)
  439. #cert_manager=nova.cert.manager.CertManager
  440.  
  441. # Full class name for the Manager for network (string value)
  442. #network_manager=nova.network.manager.FlatDHCPManager
  443.  
  444. # Full class name for the Manager for scheduler (string value)
  445. #scheduler_manager=nova.scheduler.manager.SchedulerManager
  446.  
  447. # Maximum time since last check-in for up service (integer
  448. # value)
  449. #service_down_time=60
  450.  
  451.  
  452. #
  453. # Options defined in nova.test
  454. #
  455.  
  456. # File name of clean sqlite db (string value)
  457. #sqlite_clean_db=clean.sqlite
  458.  
  459.  
  460. #
  461. # Options defined in nova.utils
  462. #
  463.  
  464. # Whether to log monkey patching (boolean value)
  465. #monkey_patch=false
  466.  
  467. # List of modules/decorators to monkey patch (list value)
  468. #monkey_patch_modules=nova.api.ec2.cloud:nova.notifications.notify_decorator,nova.compute.api:nova.notifications.notify_decorator
  469.  
  470. # Length of generated instance admin passwords (integer value)
  471. #password_length=12
  472.  
  473. # Time period to generate instance usages for. Time period
  474. # must be hour, day, month or year (string value)
  475. #instance_usage_audit_period=month
  476.  
  477. # Path to the rootwrap configuration file to use for running
  478. # commands as root (string value)
  479. #rootwrap_config=/etc/nova/rootwrap.conf
  480.  
  481. # Explicitly specify the temporary working directory (string
  482. # value)
  483. #tempdir=<None>
  484.  
  485.  
  486. #
  487. # Options defined in nova.wsgi
  488. #
  489.  
  490. # File name for the paste.deploy config for nova-api (string
  491. # value)
  492. #api_paste_config=api-paste.ini
  493.  
  494. # A python format string that is used as the template to
  495. # generate log lines. The following values can be formatted
  496. # into it: client_ip, date_time, request_line, status_code,
  497. # body_length, wall_seconds. (string value)
  498. #wsgi_log_format=%(client_ip)s "%(request_line)s" status: %(status_code)s len: %(body_length)s time: %(wall_seconds).7f
  499.  
  500. # CA certificate file to use to verify connecting clients
  501. # (string value)
  502. #ssl_ca_file=<None>
  503.  
  504. # SSL certificate of API server (string value)
  505. #ssl_cert_file=<None>
  506.  
  507. # SSL private key of API server (string value)
  508. #ssl_key_file=<None>
  509.  
  510. # Sets the value of TCP_KEEPIDLE in seconds for each server
  511. # socket. Not supported on OS X. (integer value)
  512. #tcp_keepidle=600
  513.  
  514. # Size of the pool of greenthreads used by wsgi (integer
  515. # value)
  516. #wsgi_default_pool_size=1000
  517.  
  518. # Maximum line size of message headers to be accepted.
  519. # max_header_line may need to be increased when using large
  520. # tokens (typically those generated by the Keystone v3 API
  521. # with big service catalogs). (integer value)
  522. #max_header_line=16384
  523.  
  524.  
  525. #
  526. # Options defined in nova.api.auth
  527. #
  528.  
  529. # Whether to use per-user rate limiting for the api. This
  530. # option is only used by v2 api. Rate limiting is removed from
  531. # v3 api. (boolean value)
  532. #api_rate_limit=false
  533.  
  534. # The strategy to use for auth: noauth or keystone. (string
  535. # value)
  536. #auth_strategy=keystone
  537.  
  538. # Treat X-Forwarded-For as the canonical remote address. Only
  539. # enable this if you have a sanitizing proxy. (boolean value)
  540. #use_forwarded_for=false
  541.  
  542.  
  543. #
  544. # Options defined in nova.api.ec2
  545. #
  546.  
  547. # Number of failed auths before lockout. (integer value)
  548. #lockout_attempts=5
  549.  
  550. # Number of minutes to lockout if triggered. (integer value)
  551. #lockout_minutes=15
  552.  
  553. # Number of minutes for lockout window. (integer value)
  554. #lockout_window=15
  555.  
  556. # URL to get token from ec2 request. (string value)
  557. #keystone_ec2_url=http://localhost:5000/v2.0/ec2tokens
  558.  
  559. # Return the IP address as private dns hostname in describe
  560. # instances (boolean value)
  561. #ec2_private_dns_show_ip=false
  562.  
  563. # Validate security group names according to EC2 specification
  564. # (boolean value)
  565. #ec2_strict_validation=true
  566.  
  567. # Time in seconds before ec2 timestamp expires (integer value)
  568. #ec2_timestamp_expiry=300
  569.  
  570.  
  571. #
  572. # Options defined in nova.api.ec2.cloud
  573. #
  574.  
  575. # The IP address of the EC2 API server (string value)
  576. #ec2_host=$my_ip
  577.  
  578. # The internal IP address of the EC2 API server (string value)
  579. #ec2_dmz_host=$my_ip
  580.  
  581. # The port of the EC2 API server (integer value)
  582. #ec2_port=8773
  583.  
  584. # The protocol to use when connecting to the EC2 API server
  585. # (http, https) (string value)
  586. #ec2_scheme=http
  587.  
  588. # The path prefix used to call the ec2 API server (string
  589. # value)
  590. #ec2_path=/services/Cloud
  591.  
  592. # List of region=fqdn pairs separated by commas (list value)
  593. #region_list=
  594.  
  595.  
  596. #
  597. # Options defined in nova.api.metadata.base
  598. #
  599.  
  600. # List of metadata versions to skip placing into the config
  601. # drive (string value)
  602. #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
  603.  
  604. # Driver to use for vendor data (string value)
  605. #vendordata_driver=nova.api.metadata.vendordata_json.JsonFileVendorData
  606.  
  607.  
  608. #
  609. # Options defined in nova.api.metadata.vendordata_json
  610. #
  611.  
  612. # File to load JSON formatted vendor data from (string value)
  613. #vendordata_jsonfile_path=<None>
  614.  
  615.  
  616. #
  617. # Options defined in nova.api.openstack.common
  618. #
  619.  
  620. # The maximum number of items returned in a single response
  621. # from a collection resource (integer value)
  622. #osapi_max_limit=1000
  623.  
  624. # Base URL that will be presented to users in links to the
  625. # OpenStack Compute API (string value)
  626. #osapi_compute_link_prefix=<None>
  627.  
  628. # Base URL that will be presented to users in links to glance
  629. # resources (string value)
  630. #osapi_glance_link_prefix=<None>
  631.  
  632.  
  633. #
  634. # Options defined in nova.api.openstack.compute
  635. #
  636.  
  637. # Permit instance snapshot operations. (boolean value)
  638. #allow_instance_snapshots=true
  639.  
  640.  
  641. #
  642. # Options defined in nova.api.openstack.compute.contrib
  643. #
  644.  
  645. # Specify list of extensions to load when using
  646. # osapi_compute_extension option with
  647. # nova.api.openstack.compute.contrib.select_extensions (list
  648. # value)
  649. #osapi_compute_ext_list=
  650.  
  651.  
  652. #
  653. # Options defined in nova.api.openstack.compute.contrib.fping
  654. #
  655.  
  656. # Full path to fping. (string value)
  657. #fping_path=/usr/sbin/fping
  658.  
  659.  
  660. #
  661. # Options defined in nova.api.openstack.compute.contrib.os_tenant_networks
  662. #
  663.  
  664. # Enables or disables quota checking for tenant networks
  665. # (boolean value)
  666. #enable_network_quota=false
  667.  
  668. # Control for checking for default networks (string value)
  669. #use_nqwertyeutron_default_nets=False
  670.  
  671. # Default tenant id when creating neutron networks (string
  672. # value)
  673. #neutron_default_tenant_id=default
  674.  
  675.  
  676. #
  677. # Options defined in nova.api.openstack.compute.extensions
  678. #
  679.  
  680. # osapi compute extension to load (multi valued)
  681. #osapi_compute_extension=nova.api.openstack.compute.contrib.standard_extensions
  682.  
  683.  
  684. #
  685. # Options defined in nova.api.openstack.compute.plugins.v3.hide_server_addresses
  686. #
  687.  
  688. # List of instance states that should hide network info (list
  689. # value)
  690. #osapi_hide_server_address_states=building
  691.  
  692.  
  693. #
  694. # Options defined in nova.api.openstack.compute.servers
  695. #
  696.  
  697. # Enables returning of the instance password by the relevant
  698. # server API calls such as create, rebuild or rescue, If the
  699. # hypervisor does not support password injection then the
  700. # password returned will not be correct (boolean value)
  701. #enable_instance_password=true
  702.  
  703.  
  704. #
  705. # Options defined in nova.api.sizelimit
  706. #
  707.  
  708. # The maximum body size per each osapi request(bytes) (integer
  709. # value)
  710. #osapi_max_request_body_size=114688
  711.  
  712.  
  713. #
  714. # Options defined in nova.cert.rpcapi
  715. #
  716.  
  717. # The topic cert nodes listen on (string value)
  718. #cert_topic=cert
  719.  
  720.  
  721. #
  722. # Options defined in nova.cloudpipe.pipelib
  723. #
  724.  
  725. # Image ID used when starting up a cloudpipe vpn server
  726. # (string value)
  727. #vpn_image_id=0
  728.  
  729. # Flavor for vpn instances (string value)
  730. #vpn_flavor=m1.tiny
  731.  
  732. # Template for cloudpipe instance boot script (string value)
  733. #boot_script_template=$pybasedir/nova/cloudpipe/bootscript.template
  734.  
  735. # Network to push into openvpn config (string value)
  736. #dmz_net=10.0.0.0
  737.  
  738. # Netmask to push into openvpn config (string value)
  739. #dmz_mask=255.255.255.0
  740.  
  741. # Suffix to add to project name for vpn key and secgroups
  742. # (string value)
  743. #vpn_key_suffix=-vpn
  744.  
  745.  
  746. #
  747. # Options defined in nova.cmd.novnc
  748. #
  749.  
  750. # Record sessions to FILE.[session_number] (boolean value)
  751. #record=false
  752.  
  753. # Become a daemon (background process) (boolean value)
  754. #daemon=false
  755.  
  756. # Disallow non-encrypted connections (boolean value)
  757. #ssl_only=false
  758.  
  759. # Source is ipv6 (boolean value)
  760. #source_is_ipv6=false
  761.  
  762. # SSL certificate file (string value)
  763. #cert=self.pem
  764.  
  765. # SSL key file (if separate from cert) (string value)
  766. #key=<None>
  767.  
  768. # Run webserver on same port. Serve files from DIR. (string
  769. # value)
  770. #web=/usr/share/spice-html5
  771.  
  772.  
  773. #
  774. # Options defined in nova.cmd.novncproxy
  775. #
  776.  
  777. # Host on which to listen for incoming requests (string value)
  778. #novncproxy_host=0.0.0.0
  779.  
  780. # Port on which to listen for incoming requests (integer
  781. # value)
  782. #novncproxy_port=6080
  783.  
  784.  
  785. #
  786. # Options defined in nova.compute.api
  787. #
  788.  
  789. # Allow destination machine to match source for resize. Useful
  790. # when testing in single-host environments. (boolean value)
  791. #allow_resize_to_same_host=false
  792.  
  793. # Allow migrate machine to the same host. Useful when testing
  794. # in single-host environments. (boolean value)
  795. #allow_migrate_to_same_host=false
  796.  
  797. # Availability zone to use when user doesn't specify one
  798. # (string value)
  799. #default_schedule_zone=<None>
  800.  
  801. # These are image properties which a snapshot should not
  802. # inherit from an instance (list value)
  803. #non_inheritable_image_properties=cache_in_nova,bittorrent
  804.  
  805. # Kernel image that indicates not to use a kernel, but to use
  806. # a raw disk image instead (string value)
  807. #null_kernel=nokernel
  808.  
  809. # When creating multiple instances with a single request using
  810. # the os-multiple-create API extension, this template will be
  811. # used to build the display name for each instance. The
  812. # benefit is that the instances end up with different
  813. # hostnames. To restore legacy behavior of every instance
  814. # having the same name, set this option to "%(name)s". Valid
  815. # keys for the template are: name, uuid, count. (string value)
  816. #multi_instance_display_name_template=%(name)s-%(uuid)s
  817.  
  818. # Maximum number of devices that will result in a local image
  819. # being created on the hypervisor node. Setting this to 0
  820. # means nova will allow only boot from volume. A negative
  821. # number means unlimited. (integer value)
  822. #max_local_block_devices=3
  823.  
  824.  
  825. #
  826. # Options defined in nova.compute.flavors
  827. #
  828.  
  829. # Default flavor to use for the EC2 API only. The Nova API
  830. # does not support a default flavor. (string value)
  831. #default_flavor=m1.small
  832.  
  833.  
  834. #
  835. # Options defined in nova.compute.manager
  836. #
  837.  
  838. # Console proxy host to use to connect to instances on this
  839. # host. (string value)
  840. #console_host=nova
  841.  
  842. # Name of network to use to set access IPs for instances
  843. # (string value)
  844. #default_access_ip_network_name=<None>
  845.  
  846. # Whether to batch up the application of IPTables rules during
  847. # a host restart and apply all at the end of the init phase
  848. # (boolean value)
  849. #defer_iptables_apply=false
  850.  
  851. # Where instances are stored on disk (string value)
  852. #instances_path=$state_path/instances
  853.  
  854. # Generate periodic compute.instance.exists notifications
  855. # (boolean value)
  856. #instance_usage_audit=false
  857.  
  858. # Number of 1 second retries needed in live_migration (integer
  859. # value)
  860. #live_migration_retry_count=30
  861.  
  862. # Whether to start guests that were running before the host
  863. # rebooted (boolean value)
  864. #resume_guests_state_on_host_boot=false
  865.  
  866. # Number of times to retry network allocation on failures
  867. # (integer value)
  868. #network_allocate_retries=0
  869.  
  870. # Number of times to retry block device allocation on failures
  871. # (integer value)
  872. #block_device_allocate_retries=60
  873.  
  874. # The number of times to attempt to reap an instance's files.
  875. # (integer value)
  876. #maximum_instance_delete_attempts=5
  877.  
  878. # Interval to pull network bandwidth usage info. Not supported
  879. # on all hypervisors. Set to -1 to disable. Setting this to 0
  880. # will disable, but this will change in the K release to mean
  881. # "run at the default rate". (integer value)
  882. #bandwidth_poll_interval=600
  883.  
  884. # Interval to sync power states between the database and the
  885. # hypervisor. Set to -1 to disable. Setting this to 0 will
  886. # disable, but this will change in Juno to mean "run at the
  887. # default rate". (integer value)
  888. #sync_power_state_interval=600
  889.  
  890. # Number of seconds between instance info_cache self healing
  891. # updates (integer value)
  892. #heal_instance_info_cache_interval=60
  893.  
  894. # Interval in seconds for reclaiming deleted instances
  895. # (integer value)
  896. #reclaim_instance_interval=0
  897.  
  898. # Interval in seconds for gathering volume usages (integer
  899. # value)
  900. #volume_usage_poll_interval=0
  901.  
  902. # Interval in seconds for polling shelved instances to
  903. # offload. Set to -1 to disable.Setting this to 0 will
  904. # disable, but this will change in Juno to mean "run at the
  905. # default rate". (integer value)
  906. #shelved_poll_interval=3600
  907.  
  908. # Time in seconds before a shelved instance is eligible for
  909. # removing from a host. -1 never offload, 0 offload when
  910. # shelved (integer value)
  911. #shelved_offload_time=0
  912.  
  913. # Interval in seconds for retrying failed instance file
  914. # deletes (integer value)
  915. #instance_delete_interval=300
  916.  
  917. # Waiting time interval (seconds) between block device
  918. # allocation retries on failures (integer value)
  919. #block_device_allocate_retries_interval=3
  920.  
  921. # Action to take if a running deleted instance is
  922. # detected.Valid options are 'noop', 'log', 'shutdown', or
  923. # 'reap'. Set to 'noop' to take no action. (string value)
  924. #running_deleted_instance_action=reap
  925.  
  926. # Number of seconds to wait between runs of the cleanup task.
  927. # (integer value)
  928. #running_deleted_instance_poll_interval=1800
  929.  
  930. # Number of seconds after being deleted when a running
  931. # instance should be considered eligible for cleanup. (integer
  932. # value)
  933. #running_deleted_instance_timeout=0
  934.  
  935. # Automatically hard reboot an instance if it has been stuck
  936. # in a rebooting state longer than N seconds. Set to 0 to
  937. # disable. (integer value)
  938. #reboot_timeout=0
  939.  
  940. # Amount of time in seconds an instance can be in BUILD before
  941. # going into ERROR status.Set to 0 to disable. (integer value)
  942. #instance_build_timeout=0
  943.  
  944. # Automatically unrescue an instance after N seconds. Set to 0
  945. # to disable. (integer value)
  946. #rescue_timeout=0
  947.  
  948. # Automatically confirm resizes after N seconds. Set to 0 to
  949. # disable. (integer value)
  950. #resize_confirm_window=0
  951.  
  952. # Total amount of time to wait in seconds for an instance to
  953. # perform a clean shutdown. (integer value)
  954. #shutdown_timeout=60
  955.  
  956.  
  957. #
  958. # Options defined in nova.compute.monitors
  959. #
  960.  
  961. # Monitor classes available to the compute which may be
  962. # specified more than once. (multi valued)
  963. #compute_available_monitors=nova.compute.monitors.all_monitors
  964.  
  965. # A list of monitors that can be used for getting compute
  966. # metrics. (list value)
  967. #compute_monitors=
  968.  
  969.  
  970. #
  971. # Options defined in nova.compute.resource_tracker
  972. #
  973.  
  974. # Amount of disk in MB to reserve for the host (integer value)
  975. #reserved_host_disk_mb=0
  976.  
  977. # Amount of memory in MB to reserve for the host (integer
  978. # value)
  979. #reserved_host_memory_mb=512
  980.  
  981. # Class that will manage stats for the local compute host
  982. # (string value)
  983. #compute_stats_class=nova.compute.stats.Stats
  984.  
  985. # The names of the extra resources to track. (list value)
  986. #compute_resources=vcpu
  987.  
  988.  
  989. #
  990. # Options defined in nova.compute.rpcapi
  991. #
  992.  
  993. # The topic compute nodes listen on (string value)
  994. #compute_topic=compute
  995.  
  996.  
  997. #
  998. # Options defined in nova.conductor.tasks.live_migrate
  999. #
  1000.  
  1001. # Number of times to retry live-migration before failing. If
  1002. # == -1, try until out of hosts. If == 0, only try once, no
  1003. # retries. (integer value)
  1004. #migrate_max_retries=-1
  1005.  
  1006.  
  1007. #
  1008. # Options defined in nova.console.manager
  1009. #
  1010.  
  1011. # Driver to use for the console proxy (string value)
  1012. #console_driver=nova.console.xvp.XVPConsoleProxy
  1013.  
  1014. # Stub calls to compute worker for tests (boolean value)
  1015. #stub_compute=false
  1016.  
  1017. # Publicly visible name for this console host (string value)
  1018. #console_public_hostname=nova
  1019.  
  1020.  
  1021. #
  1022. # Options defined in nova.console.rpcapi
  1023. #
  1024.  
  1025. # The topic console proxy nodes listen on (string value)
  1026. #console_topic=console
  1027.  
  1028.  
  1029. #
  1030. # Options defined in nova.console.vmrc
  1031. #
  1032.  
  1033. # DEPRECATED. Port for VMware VMRC connections (integer value)
  1034. #console_vmrc_port=443
  1035.  
  1036. # DEPRECATED. Number of retries for retrieving VMRC
  1037. # information (integer value)
  1038. #console_vmrc_error_retries=10
  1039.  
  1040.  
  1041. #
  1042. # Options defined in nova.console.xvp
  1043. #
  1044.  
  1045. # XVP conf template (string value)
  1046. #console_xvp_conf_template=$pybasedir/nova/console/xvp.conf.template
  1047.  
  1048. # Generated XVP conf file (string value)
  1049. #console_xvp_conf=/etc/xvp.conf
  1050.  
  1051. # XVP master process pid file (string value)
  1052. #console_xvp_pid=/var/run/xvp.pid
  1053.  
  1054. # XVP log file (string value)
  1055. #console_xvp_log=/var/log/xvp.log
  1056.  
  1057. # Port for XVP to multiplex VNC connections on (integer value)
  1058. #console_xvp_multiplex_port=5900
  1059.  
  1060.  
  1061. #
  1062. # Options defined in nova.consoleauth
  1063. #
  1064.  
  1065. # The topic console auth proxy nodes listen on (string value)
  1066. #consoleauth_topic=consoleauth
  1067.  
  1068.  
  1069. #
  1070. # Options defined in nova.consoleauth.manager
  1071. #
  1072.  
  1073. # How many seconds before deleting tokens (integer value)
  1074. #console_token_ttl=600
  1075.  
  1076.  
  1077. #
  1078. # Options defined in nova.db.api
  1079. #
  1080.  
  1081. # Services to be added to the available pool on create
  1082. # (boolean value)
  1083. #enable_new_services=true
  1084.  
  1085. # Template string to be used to generate instance names
  1086. # (string value)
  1087. #instance_name_template=instance-%08x
  1088.  
  1089. # Template string to be used to generate snapshot names
  1090. # (string value)
  1091. #snapshot_name_template=snapshot-%s
  1092.  
  1093.  
  1094. #
  1095. # Options defined in nova.db.base
  1096. #
  1097.  
  1098. # The driver to use for database access (string value)
  1099. #db_driver=nova.db
  1100.  
  1101.  
  1102. #
  1103. # Options defined in nova.db.sqlalchemy.api
  1104. #
  1105.  
  1106. # When set, compute API will consider duplicate hostnames
  1107. # invalid within the specified scope, regardless of case.
  1108. # Should be empty, "project" or "global". (string value)
  1109. #osapi_compute_unique_server_name_scope=
  1110.  
  1111.  
  1112. #
  1113. # Options defined in nova.image.s3
  1114. #
  1115.  
  1116. # Parent directory for tempdir used for image decryption
  1117. # (string value)
  1118. #image_decryption_dir=/tmp
  1119.  
  1120. # Hostname or IP for OpenStack to use when accessing the S3
  1121. # api (string value)
  1122. #s3_host=$my_ip
  1123.  
  1124. # Port used when accessing the S3 api (integer value)
  1125. #s3_port=3333
  1126.  
  1127. # Access key to use for S3 server for images (string value)
  1128. #s3_access_key=notchecked
  1129.  
  1130. # Secret key to use for S3 server for images (string value)
  1131. #s3_secret_key=notchecked
  1132.  
  1133. # Whether to use SSL when talking to S3 (boolean value)
  1134. #s3_use_ssl=false
  1135.  
  1136. # Whether to affix the tenant id to the access key when
  1137. # downloading from S3 (boolean value)
  1138. #s3_affix_tenant=false
  1139.  
  1140.  
  1141. #
  1142. # Options defined in nova.ipv6.api
  1143. #
  1144.  
  1145. # Backend to use for IPv6 generation (string value)
  1146. #ipv6_backend=rfc2462
  1147.  
  1148.  
  1149. #
  1150. # Options defined in nova.network
  1151. #
  1152.  
  1153. # The full class name of the network API class to use (string
  1154. # value)
  1155. #network_api_class=nova.network.api.API
  1156.  
  1157. network_api_class = nova.network.neutronv2.api.API
  1158. security_group_api = neutron
  1159. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  1160. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  1161.  
  1162.  
  1163. #
  1164. # Options defined in nova.network.driver
  1165. #
  1166.  
  1167. # Driver to use for network creation (string value)
  1168. #network_driver=nova.network.linux_net
  1169.  
  1170.  
  1171. #
  1172. # Options defined in nova.network.floating_ips
  1173. #
  1174.  
  1175. # Default pool for floating IPs (string value)
  1176. #default_floating_pool=nova
  1177.  
  1178. # Autoassigning floating IP to VM (boolean value)
  1179. #auto_assign_floating_ip=false
  1180.  
  1181. # Full class name for the DNS Manager for floating IPs (string
  1182. # value)
  1183. #floating_ip_dns_manager=nova.network.noop_dns_driver.NoopDNSDriver
  1184.  
  1185. # Full class name for the DNS Manager for instance IPs (string
  1186. # value)
  1187. #instance_dns_manager=nova.network.noop_dns_driver.NoopDNSDriver
  1188.  
  1189. # Full class name for the DNS Zone for instance IPs (string
  1190. # value)
  1191. #instance_dns_domain=
  1192.  
  1193.  
  1194. #
  1195. # Options defined in nova.network.ldapdns
  1196. #
  1197.  
  1198. # URL for LDAP server which will store DNS entries (string
  1199. # value)
  1200. #ldap_dns_url=ldap://ldap.example.com:389
  1201.  
  1202. # User for LDAP DNS (string value)
  1203. #ldap_dns_user=uid=admin,ou=people,dc=example,dc=org
  1204.  
  1205. # Password for LDAP DNS (string value)
  1206. #ldap_dns_password=password
  1207.  
  1208. # Hostmaster for LDAP DNS driver Statement of Authority
  1209. # (string value)
  1210.  
  1211. # DNS Servers for LDAP DNS driver (multi valued)
  1212. #ldap_dns_servers=dns.example.org
  1213.  
  1214. # Base DN for DNS entries in LDAP (string value)
  1215. #ldap_dns_base_dn=ou=hosts,dc=example,dc=org
  1216.  
  1217. # Refresh interval (in seconds) for LDAP DNS driver Statement
  1218. # of Authority (string value)
  1219. #ldap_dns_soa_refresh=1800
  1220.  
  1221. # Retry interval (in seconds) for LDAP DNS driver Statement of
  1222. # Authority (string value)
  1223. #ldap_dns_soa_retry=3600
  1224.  
  1225. # Expiry interval (in seconds) for LDAP DNS driver Statement
  1226. # of Authority (string value)
  1227. #ldap_dns_soa_expiry=86400
  1228.  
  1229. # Minimum interval (in seconds) for LDAP DNS driver Statement
  1230. # of Authority (string value)
  1231. #ldap_dns_soa_minimum=7200
  1232.  
  1233.  
  1234. #
  1235. # Options defined in nova.network.linux_net
  1236. #
  1237.  
  1238. # Location of flagfiles for dhcpbridge (multi valued)
  1239. #dhcpbridge_flagfile=/etc/nova/nova.conf
  1240.  
  1241. # Location to keep network config files (string value)
  1242. #networks_path=$state_path/networks
  1243.  
  1244. # Interface for public IP addresses (string value)
  1245. #public_interface=eth0
  1246.  
  1247. # Location of nova-dhcpbridge (string value)
  1248. #dhcpbridge=/usr/bin/nova-dhcpbridge
  1249.  
  1250. # Public IP of network host (string value)
  1251. #routing_source_ip=$my_ip
  1252.  
  1253. # Lifetime of a DHCP lease in seconds (integer value)
  1254. #dhcp_lease_time=86400
  1255.  
  1256. # If set, uses specific DNS server for dnsmasq. Can be
  1257. # specified multiple times. (multi valued)
  1258. #dns_server=
  1259.  
  1260. # If set, uses the dns1 and dns2 from the network ref. as dns
  1261. # servers. (boolean value)
  1262. #use_network_dns_servers=false
  1263.  
  1264. # A list of dmz range that should be accepted (list value)
  1265. #dmz_cidr=
  1266.  
  1267. # Traffic to this range will always be snatted to the fallback
  1268. # ip, even if it would normally be bridged out of the node.
  1269. # Can be specified multiple times. (multi valued)
  1270. #force_snat_range=
  1271.  
  1272. # Override the default dnsmasq settings with this file (string
  1273. # value)
  1274. #dnsmasq_config_file=
  1275.  
  1276. # Driver used to create ethernet devices. (string value)
  1277. #linuxnet_interface_driver=nova.network.linux_net.LinuxBridgeInterfaceDriver
  1278.  
  1279. # Name of Open vSwitch bridge used with linuxnet (string
  1280. # value)
  1281. #linuxnet_ovs_integration_bridge=br-int
  1282.  
  1283. # Send gratuitous ARPs for HA setup (boolean value)
  1284. #send_arp_for_ha=false
  1285.  
  1286. # Send this many gratuitous ARPs for HA setup (integer value)
  1287. #send_arp_for_ha_count=3
  1288.  
  1289. # Use single default gateway. Only first nic of vm will get
  1290. # default gateway from dhcp server (boolean value)
  1291. #use_single_default_gateway=false
  1292.  
  1293. # An interface that bridges can forward to. If this is set to
  1294. # all then all traffic will be forwarded. Can be specified
  1295. # multiple times. (multi valued)
  1296. #forward_bridge_interface=all
  1297.  
  1298. # The IP address for the metadata API server (string value)
  1299. #metadata_host=$my_ip
  1300.  
  1301. # The port for the metadata API port (integer value)
  1302. #metadata_port=8775
  1303.  
  1304. # Regular expression to match iptables rule that should always
  1305. # be on the top. (string value)
  1306. #iptables_top_regex=
  1307.  
  1308. # Regular expression to match iptables rule that should always
  1309. # be on the bottom. (string value)
  1310. #iptables_bottom_regex=
  1311.  
  1312. # The table that iptables to jump to when a packet is to be
  1313. # dropped. (string value)
  1314. #iptables_drop_action=DROP
  1315.  
  1316. # Amount of time, in seconds, that ovs_vsctl should wait for a
  1317. # response from the database. 0 is to wait forever. (integer
  1318. # value)
  1319. #ovs_vsctl_timeout=120
  1320.  
  1321. # If passed, use fake network devices and addresses (boolean
  1322. # value)
  1323. #fake_network=false
  1324.  
  1325.  
  1326. #
  1327. # Options defined in nova.network.manager
  1328. #
  1329.  
  1330. # Bridge for simple network instances (string value)
  1331. #flat_network_bridge=<None>
  1332.  
  1333. # DNS server for simple network (string value)
  1334. #flat_network_dns=8.8.4.4
  1335.  
  1336. # Whether to attempt to inject network setup into guest
  1337. # (boolean value)
  1338. #flat_injected=false
  1339.  
  1340. # FlatDhcp will bridge into this interface if set (string
  1341. # value)
  1342. #flat_interface=<None>
  1343.  
  1344. # First VLAN for private networks (integer value)
  1345. #vlan_start=100
  1346.  
  1347. # VLANs will bridge into this interface if set (string value)
  1348. #vlan_interface=<None>
  1349.  
  1350. # Number of networks to support (integer value)
  1351. #num_networks=1
  1352.  
  1353. # Public IP for the cloudpipe VPN servers (string value)
  1354. #vpn_ip=$my_ip
  1355.  
  1356. # First Vpn port for private networks (integer value)
  1357. #vpn_start=1000
  1358.  
  1359. # Number of addresses in each private subnet (integer value)
  1360. #network_size=256
  1361.  
  1362. # Fixed IPv6 address block (string value)
  1363. #fixed_range_v6=fd00::/48
  1364.  
  1365. # Default IPv4 gateway (string value)
  1366. #gateway=<None>
  1367.  
  1368. # Default IPv6 gateway (string value)
  1369. #gateway_v6=<None>
  1370.  
  1371. # Number of addresses reserved for vpn clients (integer value)
  1372. #cnt_vpn_clients=0
  1373.  
  1374. # Seconds after which a deallocated IP is disassociated
  1375. # (integer value)
  1376. #fixed_ip_disassociate_timeout=600
  1377.  
  1378. # Number of attempts to create unique mac address (integer
  1379. # value)
  1380. #create_unique_mac_address_attempts=5
  1381.  
  1382. # If True, skip using the queue and make local calls (boolean
  1383. # value)
  1384. #fake_call=false
  1385.  
  1386. # If True, unused gateway devices (VLAN and bridge) are
  1387. # deleted in VLAN network mode with multi hosted networks
  1388. # (boolean value)
  1389. #teardown_unused_network_gateway=false
  1390.  
  1391. # If True, send a dhcp release on instance termination
  1392. # (boolean value)
  1393. #force_dhcp_release=True
  1394.  
  1395. # If True, when a DNS entry must be updated, it sends a fanout
  1396. # cast to all network hosts to update their DNS entries in
  1397. # multi host mode (boolean value)
  1398. #update_dns_entries=false
  1399.  
  1400. # Number of seconds to wait between runs of updates to DNS
  1401. # entries. (integer value)
  1402. #dns_update_periodic_interval=-1
  1403.  
  1404. # Domain to use for building the hostnames (string value)
  1405. #dhcp_domain=novalocal
  1406.  
  1407. # Indicates underlying L3 management library (string value)
  1408. #l3_lib=nova.network.l3.LinuxNetL3
  1409.  
  1410.  
  1411. #
  1412. # Options defined in nova.network.rpcapi
  1413. #
  1414.  
  1415. # The topic network nodes listen on (string value)
  1416. #network_topic=network
  1417.  
  1418. # Default value for multi_host in networks. Also, if set, some
  1419. # rpc network calls will be sent directly to host. (boolean
  1420. # value)
  1421. #multi_host=false
  1422.  
  1423.  
  1424. #
  1425. # Options defined in nova.network.security_group.openstack_driver
  1426. #
  1427.  
  1428. # The full class name of the security API class (string value)
  1429. #security_group_api=nova
  1430.  
  1431.  
  1432. #
  1433. # Options defined in nova.objects.network
  1434. #
  1435.  
  1436. # DEPRECATED: THIS VALUE SHOULD BE SET WHEN CREATING THE
  1437. # NETWORK. If True in multi_host mode, all compute hosts share
  1438. # the same dhcp address. The same IP address used for DHCP
  1439. # will be added on each nova-network node which is only
  1440. # visible to the vms on the same host. (boolean value)
  1441. #share_dhcp_address=false
  1442.  
  1443. # DEPRECATED: THIS VALUE SHOULD BE SET WHEN CREATING THE
  1444. # NETWORK. MTU setting for network interface. (integer value)
  1445. #network_device_mtu=<None>
  1446.  
  1447.  
  1448. #
  1449. # Options defined in nova.objectstore.s3server
  1450. #
  1451.  
  1452. # Path to S3 buckets (string value)
  1453. #buckets_path=$state_path/buckets
  1454.  
  1455. # IP address for S3 API to listen (string value)
  1456. #s3_listen=0.0.0.0
  1457.  
  1458. # Port for S3 API to listen (integer value)
  1459. #s3_listen_port=3333
  1460.  
  1461.  
  1462. #
  1463. # Options defined in nova.openstack.common.eventlet_backdoor
  1464. #
  1465.  
  1466. # Enable eventlet backdoor. Acceptable values are 0, <port>,
  1467. # and <start>:<end>, where 0 results in listening on a random
  1468. # tcp port number; <port> results in listening on the
  1469. # specified port number (and not enabling backdoor if that
  1470. # port is in use); and <start>:<end> results in listening on
  1471. # the smallest unused port number within the specified range
  1472. # of port numbers. The chosen port is displayed in the
  1473. # service's log file. (string value)
  1474. #backdoor_port=<None>
  1475.  
  1476.  
  1477. #
  1478. # Options defined in nova.openstack.common.lockutils
  1479. #
  1480.  
  1481. # Enables or disables inter-process locks. (boolean value)
  1482. #disable_process_locking=false
  1483.  
  1484. # Directory to use for lock files. (string value)
  1485. #lock_path=/var/lib/nova/tmp
  1486.  
  1487.  
  1488. #
  1489. # Options defined in nova.openstack.common.log
  1490. #
  1491.  
  1492. # Print debugging output (set logging level to DEBUG instead
  1493. # of default WARNING level). (boolean value)
  1494. #debug=false
  1495.  
  1496. # Print more verbose output (set logging level to INFO instead
  1497. # of default WARNING level). (boolean value)
  1498. #verbose=false
  1499.  
  1500. # Log output to standard error. (boolean value)
  1501. #use_stderr=False
  1502.  
  1503. # Format string to use for log messages with context. (string
  1504. # value)
  1505. #logging_context_format_string=%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  1506.  
  1507. # Format string to use for log messages without context.
  1508. # (string value)
  1509. #logging_default_format_string=%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  1510.  
  1511. # Data to append to log format when level is DEBUG. (string
  1512. # value)
  1513. #logging_debug_format_suffix=%(funcName)s %(pathname)s:%(lineno)d
  1514.  
  1515. # Prefix each line of exception output with this format.
  1516. # (string value)
  1517. #logging_exception_prefix=%(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s
  1518.  
  1519. # List of logger=LEVEL pairs. (list value)
  1520. #default_log_levels=amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN
  1521.  
  1522. # Enables or disables publication of error events. (boolean
  1523. # value)
  1524. #publish_errors=false
  1525.  
  1526. # Enables or disables fatal status of deprecations. (boolean
  1527. # value)
  1528. #fatal_deprecations=false
  1529.  
  1530. # The format for an instance that is passed with the log
  1531. # message. (string value)
  1532. #instance_format="[instance: %(uuid)s] "
  1533.  
  1534. # The format for an instance UUID that is passed with the log
  1535. # message. (string value)
  1536. #instance_uuid_format="[instance: %(uuid)s] "
  1537.  
  1538. # The name of a logging configuration file. This file is
  1539. # appended to any existing logging configuration files. For
  1540. # details about logging configuration files, see the Python
  1541. # logging module documentation. (string value)
  1542. # Deprecated group;name - DEFAULT;log_config
  1543. #log_config_append=<None>
  1544.  
  1545. # DEPRECATED. A logging.Formatter log message format string
  1546. # which may use any of the available logging.LogRecord
  1547. # attributes. This option is deprecated. Please use
  1548. # logging_context_format_string and
  1549. # logging_default_format_string instead. (string value)
  1550. #log_format=<None>
  1551.  
  1552. # Format string for %%(asctime)s in log records. Default:
  1553. # %(default)s . (string value)
  1554. #log_date_format=%Y-%m-%d %H:%M:%S
  1555.  
  1556. # (Optional) Name of log file to output to. If no default is
  1557. # set, logging will go to stdout. (string value)
  1558. # Deprecated group;name - DEFAULT;logfile
  1559. #log_file=<None>
  1560.  
  1561. # (Optional) The base directory used for relative --log-file
  1562. # paths. (string value)
  1563. # Deprecated group;name - DEFAULT;logdir
  1564. #log_dir=/var/log/nova
  1565.  
  1566. # Use syslog for logging. Existing syslog format is DEPRECATED
  1567. # during I, and will change in J to honor RFC5424. (boolean
  1568. # value)
  1569. #use_syslog=false
  1570.  
  1571. # (Optional) Enables or disables syslog rfc5424 format for
  1572. # logging. If enabled, prefixes the MSG part of the syslog
  1573. # message with APP-NAME (RFC5424). The format without the APP-
  1574. # NAME is deprecated in I, and will be removed in J. (boolean
  1575. # value)
  1576. #use_syslog_rfc_format=false
  1577.  
  1578. # Syslog facility to receive log lines. (string value)
  1579. #syslog_log_facility=LOG_USER
  1580.  
  1581.  
  1582. #
  1583. # Options defined in nova.openstack.common.memorycache
  1584. #
  1585.  
  1586. # Memcached servers or None for in process cache. (list value)
  1587. #memcached_servers=<None>
  1588.  
  1589.  
  1590. #
  1591. # Options defined in nova.openstack.common.periodic_task
  1592. #
  1593.  
  1594. # Some periodic tasks can be run in a separate process. Should
  1595. # we run them here? (boolean value)
  1596. #run_external_periodic_tasks=true
  1597.  
  1598.  
  1599. #
  1600. # Options defined in nova.openstack.common.policy
  1601. #
  1602.  
  1603. # The JSON file that defines policies. (string value)
  1604. #policy_file=policy.json
  1605.  
  1606. # Default rule. Enforced when a requested rule is not found.
  1607. # (string value)
  1608. #policy_default_rule=default
  1609.  
  1610.  
  1611. #
  1612. # Options defined in nova.pci.pci_request
  1613. #
  1614.  
  1615. # An alias for a PCI passthrough device requirement. This
  1616. # allows users to specify the alias in the extra_spec for a
  1617. # flavor, without needing to repeat all the PCI property
  1618. # requirements. For example: pci_alias = { "name":
  1619. # "QuicAssist", "product_id": "0443", "vendor_id": "8086",
  1620. # "device_type": "ACCEL" } defines an alias for the Intel
  1621. # QuickAssist card. (multi valued) (multi valued)
  1622. #pci_alias=
  1623.  
  1624.  
  1625. #
  1626. # Options defined in nova.pci.pci_whitelist
  1627. #
  1628.  
  1629. # White list of PCI devices available to VMs. For example:
  1630. # pci_passthrough_whitelist = [{"vendor_id": "8086",
  1631. # "product_id": "0443"}] (multi valued)
  1632. #pci_passthrough_whitelist=
  1633.  
  1634.  
  1635. #
  1636. # Options defined in nova.scheduler.driver
  1637. #
  1638.  
  1639. # The scheduler host manager class to use (string value)
  1640. #scheduler_host_manager=nova.scheduler.host_manager.HostManager
  1641.  
  1642.  
  1643. #
  1644. # Options defined in nova.scheduler.filter_scheduler
  1645. #
  1646.  
  1647. # New instances will be scheduled on a host chosen randomly
  1648. # from a subset of the N best hosts. This property defines the
  1649. # subset size that a host is chosen from. A value of 1 chooses
  1650. # the first host returned by the weighing functions. This
  1651. # value must be at least 1. Any value less than 1 will be
  1652. # ignored, and 1 will be used instead (integer value)
  1653. #scheduler_host_subset_size=1
  1654.  
  1655.  
  1656. #
  1657. # Options defined in nova.scheduler.filters.aggregate_image_properties_isolation
  1658. #
  1659.  
  1660. # Force the filter to consider only keys matching the given
  1661. # namespace. (string value)
  1662. #aggregate_image_properties_isolation_namespace=<None>
  1663.  
  1664. # The separator used between the namespace and keys (string
  1665. # value)
  1666. #aggregate_image_properties_isolation_separator=.
  1667.  
  1668.  
  1669. #
  1670. # Options defined in nova.scheduler.filters.core_filter
  1671. #
  1672.  
  1673. # Virtual CPU to physical CPU allocation ratio which affects
  1674. # all CPU filters. This configuration specifies a global ratio
  1675. # for CoreFilter. For AggregateCoreFilter, it will fall back
  1676. # to this configuration value if no per-aggregate setting
  1677. # found. (floating point value)
  1678. #cpu_allocation_ratio=16.0
  1679.  
  1680.  
  1681. #
  1682. # Options defined in nova.scheduler.filters.disk_filter
  1683. #
  1684.  
  1685. # Virtual disk to physical disk allocation ratio (floating
  1686. # point value)
  1687. #disk_allocation_ratio=1.0
  1688.  
  1689.  
  1690. #
  1691. # Options defined in nova.scheduler.filters.io_ops_filter
  1692. #
  1693.  
  1694. # Tells filters to ignore hosts that have this many or more
  1695. # instances currently in build, resize, snapshot, migrate,
  1696. # rescue or unshelve task states (integer value)
  1697. #max_io_ops_per_host=8
  1698.  
  1699.  
  1700. #
  1701. # Options defined in nova.scheduler.filters.isolated_hosts_filter
  1702. #
  1703.  
  1704. # Images to run on isolated host (list value)
  1705. #isolated_images=
  1706.  
  1707. # Host reserved for specific images (list value)
  1708. #isolated_hosts=
  1709.  
  1710. # Whether to force isolated hosts to run only isolated images
  1711. # (boolean value)
  1712. #restrict_isolated_hosts_to_isolated_images=true
  1713.  
  1714.  
  1715. #
  1716. # Options defined in nova.scheduler.filters.num_instances_filter
  1717. #
  1718.  
  1719. # Ignore hosts that have too many instances (integer value)
  1720. #max_instances_per_host=50
  1721.  
  1722.  
  1723. #
  1724. # Options defined in nova.scheduler.filters.ram_filter
  1725. #
  1726.  
  1727. # Virtual ram to physical ram allocation ratio which affects
  1728. # all ram filters. This configuration specifies a global ratio
  1729. # for RamFilter. For AggregateRamFilter, it will fall back to
  1730. # this configuration value if no per-aggregate setting found.
  1731. # (floating point value)
  1732. #ram_allocation_ratio=1.5
  1733.  
  1734.  
  1735. #
  1736. # Options defined in nova.scheduler.host_manager
  1737. #
  1738.  
  1739. # Filter classes available to the scheduler which may be
  1740. # specified more than once. An entry of
  1741. # "nova.scheduler.filters.standard_filters" maps to all
  1742. # filters included with nova. (multi valued)
  1743. #scheduler_available_filters=nova.scheduler.filters.all_filters
  1744.  
  1745. # Which filter class names to use for filtering hosts when not
  1746. # specified in the request. (list value)
  1747. #scheduler_default_filters=RetryFilter,AvailabilityZoneFilter,RamFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter
  1748.  
  1749. # Which weight class names to use for weighing hosts (list
  1750. # value)
  1751. #scheduler_weight_classes=nova.scheduler.weights.all_weighers
  1752.  
  1753.  
  1754. #
  1755. # Options defined in nova.scheduler.ironic_host_manager
  1756. #
  1757.  
  1758. # Which filter class names to use for filtering baremetal
  1759. # hosts when not specified in the request. (list value)
  1760. #baremetal_scheduler_default_filters=RetryFilter,AvailabilityZoneFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ExactRamFilter,ExactDiskFilter,ExactCoreFilter
  1761.  
  1762. # Flag to decide whether to use
  1763. # baremetal_scheduler_default_filters or not. (boolean value)
  1764. #scheduler_use_baremetal_filters=false
  1765.  
  1766.  
  1767. #
  1768. # Options defined in nova.scheduler.manager
  1769. #
  1770.  
  1771. # Default driver to use for the scheduler (string value)
  1772. #scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler
  1773.  
  1774. # How often (in seconds) to run periodic tasks in the
  1775. # scheduler driver of your choice. Please note this is likely
  1776. # to interact with the value of service_down_time, but exactly
  1777. # how they interact will depend on your choice of scheduler
  1778. # driver. (integer value)
  1779. #scheduler_driver_task_period=60
  1780.  
  1781.  
  1782. #
  1783. # Options defined in nova.scheduler.rpcapi
  1784. #
  1785.  
  1786. # The topic scheduler nodes listen on (string value)
  1787. #scheduler_topic=scheduler
  1788.  
  1789.  
  1790. #
  1791. # Options defined in nova.scheduler.scheduler_options
  1792. #
  1793.  
  1794. # Absolute path to scheduler configuration JSON file. (string
  1795. # value)
  1796. #scheduler_json_config_location=
  1797.  
  1798.  
  1799. #
  1800. # Options defined in nova.scheduler.utils
  1801. #
  1802.  
  1803. # Maximum number of attempts to schedule an instance (integer
  1804. # value)
  1805. #scheduler_max_attempts=3
  1806.  
  1807.  
  1808. #
  1809. # Options defined in nova.scheduler.weights.ram
  1810. #
  1811.  
  1812. # Multiplier used for weighing ram. Negative numbers mean to
  1813. # stack vs spread. (floating point value)
  1814. #ram_weight_multiplier=1.0
  1815.  
  1816.  
  1817. #
  1818. # Options defined in nova.servicegroup.api
  1819. #
  1820.  
  1821. # The driver for servicegroup service (valid options are: db,
  1822. # zk, mc) (string value)
  1823. #servicegroup_driver=db
  1824.  
  1825.  
  1826. #
  1827. # Options defined in nova.virt.configdrive
  1828. #
  1829.  
  1830. # Config drive format. One of iso9660 (default) or vfat
  1831. # (string value)
  1832. #config_drive_format=iso9660
  1833.  
  1834. # DEPRECATED (not needed any more): Where to put temporary
  1835. # files associated with config drive creation (string value)
  1836. #config_drive_tempdir=<None>
  1837.  
  1838. # Set to force injection to take place on a config drive (if
  1839. # set, valid options are: always) (string value)
  1840. #force_config_drive=<None>
  1841.  
  1842. # Name and optionally path of the tool used for ISO image
  1843. # creation (string value)
  1844. #mkisofs_cmd=genisoimage
  1845.  
  1846.  
  1847. #
  1848. # Options defined in nova.virt.disk.api
  1849. #
  1850.  
  1851. # Name of the mkfs commands for ephemeral device. The format
  1852. # is <os_type>=<mkfs command> (multi valued)
  1853. #virt_mkfs=
  1854.  
  1855. # Attempt to resize the filesystem by accessing the image over
  1856. # a block device. This is done by the host and may not be
  1857. # necessary if the image contains a recent version of cloud-
  1858. # init. Possible mechanisms require the nbd driver (for qcow
  1859. # and raw), or loop (for raw). (boolean value)
  1860. #resize_fs_using_block_device=false
  1861.  
  1862.  
  1863. #
  1864. # Options defined in nova.virt.disk.mount.nbd
  1865. #
  1866.  
  1867. # Amount of time, in seconds, to wait for NBD device start up.
  1868. # (integer value)
  1869. #timeout_nbd=10
  1870.  
  1871.  
  1872. #
  1873. # Options defined in nova.virt.driver
  1874. #
  1875.  
  1876. # Driver to use for controlling virtualization. Options
  1877. # include: libvirt.LibvirtDriver, xenapi.XenAPIDriver,
  1878. # fake.FakeDriver, baremetal.BareMetalDriver,
  1879. # vmwareapi.VMwareVCDriver, hyperv.HyperVDriver (string value)
  1880. #compute_driver=libvirt.LibvirtDriver
  1881.  
  1882. # The default format an ephemeral_volume will be formatted
  1883. # with on creation. (string value)
  1884. #default_ephemeral_format=<None>
  1885.  
  1886. # VM image preallocation mode: "none" => no storage
  1887. # provisioning is done up front, "space" => storage is fully
  1888. # allocated at instance start (string value)
  1889. #preallocate_images=none
  1890.  
  1891. # Whether to use cow images (boolean value)
  1892. #use_cow_images=true
  1893.  
  1894. # Fail instance boot if vif plugging fails (boolean value)
  1895. #vif_plugging_is_fatal=true
  1896.  
  1897. # Number of seconds to wait for neutron vif plugging events to
  1898. # arrive before continuing or failing (see
  1899. # vif_plugging_is_fatal). If this is set to zero and
  1900. # vif_plugging_is_fatal is False, events should not be
  1901. # expected to arrive at all. (integer value)
  1902. #vif_plugging_timeout=300
  1903.  
  1904.  
  1905. #
  1906. # Options defined in nova.virt.firewall
  1907. #
  1908.  
  1909. # Firewall driver (defaults to hypervisor specific iptables
  1910. # driver) (string value)
  1911. #firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver
  1912.  
  1913. # Whether to allow network traffic from same network (boolean
  1914. # value)
  1915. #allow_same_net_traffic=true
  1916.  
  1917.  
  1918. #
  1919. # Options defined in nova.virt.hardware
  1920. #
  1921.  
  1922. # Defines which pcpus that instance vcpus can use. For
  1923. # example, "4-12,^8,15" (string value)
  1924. #vcpu_pin_set=<None>
  1925.  
  1926.  
  1927. #
  1928. # Options defined in nova.virt.imagecache
  1929. #
  1930.  
  1931. # Number of seconds to wait between runs of the image cache
  1932. # manager. Set to -1 to disable. Setting this to 0 will
  1933. # disable, but this will change in the K release to mean "run
  1934. # at the default rate". (integer value)
  1935. #image_cache_manager_interval=2400
  1936.  
  1937. # Where cached images are stored under $instances_path. This
  1938. # is NOT the full path - just a folder name. For per-compute-
  1939. # host cached images, set to _base_$my_ip (string value)
  1940. #image_cache_subdirectory_name=_base
  1941.  
  1942. # Should unused base images be removed? (boolean value)
  1943. #remove_unused_base_images=true
  1944.  
  1945. # Unused unresized base images younger than this will not be
  1946. # removed (integer value)
  1947. #remove_unused_original_minimum_age_seconds=86400
  1948.  
  1949.  
  1950. #
  1951. # Options defined in nova.virt.images
  1952. #
  1953.  
  1954. # Force backing images to raw format (boolean value)
  1955. #force_raw_images=true
  1956.  
  1957.  
  1958. #
  1959. # Options defined in nova.virt.netutils
  1960. #
  1961.  
  1962. # Template file for injected network (string value)
  1963. #injected_network_template=/usr/share/nova/interfaces.template
  1964.  
  1965.  
  1966. #
  1967. # Options defined in nova.vnc
  1968. #
  1969.  
  1970. # Location of VNC console proxy, in the form
  1971. # "http://127.0.0.1:6080/vnc_auto.html" (string value)
  1972. #novncproxy_base_url=http://127.0.0.1:6080/vnc_auto.html
  1973.  
  1974. # Location of nova xvp VNC console proxy, in the form
  1975. # "http://127.0.0.1:6081/console" (string value)
  1976. #xvpvncproxy_base_url=http://127.0.0.1:6081/console
  1977.  
  1978. # IP address on which instance vncservers should listen
  1979. # (string value)
  1980. #vncserver_listen=127.0.0.1
  1981.  
  1982. # The address to which proxy clients (like nova-xvpvncproxy)
  1983. # should connect (string value)
  1984. #vncserver_proxyclient_address=127.0.0.1
  1985.  
  1986. # Enable VNC related features (boolean value)
  1987. #vnc_enabled=true
  1988.  
  1989. # Keymap for VNC (string value)
  1990. #vnc_keymap=en-us
  1991.  
  1992.  
  1993. #
  1994. # Options defined in nova.vnc.xvp_proxy
  1995. #
  1996.  
  1997. # Port that the XCP VNC proxy should bind to (integer value)
  1998. #xvpvncproxy_port=6081
  1999.  
  2000. # Address that the XCP VNC proxy should bind to (string value)
  2001. #xvpvncproxy_host=0.0.0.0
  2002.  
  2003.  
  2004. #
  2005. # Options defined in nova.volume
  2006. #
  2007.  
  2008. # The full class name of the volume API class to use (string
  2009. # value)
  2010. #volume_api_class=nova.volume.cinder.API
  2011.  
  2012.  
  2013. [baremetal]
  2014.  
  2015. #
  2016. # Options defined in nova.virt.baremetal.db.api
  2017. #
  2018.  
  2019. # The backend to use for bare-metal database (string value)
  2020. #db_backend=sqlalchemy
  2021.  
  2022.  
  2023. #
  2024. # Options defined in nova.virt.baremetal.db.sqlalchemy.session
  2025. #
  2026.  
  2027. # The SQLAlchemy connection string used to connect to the
  2028. # bare-metal database (string value)
  2029. #sql_connection=sqlite:///$state_path/baremetal_nova.sqlite
  2030.  
  2031.  
  2032. #
  2033. # Options defined in nova.virt.baremetal.driver
  2034. #
  2035.  
  2036. # Baremetal VIF driver. (string value)
  2037. #vif_driver=nova.virt.baremetal.vif_driver.BareMetalVIFDriver
  2038.  
  2039. # Baremetal volume driver. (string value)
  2040. #volume_driver=nova.virt.baremetal.volume_driver.LibvirtVolumeDriver
  2041.  
  2042. # A list of additional capabilities corresponding to
  2043. # flavor_extra_specs for this compute host to advertise. Valid
  2044. # entries are name=value, pairs For example, "key1:val1,
  2045. # key2:val2" (list value)
  2046. #flavor_extra_specs=
  2047.  
  2048. # Baremetal driver back-end (pxe or tilera) (string value)
  2049. #driver=nova.virt.baremetal.pxe.PXE
  2050.  
  2051. # Baremetal power management method (string value)
  2052. #power_manager=nova.virt.baremetal.ipmi.IPMI
  2053.  
  2054. # Baremetal compute node's tftp root path (string value)
  2055. #tftp_root=/tftpboot
  2056.  
  2057.  
  2058. #
  2059. # Options defined in nova.virt.baremetal.ipmi
  2060. #
  2061.  
  2062. # Path to baremetal terminal program (string value)
  2063. #terminal=shellinaboxd
  2064.  
  2065. # Path to baremetal terminal SSL cert(PEM) (string value)
  2066. #terminal_cert_dir=<None>
  2067.  
  2068. # Path to directory stores pidfiles of baremetal_terminal
  2069. # (string value)
  2070. #terminal_pid_dir=$state_path/baremetal/console
  2071.  
  2072. # Maximal number of retries for IPMI operations (integer
  2073. # value)
  2074. #ipmi_power_retry=10
  2075.  
  2076.  
  2077. #
  2078. # Options defined in nova.virt.baremetal.pxe
  2079. #
  2080.  
  2081. # Default kernel image ID used in deployment phase (string
  2082. # value)
  2083. #deploy_kernel=<None>
  2084.  
  2085. # Default ramdisk image ID used in deployment phase (string
  2086. # value)
  2087. #deploy_ramdisk=<None>
  2088.  
  2089. # Template file for injected network config (string value)
  2090. #net_config_template=$pybasedir/nova/virt/baremetal/net-dhcp.ubuntu.template
  2091.  
  2092. # Additional append parameters for baremetal PXE boot (string
  2093. # value)
  2094. #pxe_append_params=nofb nomodeset vga=normal
  2095.  
  2096. # Template file for PXE configuration (string value)
  2097. #pxe_config_template=$pybasedir/nova/virt/baremetal/pxe_config.template
  2098.  
  2099. # If True, enable file injection for network info, files and
  2100. # admin password (boolean value)
  2101. #use_file_injection=false
  2102.  
  2103. # Timeout for PXE deployments. Default: 0 (unlimited) (integer
  2104. # value)
  2105. #pxe_deploy_timeout=0
  2106.  
  2107. # If set, pass the network configuration details to the
  2108. # initramfs via cmdline. (boolean value)
  2109. #pxe_network_config=false
  2110.  
  2111. # This gets passed to Neutron as the bootfile dhcp parameter.
  2112. # (string value)
  2113. #pxe_bootfile_name=pxelinux.0
  2114.  
  2115.  
  2116. #
  2117. # Options defined in nova.virt.baremetal.tilera_pdu
  2118. #
  2119.  
  2120. # IP address of tilera pdu (string value)
  2121. #tile_pdu_ip=10.0.100.1
  2122.  
  2123. # Management script for tilera pdu (string value)
  2124. #tile_pdu_mgr=/tftpboot/pdu_mgr
  2125.  
  2126. # Power status of tilera PDU is OFF (integer value)
  2127. #tile_pdu_off=2
  2128.  
  2129. # Power status of tilera PDU is ON (integer value)
  2130. #tile_pdu_on=1
  2131.  
  2132. # Power status of tilera PDU (integer value)
  2133. #tile_pdu_status=9
  2134.  
  2135. # Wait time in seconds until check the result after tilera
  2136. # power operations (integer value)
  2137. #tile_power_wait=9
  2138.  
  2139.  
  2140. #
  2141. # Options defined in nova.virt.baremetal.virtual_power_driver
  2142. #
  2143.  
  2144. # IP or name to virtual power host (string value)
  2145. #virtual_power_ssh_host=
  2146.  
  2147. # Port to use for ssh to virtual power host (integer value)
  2148. #virtual_power_ssh_port=22
  2149.  
  2150. # Base command to use for virtual power(vbox, virsh) (string
  2151. # value)
  2152. #virtual_power_type=virsh
  2153.  
  2154. # User to execute virtual power commands as (string value)
  2155. #virtual_power_host_user=
  2156.  
  2157. # Password for virtual power host_user (string value)
  2158. #virtual_power_host_pass=
  2159.  
  2160. # The ssh key for virtual power host_user (string value)
  2161. #virtual_power_host_key=<None>
  2162.  
  2163.  
  2164. #
  2165. # Options defined in nova.virt.baremetal.volume_driver
  2166. #
  2167.  
  2168. # Do not set this out of dev/test environments. If a node does
  2169. # not have a fixed PXE IP address, volumes are exported with
  2170. # globally opened ACL (boolean value)
  2171. #use_unsafe_iscsi=false
  2172.  
  2173. # The iSCSI IQN prefix used in baremetal volume connections.
  2174. # (string value)
  2175. #iscsi_iqn_prefix=iqn.2010-10.org.openstack.baremetal
  2176.  
  2177.  
  2178. [cells]
  2179.  
  2180. #
  2181. # Options defined in nova.cells.manager
  2182. #
  2183.  
  2184. # Cells communication driver to use (string value)
  2185. #driver=nova.cells.rpc_driver.CellsRPCDriver
  2186.  
  2187. # Number of seconds after an instance was updated or deleted
  2188. # to continue to update cells (integer value)
  2189. #instance_updated_at_threshold=3600
  2190.  
  2191. # Number of instances to update per periodic task run (integer
  2192. # value)
  2193. #instance_update_num_instances=1
  2194.  
  2195.  
  2196. #
  2197. # Options defined in nova.cells.messaging
  2198. #
  2199.  
  2200. # Maximum number of hops for cells routing. (integer value)
  2201. #max_hop_count=10
  2202.  
  2203. # Cells scheduler to use (string value)
  2204. #scheduler=nova.cells.scheduler.CellsScheduler
  2205.  
  2206.  
  2207. #
  2208. # Options defined in nova.cells.opts
  2209. #
  2210.  
  2211. # Enable cell functionality (boolean value)
  2212. #enable=false
  2213.  
  2214. # The topic cells nodes listen on (string value)
  2215. #topic=cells
  2216.  
  2217. # Manager for cells (string value)
  2218. #manager=nova.cells.manager.CellsManager
  2219.  
  2220. # Name of this cell (string value)
  2221. #name=nova
  2222.  
  2223. # Key/Multi-value list with the capabilities of the cell (list
  2224. # value)
  2225. #capabilities=hypervisor=xenserver;kvm,os=linux;windows
  2226.  
  2227. # Seconds to wait for response from a call to a cell. (integer
  2228. # value)
  2229. #call_timeout=60
  2230.  
  2231. # Percentage of cell capacity to hold in reserve. Affects both
  2232. # memory and disk utilization (floating point value)
  2233. #reserve_percent=10.0
  2234.  
  2235. # Type of cell: api or compute (string value)
  2236. #cell_type=compute
  2237.  
  2238. # Number of seconds after which a lack of capability and
  2239. # capacity updates signals the child cell is to be treated as
  2240. # a mute. (integer value)
  2241. #mute_child_interval=300
  2242.  
  2243. # Seconds between bandwidth updates for cells. (integer value)
  2244. #bandwidth_update_interval=600
  2245.  
  2246.  
  2247. #
  2248. # Options defined in nova.cells.rpc_driver
  2249. #
  2250.  
  2251. # Base queue name to use when communicating between cells.
  2252. # Various topics by message type will be appended to this.
  2253. # (string value)
  2254. #rpc_driver_queue_base=cells.intercell
  2255.  
  2256.  
  2257. #
  2258. # Options defined in nova.cells.scheduler
  2259. #
  2260.  
  2261. # Filter classes the cells scheduler should use. An entry of
  2262. # "nova.cells.filters.all_filters" maps to all cells filters
  2263. # included with nova. (list value)
  2264. #scheduler_filter_classes=nova.cells.filters.all_filters
  2265.  
  2266. # Weigher classes the cells scheduler should use. An entry of
  2267. # "nova.cells.weights.all_weighers" maps to all cell weighers
  2268. # included with nova. (list value)
  2269. #scheduler_weight_classes=nova.cells.weights.all_weighers
  2270.  
  2271. # How many retries when no cells are available. (integer
  2272. # value)
  2273. #scheduler_retries=10
  2274.  
  2275. # How often to retry in seconds when no cells are available.
  2276. # (integer value)
  2277. #scheduler_retry_delay=2
  2278.  
  2279.  
  2280. #
  2281. # Options defined in nova.cells.state
  2282. #
  2283.  
  2284. # Interval, in seconds, for getting fresh cell information
  2285. # from the database. (integer value)
  2286. #db_check_interval=60
  2287.  
  2288. # Configuration file from which to read cells configuration.
  2289. # If given, overrides reading cells from the database. (string
  2290. # value)
  2291. #cells_config=<None>
  2292.  
  2293.  
  2294. #
  2295. # Options defined in nova.cells.weights.mute_child
  2296. #
  2297.  
  2298. # Multiplier used to weigh mute children. (The value should be
  2299. # negative.) (floating point value)
  2300. #mute_weight_multiplier=-10.0
  2301.  
  2302. # Weight value assigned to mute children. (The value should be
  2303. # positive.) (floating point value)
  2304. #mute_weight_value=1000.0
  2305.  
  2306.  
  2307. #
  2308. # Options defined in nova.cells.weights.ram_by_instance_type
  2309. #
  2310.  
  2311. # Multiplier used for weighing ram. Negative numbers mean to
  2312. # stack vs spread. (floating point value)
  2313. #ram_weight_multiplier=10.0
  2314.  
  2315.  
  2316. #
  2317. # Options defined in nova.cells.weights.weight_offset
  2318. #
  2319.  
  2320. # Multiplier used to weigh offset weigher. (floating point
  2321. # value)
  2322. #offset_weight_multiplier=1.0
  2323.  
  2324.  
  2325. [cinder]
  2326.  
  2327. #
  2328. # Options defined in nova.volume.cinder
  2329. #
  2330.  
  2331. # Info to match when looking for cinder in the service
  2332. # catalog. Format is: separated values of the form:
  2333. # <service_type>:<service_name>:<endpoint_type> (string value)
  2334. # Deprecated group;name - DEFAULT;cinder_catalog_info
  2335. #catalog_info=volume:cinder:publicURL
  2336.  
  2337. # Override service catalog lookup with template for cinder
  2338. # endpoint e.g. http://localhost:8776/v1/%(project_id)s
  2339. # (string value)
  2340. # Deprecated group;name - DEFAULT;cinder_endpoint_template
  2341. #endpoint_template=<None>
  2342.  
  2343. # Region name of this node (string value)
  2344. # Deprecated group;name - DEFAULT;os_region_name
  2345. #os_region_name=<None>
  2346.  
  2347. # Location of ca certificates file to use for cinder client
  2348. # requests. (string value)
  2349. # Deprecated group;name - DEFAULT;cinder_ca_certificates_file
  2350. #ca_certificates_file=<None>
  2351.  
  2352. # Number of cinderclient retries on failed http calls (integer
  2353. # value)
  2354. # Deprecated group;name - DEFAULT;cinder_http_retries
  2355. #http_retries=3
  2356.  
  2357. # HTTP inactivity timeout (in seconds) (integer value)
  2358. # Deprecated group;name - DEFAULT;cinder_http_timeout
  2359. #http_timeout=<None>
  2360.  
  2361. # Allow to perform insecure SSL requests to cinder (boolean
  2362. # value)
  2363. # Deprecated group;name - DEFAULT;cinder_api_insecure
  2364. #api_insecure=false
  2365.  
  2366. # Allow attach between instance and volume in different
  2367. # availability zones. (boolean value)
  2368. # Deprecated group;name - DEFAULT;cinder_cross_az_attach
  2369. #cross_az_attach=true
  2370.  
  2371.  
  2372. [conductor]
  2373.  
  2374. #
  2375. # Options defined in nova.conductor.api
  2376. #
  2377.  
  2378. # Perform nova-conductor operations locally (boolean value)
  2379. #use_local=false
  2380.  
  2381. # The topic on which conductor nodes listen (string value)
  2382. #topic=conductor
  2383.  
  2384. # Full class name for the Manager for conductor (string value)
  2385. #manager=nova.conductor.manager.ConductorManager
  2386.  
  2387. # Number of workers for OpenStack Conductor service. The
  2388. # default will be the number of CPUs available. (integer
  2389. # value)
  2390. #workers=<None>
  2391.  
  2392.  
  2393. [ephemeral_storage_encryption]
  2394.  
  2395. #
  2396. # Options defined in nova.compute.api
  2397. #
  2398.  
  2399. # Whether to encrypt ephemeral storage (boolean value)
  2400. #enabled=false
  2401.  
  2402. # The cipher and mode to be used to encrypt ephemeral storage.
  2403. # Which ciphers are available ciphers depends on kernel
  2404. # support. See /proc/crypto for the list of available options.
  2405. # (string value)
  2406. #cipher=aes-xts-plain64
  2407.  
  2408. # The bit length of the encryption key to be used to encrypt
  2409. # ephemeral storage (in XTS mode only half of the bits are
  2410. # used for encryption key) (integer value)
  2411. #key_size=512
  2412.  
  2413.  
  2414. [glance]
  2415.  
  2416. #
  2417. # Options defined in nova.image.glance
  2418. #
  2419.  
  2420. # Default glance hostname or IP address (string value)
  2421. # Deprecated group;name - DEFAULT;glance_host
  2422. #host=$my_ip
  2423.  
  2424. # Default glance port (integer value)
  2425. # Deprecated group;name - DEFAULT;glance_port
  2426. #port=9292
  2427.  
  2428. # Default protocol to use when connecting to glance. Set to
  2429. # https for SSL. (string value)
  2430. # Deprecated group;name - DEFAULT;glance_protocol
  2431. #protocol=http
  2432.  
  2433. # A list of the glance api servers available to nova. Prefix
  2434. # with https:// for ssl-based glance api servers.
  2435. # ([hostname|ip]:port) (list value)
  2436. # Deprecated group;name - DEFAULT;glance_api_servers
  2437. #api_servers=<None>
  2438.  
  2439. # Allow to perform insecure SSL (https) requests to glance
  2440. # (boolean value)
  2441. # Deprecated group;name - DEFAULT;glance_api_insecure
  2442. #api_insecure=false
  2443.  
  2444. # Number of retries when downloading an image from glance
  2445. # (integer value)
  2446. # Deprecated group;name - DEFAULT;glance_num_retries
  2447. #num_retries=0
  2448.  
  2449. # A list of url scheme that can be downloaded directly via the
  2450. # direct_url. Currently supported schemes: [file]. (list
  2451. # value)
  2452. #allowed_direct_url_schemes=
  2453.  
  2454.  
  2455. [hyperv]
  2456.  
  2457. #
  2458. # Options defined in nova.virt.hyperv.pathutils
  2459. #
  2460.  
  2461. # The name of a Windows share name mapped to the
  2462. # "instances_path" dir and used by the resize feature to copy
  2463. # files to the target host. If left blank, an administrative
  2464. # share will be used, looking for the same "instances_path"
  2465. # used locally (string value)
  2466. #instances_path_share=
  2467.  
  2468.  
  2469. #
  2470. # Options defined in nova.virt.hyperv.utilsfactory
  2471. #
  2472.  
  2473. # Force V1 WMI utility classes (boolean value)
  2474. #force_hyperv_utils_v1=false
  2475.  
  2476. # Force V1 volume utility class (boolean value)
  2477. #force_volumeutils_v1=false
  2478.  
  2479.  
  2480. #
  2481. # Options defined in nova.virt.hyperv.vif
  2482. #
  2483.  
  2484. # External virtual switch Name, if not provided, the first
  2485. # external virtual switch is used (string value)
  2486. #vswitch_name=<None>
  2487.  
  2488.  
  2489. #
  2490. # Options defined in nova.virt.hyperv.vmops
  2491. #
  2492.  
  2493. # Required for live migration among hosts with different CPU
  2494. # features (boolean value)
  2495. #limit_cpu_features=false
  2496.  
  2497. # Sets the admin password in the config drive image (boolean
  2498. # value)
  2499. #config_drive_inject_password=false
  2500.  
  2501. # Path of qemu-img command which is used to convert between
  2502. # different image types (string value)
  2503. #qemu_img_cmd=qemu-img.exe
  2504.  
  2505. # Attaches the Config Drive image as a cdrom drive instead of
  2506. # a disk drive (boolean value)
  2507. #config_drive_cdrom=false
  2508.  
  2509. # Enables metrics collections for an instance by using
  2510. # Hyper-V's metric APIs. Collected data can by retrieved by
  2511. # other apps and services, e.g.: Ceilometer. Requires Hyper-V
  2512. # / Windows Server 2012 and above (boolean value)
  2513. #enable_instance_metrics_collection=false
  2514.  
  2515. # Enables dynamic memory allocation (ballooning) when set to a
  2516. # value greater than 1. The value expresses the ratio between
  2517. # the total RAM assigned to an instance and its startup RAM
  2518. # amount. For example a ratio of 2.0 for an instance with
  2519. # 1024MB of RAM implies 512MB of RAM allocated at startup
  2520. # (floating point value)
  2521. #dynamic_memory_ratio=1.0
  2522.  
  2523. # Number of seconds to wait for instance to shut down after
  2524. # soft reboot request is made. We fall back to hard reboot if
  2525. # instance does not shutdown within this window. (integer
  2526. # value)
  2527. #wait_soft_reboot_seconds=60
  2528.  
  2529.  
  2530. #
  2531. # Options defined in nova.virt.hyperv.volumeops
  2532. #
  2533.  
  2534. # The number of times to retry to attach a volume (integer
  2535. # value)
  2536. #volume_attach_retry_count=10
  2537.  
  2538. # Interval between volume attachment attempts, in seconds
  2539. # (integer value)
  2540. #volume_attach_retry_interval=5
  2541.  
  2542. # The number of times to retry checking for a disk mounted via
  2543. # iSCSI. (integer value)
  2544. #mounted_disk_query_retry_count=10
  2545.  
  2546. # Interval between checks for a mounted iSCSI disk, in
  2547. # seconds. (integer value)
  2548. #mounted_disk_query_retry_interval=5
  2549.  
  2550.  
  2551. [image_file_url]
  2552.  
  2553. #
  2554. # Options defined in nova.image.download.file
  2555. #
  2556.  
  2557. # List of file systems that are configured in this file in the
  2558. # image_file_url:<list entry name> sections (list value)
  2559. #filesystems=
  2560.  
  2561.  
  2562. [ironic]
  2563.  
  2564. #
  2565. # Options defined in nova.virt.ironic.driver
  2566. #
  2567.  
  2568. # Version of Ironic API service endpoint. (integer value)
  2569. #api_version=1
  2570.  
  2571. # URL for Ironic API endpoint. (string value)
  2572. #api_endpoint=<None>
  2573.  
  2574. # Ironic keystone admin name (string value)
  2575. #admin_username=<None>
  2576.  
  2577. # Ironic keystone admin password. (string value)
  2578. #admin_password=%SERVICE_PASSWORD%
  2579.  
  2580. # Ironic keystone auth token. (string value)
  2581. #admin_auth_token=<None>
  2582.  
  2583. # Keystone public API endpoint. (string value)
  2584. #admin_url=<None>
  2585.  
  2586. # Log level override for ironicclient. Set this in order to
  2587. # override the global "default_log_levels", "verbose", and
  2588. # "debug" settings. (string value)
  2589. #client_log_level=<None>
  2590.  
  2591. # Ironic keystone tenant name. (string value)
  2592. #admin_tenant_name=%SERVICE_TENANT_NAME%
  2593.  
  2594. # How many retries when a request does conflict. (integer
  2595. # value)
  2596. #api_max_retries=60
  2597.  
  2598. # How often to retry in seconds when a request does conflict
  2599. # (integer value)
  2600. #api_retry_interval=2
  2601.  
  2602.  
  2603. [keymgr]
  2604.  
  2605. #
  2606. # Options defined in nova.keymgr
  2607. #
  2608.  
  2609. # The full class name of the key manager API class (string
  2610. # value)
  2611. #api_class=nova.keymgr.conf_key_mgr.ConfKeyManager
  2612.  
  2613.  
  2614. #
  2615. # Options defined in nova.keymgr.conf_key_mgr
  2616. #
  2617.  
  2618. # Fixed key returned by key manager, specified in hex (string
  2619. # value)
  2620. #fixed_key=<None>
  2621.  
  2622.  
  2623. [keystone_authtoken]
  2624.  
  2625. #
  2626. # Options defined in keystonemiddleware.auth_token
  2627. #
  2628.  
  2629. # Prefix to prepend at the beginning of the path. Deprecated,
  2630. # use identity_uri. (string value)
  2631. #auth_admin_prefix=
  2632.  
  2633. # Host providing the admin Identity API endpoint. Deprecated,
  2634. # use identity_uri. (string value)
  2635. #auth_host=127.0.0.1
  2636.  
  2637. # Port of the admin Identity API endpoint. Deprecated, use
  2638. # identity_uri. (integer value)
  2639. #auth_port=35357
  2640.  
  2641. # Protocol of the admin Identity API endpoint (http or https).
  2642. # Deprecated, use identity_uri. (string value)
  2643. #auth_protocol=http
  2644.  
  2645. # Complete public Identity API endpoint (string value)
  2646. #auth_uri=<None>
  2647.  
  2648. # Complete admin Identity API endpoint. This should specify
  2649. # the unversioned root endpoint e.g. https://localhost:35357/
  2650. # (string value)
  2651. #identity_uri=<None>
  2652.  
  2653. # API version of the admin Identity API endpoint (string
  2654. # value)
  2655. #auth_version=v2.0
  2656.  
  2657. # Do not handle authorization requests within the middleware,
  2658. # but delegate the authorization decision to downstream WSGI
  2659. # components (boolean value)
  2660. #delay_auth_decision=false
  2661.  
  2662. # Request timeout value for communicating with Identity API
  2663. # server. (boolean value)
  2664. #http_connect_timeout=<None>
  2665.  
  2666. # How many times are we trying to reconnect when communicating
  2667. # with Identity API Server. (integer value)
  2668. #http_request_max_retries=3
  2669.  
  2670. # This option is deprecated and may be removed in a future
  2671. # release. Single shared secret with the Keystone
  2672. # configuration used for bootstrapping a Keystone
  2673. # installation, or otherwise bypassing the normal
  2674. # authentication process. This option should not be used, use
  2675. # `admin_user` and `admin_password` instead. (string value)
  2676. #admin_token=<None>
  2677.  
  2678. # Keystone account username (string value)
  2679. #admin_user=%SERVICE_USER%
  2680.  
  2681. # Keystone account password (string value)
  2682. #admin_password=<None>
  2683.  
  2684. # Keystone service account tenant name to validate user tokens
  2685. # (string value)
  2686. #admin_tenant_name=admin
  2687.  
  2688. # Env key for the swift cache (string value)
  2689. #cache=<None>
  2690.  
  2691. # Required if Keystone server requires client certificate
  2692. # (string value)
  2693. #certfile=<None>
  2694.  
  2695. # Required if Keystone server requires client certificate
  2696. # (string value)
  2697. #keyfile=<None>
  2698.  
  2699. # A PEM encoded Certificate Authority to use when verifying
  2700. # HTTPs connections. Defaults to system CAs. (string value)
  2701. #cafile=<None>
  2702.  
  2703. # Verify HTTPS connections. (boolean value)
  2704. #insecure=false
  2705.  
  2706. # Directory used to cache files related to PKI tokens (string
  2707. # value)
  2708. #signing_dir=<None>
  2709.  
  2710. # Optionally specify a list of memcached server(s) to use for
  2711. # caching. If left undefined, tokens will instead be cached
  2712. # in-process. (list value)
  2713. # Deprecated group;name - DEFAULT;memcache_servers
  2714. #memcached_servers=<None>
  2715.  
  2716. # In order to prevent excessive effort spent validating
  2717. # tokens, the middleware caches previously-seen tokens for a
  2718. # configurable duration (in seconds). Set to -1 to disable
  2719. # caching completely. (integer value)
  2720. #token_cache_time=300
  2721.  
  2722. # Determines the frequency at which the list of revoked tokens
  2723. # is retrieved from the Identity service (in seconds). A high
  2724. # number of revocation events combined with a low cache
  2725. # duration may significantly reduce performance. (integer
  2726. # value)
  2727. #revocation_cache_time=10
  2728.  
  2729. # (optional) if defined, indicate whether token data should be
  2730. # authenticated or authenticated and encrypted. Acceptable
  2731. # values are MAC or ENCRYPT. If MAC, token data is
  2732. # authenticated (with HMAC) in the cache. If ENCRYPT, token
  2733. # data is encrypted and authenticated in the cache. If the
  2734. # value is not one of these options or empty, auth_token will
  2735. # raise an exception on initialization. (string value)
  2736. #memcache_security_strategy=<None>
  2737.  
  2738. # (optional, mandatory if memcache_security_strategy is
  2739. # defined) this string is used for key derivation. (string
  2740. # value)
  2741. #memcache_secret_key=<None>
  2742.  
  2743. # (optional) number of seconds memcached server is considered
  2744. # dead before it is tried again. (integer value)
  2745. #memcache_pool_dead_retry=300
  2746.  
  2747. # (optional) max total number of open connections to every
  2748. # memcached server. (integer value)
  2749. #memcache_pool_maxsize=10
  2750.  
  2751. # (optional) socket timeout in seconds for communicating with
  2752. # a memcache server. (integer value)
  2753. #memcache_pool_socket_timeout=3
  2754.  
  2755. # (optional) number of seconds a connection to memcached is
  2756. # held unused in the pool before it is closed. (integer value)
  2757. #memcache_pool_unused_timeout=60
  2758.  
  2759. # (optional) number of seconds that an operation will wait to
  2760. # get a memcache client connection from the pool. (integer
  2761. # value)
  2762. #memcache_pool_conn_get_timeout=10
  2763.  
  2764. # (optional) use the advanced (eventlet safe) memcache client
  2765. # pool. The advanced pool will only work under python 2.x.
  2766. # (boolean value)
  2767. #memcache_use_advanced_pool=false
  2768.  
  2769. # (optional) indicate whether to set the X-Service-Catalog
  2770. # header. If False, middleware will not ask for service
  2771. # catalog on token validation and will not set the X-Service-
  2772. # Catalog header. (boolean value)
  2773. #include_service_catalog=true
  2774.  
  2775. # Used to control the use and type of token binding. Can be
  2776. # set to: "disabled" to not check token binding. "permissive"
  2777. # (default) to validate binding information if the bind type
  2778. # is of a form known to the server and ignore it if not.
  2779. # "strict" like "permissive" but if the bind type is unknown
  2780. # the token will be rejected. "required" any form of token
  2781. # binding is needed to be allowed. Finally the name of a
  2782. # binding method that must be present in tokens. (string
  2783. # value)
  2784. #enforce_token_bind=permissive
  2785.  
  2786. # If true, the revocation list will be checked for cached
  2787. # tokens. This requires that PKI tokens are configured on the
  2788. # Keystone server. (boolean value)
  2789. #check_revocations_for_cached=false
  2790.  
  2791. # Hash algorithms to use for hashing PKI tokens. This may be a
  2792. # single algorithm or multiple. The algorithms are those
  2793. # supported by Python standard hashlib.new(). The hashes will
  2794. # be tried in the order given, so put the preferred one first
  2795. # for performance. The result of the first hash will be stored
  2796. # in the cache. This will typically be set to multiple values
  2797. # only while migrating from a less secure algorithm to a more
  2798. # secure one. Once all the old tokens are expired this option
  2799. # should be set to a single value for better performance.
  2800. # (list value)
  2801. #hash_algorithms=md5
  2802.  
  2803.  
  2804. [libvirt]
  2805.  
  2806. #
  2807. # Options defined in nova.virt.libvirt.driver
  2808. #
  2809.  
  2810. # Rescue ami image. This will not be used if an image id is
  2811. # provided by the user. (string value)
  2812. #rescue_image_id=<None>
  2813.  
  2814. # Rescue aki image (string value)
  2815. #rescue_kernel_id=<None>
  2816.  
  2817. # Rescue ari image (string value)
  2818. #rescue_ramdisk_id=<None>
  2819.  
  2820. # Libvirt domain type (valid options are: kvm, lxc, qemu, uml,
  2821. # xen) (string value)
  2822. #virt_type=kvm
  2823.  
  2824. # Override the default libvirt URI (which is dependent on
  2825. # virt_type) (string value)
  2826. #connection_uri=
  2827.  
  2828. # Inject the admin password at boot time, without an agent.
  2829. # (boolean value)
  2830. #inject_password=false
  2831.  
  2832. # Inject the ssh public key at boot time (boolean value)
  2833. #inject_key=false
  2834.  
  2835. # The partition to inject to : -2 => disable, -1 => inspect
  2836. # (libguestfs only), 0 => not partitioned, >0 => partition
  2837. # number (integer value)
  2838. #inject_partition=-2
  2839.  
  2840. # Sync virtual and real mouse cursors in Windows VMs (boolean
  2841. # value)
  2842. #use_usb_tablet=true
  2843.  
  2844. # Migration target URI (any included "%s" is replaced with the
  2845. # migration target hostname) (string value)
  2846. #live_migration_uri=qemu+tcp://%s/system
  2847.  
  2848. # Migration flags to be set for live migration (string value)
  2849. #live_migration_flag=VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_LIVE, VIR_MIGRATE_TUNNELLED
  2850.  
  2851. # Migration flags to be set for block migration (string value)
  2852. #block_migration_flag=VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_LIVE, VIR_MIGRATE_TUNNELLED, VIR_MIGRATE_NON_SHARED_INC
  2853.  
  2854. # Maximum bandwidth to be used during migration, in Mbps
  2855. # (integer value)
  2856. #live_migration_bandwidth=0
  2857.  
  2858. # Snapshot image format (valid options are : raw, qcow2, vmdk,
  2859. # vdi). Defaults to same as source image (string value)
  2860. #snapshot_image_format=<None>
  2861.  
  2862. # DEPRECATED. Libvirt handlers for remote volumes. This option
  2863. # is deprecated and will be removed in the Kilo release. (list
  2864. # value)
  2865. #volume_drivers=iscsi=nova.virt.libvirt.volume.LibvirtISCSIVolumeDriver,iser=nova.virt.libvirt.volume.LibvirtISERVolumeDriver,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
  2866.  
  2867. # Override the default disk prefix for the devices attached to
  2868. # a server, which is dependent on virt_type. (valid options
  2869. # are: sd, xvd, uvd, vd) (string value)
  2870. #disk_prefix=<None>
  2871.  
  2872. # Number of seconds to wait for instance to shut down after
  2873. # soft reboot request is made. We fall back to hard reboot if
  2874. # instance does not shutdown within this window. (integer
  2875. # value)
  2876. #wait_soft_reboot_seconds=120
  2877.  
  2878. # Set to "host-model" to clone the host CPU feature flags; to
  2879. # "host-passthrough" to use the host CPU model exactly; to
  2880. # "custom" to use a named CPU model; to "none" to not set any
  2881. # CPU model. If virt_type="kvm|qemu", it will default to
  2882. # "host-model", otherwise it will default to "none" (string
  2883. # value)
  2884. #cpu_mode=<None>
  2885.  
  2886. # Set to a named libvirt CPU model (see names listed in
  2887. # /usr/share/libvirt/cpu_map.xml). Only has effect if
  2888. # cpu_mode="custom" and virt_type="kvm|qemu" (string value)
  2889. #cpu_model=<None>
  2890.  
  2891. # Location where libvirt driver will store snapshots before
  2892. # uploading them to image service (string value)
  2893. #snapshots_directory=$instances_path/snapshots
  2894.  
  2895. # Location where the Xen hvmloader is kept (string value)
  2896. #xen_hvmloader_path=/usr/lib/xen/boot/hvmloader
  2897.  
  2898. # Specific cachemodes to use for different disk types e.g:
  2899. # file=directsync,block=none (list value)
  2900. #disk_cachemodes=
  2901.  
  2902. # A path to a device that will be used as source of entropy on
  2903. # the host. Permitted options are: /dev/random or /dev/hwrng
  2904. # (string value)
  2905. #rng_dev_path=<None>
  2906.  
  2907. # For qemu or KVM guests, set this option to specify a default
  2908. # machine type per host architecture. You can find a list of
  2909. # supported machine types in your environment by checking the
  2910. # output of the "virsh capabilities"command. The format of the
  2911. # value for this config option is host-arch=machine-type. For
  2912. # example: x86_64=machinetype1,armv7l=machinetype2 (list
  2913. # value)
  2914. #hw_machine_type=<None>
  2915.  
  2916. # The data source used to the populate the host "serial" UUID
  2917. # exposed to guest in the virtual BIOS. Permitted options are
  2918. # "hardware", "os", "none" or "auto" (default). (string value)
  2919. #sysinfo_serial=auto
  2920.  
  2921. # A number of seconds to memory usage statistics period. Zero
  2922. # or negative value mean to disable memory usage statistics.
  2923. # (integer value)
  2924. #mem_stats_period_seconds=10
  2925.  
  2926. # List of uid targets and ranges.Syntax is guest-uid:host-
  2927. # uid:countMaximum of 5 allowed. (list value)
  2928. #uid_maps=
  2929.  
  2930. # List of guid targets and ranges.Syntax is guest-gid:host-
  2931. # gid:countMaximum of 5 allowed. (list value)
  2932. #gid_maps=
  2933.  
  2934.  
  2935. #
  2936. # Options defined in nova.virt.libvirt.imagebackend
  2937. #
  2938.  
  2939. # VM Images format. Acceptable values are: raw, qcow2, lvm,
  2940. # rbd, default. If default is specified, then use_cow_images
  2941. # flag is used instead of this one. (string value)
  2942. #images_type=default
  2943.  
  2944. # LVM Volume Group that is used for VM images, when you
  2945. # specify images_type=lvm. (string value)
  2946. #images_volume_group=<None>
  2947.  
  2948. # Create sparse logical volumes (with virtualsize) if this
  2949. # flag is set to True. (boolean value)
  2950. #sparse_logical_volumes=false
  2951.  
  2952. # Method used to wipe old volumes (valid options are: none,
  2953. # zero, shred) (string value)
  2954. #volume_clear=zero
  2955.  
  2956. # Size in MiB to wipe at start of old volumes. 0 => all
  2957. # (integer value)
  2958. #volume_clear_size=0
  2959.  
  2960. # The RADOS pool in which rbd volumes are stored (string
  2961. # value)
  2962. #images_rbd_pool=rbd
  2963.  
  2964. # Path to the ceph configuration file to use (string value)
  2965. #images_rbd_ceph_conf=
  2966.  
  2967. # Discard option for nova managed disks (valid options are:
  2968. # ignore, unmap). Need Libvirt(1.0.6) Qemu1.5 (raw format)
  2969. # Qemu1.6(qcow2 format) (string value)
  2970. #hw_disk_discard=<None>
  2971.  
  2972.  
  2973. #
  2974. # Options defined in nova.virt.libvirt.imagecache
  2975. #
  2976.  
  2977. # Allows image information files to be stored in non-standard
  2978. # locations (string value)
  2979. #image_info_filename_pattern=$instances_path/$image_cache_subdirectory_name/%(image)s.info
  2980.  
  2981. # Should unused kernel images be removed? This is only safe to
  2982. # enable if all compute nodes have been updated to support
  2983. # this option. This will be enabled by default in future.
  2984. # (boolean value)
  2985. #remove_unused_kernels=false
  2986.  
  2987. # Unused resized base images younger than this will not be
  2988. # removed (integer value)
  2989. #remove_unused_resized_minimum_age_seconds=3600
  2990.  
  2991. # Write a checksum for files in _base to disk (boolean value)
  2992. #checksum_base_images=false
  2993.  
  2994. # How frequently to checksum base images (integer value)
  2995. #checksum_interval_seconds=3600
  2996.  
  2997.  
  2998. #
  2999. # Options defined in nova.virt.libvirt.utils
  3000. #
  3001.  
  3002. # Compress snapshot images when possible. This currently
  3003. # applies exclusively to qcow2 images (boolean value)
  3004. #snapshot_compression=false
  3005.  
  3006.  
  3007. #
  3008. # Options defined in nova.virt.libvirt.vif
  3009. #
  3010.  
  3011. # Use virtio for bridge interfaces with KVM/QEMU (boolean
  3012. # value)
  3013. #use_virtio_for_bridges=true
  3014.  
  3015.  
  3016. #
  3017. # Options defined in nova.virt.libvirt.volume
  3018. #
  3019.  
  3020. # Number of times to rescan iSCSI target to find volume
  3021. # (integer value)
  3022. #num_iscsi_scan_tries=5
  3023.  
  3024. # Number of times to rescan iSER target to find volume
  3025. # (integer value)
  3026. #num_iser_scan_tries=5
  3027.  
  3028. # The RADOS client name for accessing rbd volumes (string
  3029. # value)
  3030. #rbd_user=<None>
  3031.  
  3032. # The libvirt UUID of the secret for the rbd_uservolumes
  3033. # (string value)
  3034. #rbd_secret_uuid=<None>
  3035.  
  3036. # Directory where the NFS volume is mounted on the compute
  3037. # node (string value)
  3038. #nfs_mount_point_base=$state_path/mnt
  3039.  
  3040. # Mount options passedf to the NFS client. See section of the
  3041. # nfs man page for details (string value)
  3042. #nfs_mount_options=<None>
  3043.  
  3044. # Number of times to rediscover AoE target to find volume
  3045. # (integer value)
  3046. #num_aoe_discover_tries=3
  3047.  
  3048. # Directory where the glusterfs volume is mounted on the
  3049. # compute node (string value)
  3050. #glusterfs_mount_point_base=$state_path/mnt
  3051.  
  3052. # Use multipath connection of the iSCSI volume (boolean value)
  3053. #iscsi_use_multipath=false
  3054.  
  3055. # Use multipath connection of the iSER volume (boolean value)
  3056. #iser_use_multipath=false
  3057.  
  3058. # Path or URL to Scality SOFS configuration file (string
  3059. # value)
  3060. #scality_sofs_config=<None>
  3061.  
  3062. # Base dir where Scality SOFS shall be mounted (string value)
  3063. #scality_sofs_mount_point=$state_path/scality
  3064.  
  3065. # Protocols listed here will be accessed directly from QEMU.
  3066. # Currently supported protocols: [gluster] (list value)
  3067. #qemu_allowed_storage_drivers=
  3068.  
  3069.  
  3070. [matchmaker_redis]
  3071.  
  3072. #
  3073. # Options defined in oslo.messaging
  3074. #
  3075.  
  3076. # Host to locate redis. (string value)
  3077. #host=127.0.0.1
  3078.  
  3079. # Use this port to connect to redis host. (integer value)
  3080. #port=6379
  3081.  
  3082. # Password for Redis server (optional). (string value)
  3083. #password=<None>
  3084.  
  3085.  
  3086. [matchmaker_ring]
  3087.  
  3088. #
  3089. # Options defined in oslo.messaging
  3090. #
  3091.  
  3092. # Matchmaker ring file (JSON). (string value)
  3093. # Deprecated group;name - DEFAULT;matchmaker_ringfile
  3094. #ringfile=/etc/oslo/matchmaker_ring.json
  3095.  
  3096.  
  3097. [metrics]
  3098.  
  3099. #
  3100. # Options defined in nova.scheduler.weights.metrics
  3101. #
  3102.  
  3103. # Multiplier used for weighing metrics. (floating point value)
  3104. #weight_multiplier=1.0
  3105.  
  3106. # How the metrics are going to be weighed. This should be in
  3107. # the form of "<name1>=<ratio1>, <name2>=<ratio2>, ...", where
  3108. # <nameX> is one of the metrics to be weighed, and <ratioX> is
  3109. # the corresponding ratio. So for "name1=1.0, name2=-1.0" The
  3110. # final weight would be name1.value * 1.0 + name2.value *
  3111. # -1.0. (list value)
  3112. #weight_setting=
  3113.  
  3114. # How to treat the unavailable metrics. When a metric is NOT
  3115. # available for a host, if it is set to be True, it would
  3116. # raise an exception, so it is recommended to use the
  3117. # scheduler filter MetricFilter to filter out those hosts. If
  3118. # it is set to be False, the unavailable metric would be
  3119. # treated as a negative factor in weighing process, the
  3120. # returned value would be set by the option
  3121. # weight_of_unavailable. (boolean value)
  3122. #required=true
  3123.  
  3124. # The final weight value to be returned if required is set to
  3125. # False and any one of the metrics set by weight_setting is
  3126. # unavailable. (floating point value)
  3127. #weight_of_unavailable=-10000.0
  3128.  
  3129.  
  3130. [neutron]
  3131.  
  3132. url = http://192.168.16.60:9696
  3133. auth_strategy = keystone
  3134. admin_auth_url = http://192.168.16.60:35357/v2.0
  3135. admin_tenant_name = service
  3136. admin_username = neutron
  3137. admin_password = qwerty
  3138.  
  3139. #
  3140. # Options defined in nova.api.metadata.handler
  3141. #
  3142.  
  3143. # Set flag to indicate Neutron will proxy metadata requests
  3144. # and resolve instance ids. (boolean value)
  3145. # Deprecated group;name - DEFAULT;service_neutron_metadata_proxy
  3146. #service_metadata_proxy=false
  3147.  
  3148. # Shared secret to validate proxies Neutron metadata requests
  3149. # (string value)
  3150. # Deprecated group;name - DEFAULT;neutron_metadata_proxy_shared_secret
  3151. #metadata_proxy_shared_secret=
  3152.  
  3153.  
  3154. #
  3155. # Options defined in nova.network.neutronv2.api
  3156. #
  3157.  
  3158. # URL for connecting to neutron (string value)
  3159. # Deprecated group;name - DEFAULT;neutron_url
  3160. #url=http://127.0.0.1:9696
  3161.  
  3162. # Timeout value for connecting to neutron in seconds (integer
  3163. # value)
  3164. # Deprecated group;name - DEFAULT;neutron_url_timeout
  3165. #url_timeout=30
  3166.  
  3167. # User id for connecting to neutron in admin context (string
  3168. # value)
  3169. #admin_user_id=<None>
  3170.  
  3171. # Username for connecting to neutron in admin context (string
  3172. # value)
  3173. # Deprecated group;name - DEFAULT;neutron_admin_username
  3174. #admin_username=<None>
  3175.  
  3176. # Password for connecting to neutron in admin context (string
  3177. # value)
  3178. # Deprecated group;name - DEFAULT;neutron_admin_password
  3179. #admin_password=<None>
  3180.  
  3181. # Tenant id for connecting to neutron in admin context (string
  3182. # value)
  3183. # Deprecated group;name - DEFAULT;neutron_admin_tenant_id
  3184. #admin_tenant_id=<None>
  3185.  
  3186. # Tenant name for connecting to neutron in admin context. This
  3187. # option will be ignored if neutron_admin_tenant_id is set.
  3188. # Note that with Keystone V3 tenant names are only unique
  3189. # within a domain. (string value)
  3190. # Deprecated group;name - DEFAULT;neutron_admin_tenant_name
  3191. #admin_tenant_name=<None>
  3192.  
  3193. # Region name for connecting to neutron in admin context
  3194. # (string value)
  3195. # Deprecated group;name - DEFAULT;neutron_region_name
  3196. #region_name=<None>
  3197.  
  3198. # Authorization URL for connecting to neutron in admin context
  3199. # (string value)
  3200. # Deprecated group;name - DEFAULT;neutron_admin_auth_url
  3201. #admin_auth_url=http://localhost:5000/v2.0
  3202.  
  3203. # If set, ignore any SSL validation issues (boolean value)
  3204. # Deprecated group;name - DEFAULT;neutron_api_insecure
  3205. #api_insecure=false
  3206.  
  3207. # Authorization strategy for connecting to neutron in admin
  3208. # context (string value)
  3209. # Deprecated group;name - DEFAULT;neutron_auth_strategy
  3210. #auth_strategy=keystone
  3211.  
  3212. # Name of Integration Bridge used by Open vSwitch (string
  3213. # value)
  3214. # Deprecated group;name - DEFAULT;neutron_ovs_bridge
  3215. #ovs_bridge=br-int
  3216.  
  3217. # Number of seconds before querying neutron for extensions
  3218. # (integer value)
  3219. # Deprecated group;name - DEFAULT;neutron_extension_sync_interval
  3220. #extension_sync_interval=600
  3221.  
  3222. # Location of CA certificates file to use for neutron client
  3223. # requests. (string value)
  3224. # Deprecated group;name - DEFAULT;neutron_ca_certificates_file
  3225. #ca_certificates_file=<None>
  3226.  
  3227. # Allow an instance to have multiple vNICs attached to the
  3228. # same Neutron network. (boolean value)
  3229. #allow_duplicate_networks=false
  3230.  
  3231.  
  3232. [osapi_v3]
  3233.  
  3234. #
  3235. # Options defined in nova.api.openstack
  3236. #
  3237.  
  3238. # Whether the V3 API is enabled or not (boolean value)
  3239. #enabled=false
  3240.  
  3241. # A list of v3 API extensions to never load. Specify the
  3242. # extension aliases here. (list value)
  3243. #extensions_blacklist=
  3244.  
  3245. # If the list is not empty then a v3 API extension will only
  3246. # be loaded if it exists in this list. Specify the extension
  3247. # aliases here. (list value)
  3248. #extensions_whitelist=
  3249.  
  3250.  
  3251. [rdp]
  3252.  
  3253. #
  3254. # Options defined in nova.rdp
  3255. #
  3256.  
  3257. # Location of RDP html5 console proxy, in the form
  3258. # "http://127.0.0.1:6083/" (string value)
  3259. #html5_proxy_base_url=http://127.0.0.1:6083/
  3260.  
  3261. # Enable RDP related features (boolean value)
  3262. #enabled=false
  3263.  
  3264.  
  3265. [serial_console]
  3266.  
  3267. #
  3268. # Options defined in nova.cmd.serialproxy
  3269. #
  3270.  
  3271. # Host on which to listen for incoming requests (string value)
  3272. #serialproxy_host=0.0.0.0
  3273.  
  3274. # Port on which to listen for incoming requests (integer
  3275. # value)
  3276. #serialproxy_port=6083
  3277.  
  3278.  
  3279. #
  3280. # Options defined in nova.console.serial
  3281. #
  3282.  
  3283. # Enable serial console related features (boolean value)
  3284. #enabled=false
  3285.  
  3286. # Range of TCP ports to use for serial ports on compute hosts
  3287. # (string value)
  3288. #port_range=10000:20000
  3289.  
  3290. # Location of serial console proxy. (string value)
  3291. #base_url=ws://127.0.0.1:6083/
  3292.  
  3293. # IP address on which instance serial console should listen
  3294. # (string value)
  3295. #listen=127.0.0.1
  3296.  
  3297. # The address to which proxy clients (like nova-serialproxy)
  3298. # should connect (string value)
  3299. #proxyclient_address=127.0.0.1
  3300.  
  3301.  
  3302. [spice]
  3303.  
  3304. #
  3305. # Options defined in nova.cmd.spicehtml5proxy
  3306. #
  3307.  
  3308. # Host on which to listen for incoming requests (string value)
  3309. # Deprecated group;name - DEFAULT;spicehtml5proxy_host
  3310. #html5proxy_host=0.0.0.0
  3311.  
  3312. # Port on which to listen for incoming requests (integer
  3313. # value)
  3314. # Deprecated group;name - DEFAULT;spicehtml5proxy_port
  3315. #html5proxy_port=6082
  3316.  
  3317.  
  3318. #
  3319. # Options defined in nova.spice
  3320. #
  3321.  
  3322. # Location of spice HTML5 console proxy, in the form
  3323. # "http://127.0.0.1:6082/spice_auto.html" (string value)
  3324. #html5proxy_base_url=http://127.0.0.1:6082/spice_auto.html
  3325.  
  3326. # IP address on which instance spice server should listen
  3327. # (string value)
  3328. #server_listen=127.0.0.1
  3329.  
  3330. # The address to which proxy clients (like nova-
  3331. # spicehtml5proxy) should connect (string value)
  3332. #server_proxyclient_address=127.0.0.1
  3333.  
  3334. # Enable spice related features (boolean value)
  3335. #enabled=false
  3336.  
  3337. # Enable spice guest agent support (boolean value)
  3338. #agent_enabled=true
  3339.  
  3340. # Keymap for spice (string value)
  3341. #keymap=en-us
  3342.  
  3343.  
  3344. [ssl]
  3345.  
  3346. #
  3347. # Options defined in nova.openstack.common.sslutils
  3348. #
  3349.  
  3350. # CA certificate file to use to verify connecting clients.
  3351. # (string value)
  3352. #ca_file=<None>
  3353.  
  3354. # Certificate file to use when starting the server securely.
  3355. # (string value)
  3356. #cert_file=<None>
  3357.  
  3358. # Private key file to use when starting the server securely.
  3359. # (string value)
  3360. #key_file=<None>
  3361.  
  3362.  
  3363. [trusted_computing]
  3364.  
  3365. #
  3366. # Options defined in nova.scheduler.filters.trusted_filter
  3367. #
  3368.  
  3369. # Attestation server HTTP (string value)
  3370. #attestation_server=<None>
  3371.  
  3372. # Attestation server Cert file for Identity verification
  3373. # (string value)
  3374. #attestation_server_ca_file=<None>
  3375.  
  3376. # Attestation server port (string value)
  3377. #attestation_port=8443
  3378.  
  3379. # Attestation web API URL (string value)
  3380. #attestation_api_url=/OpenAttestationWebServices/V1.0
  3381.  
  3382. # Attestation authorization blob - must change (string value)
  3383. #attestation_auth_blob=<None>
  3384.  
  3385. # Attestation status cache valid period length (integer value)
  3386. #attestation_auth_timeout=60
  3387.  
  3388. # Disable SSL cert verification for Attestation service
  3389. # (boolean value)
  3390. #attestation_insecure_ssl=false
  3391.  
  3392.  
  3393. [upgrade_levels]
  3394.  
  3395. #
  3396. # Options defined in nova.baserpc
  3397. #
  3398.  
  3399. # Set a version cap for messages sent to the base api in any
  3400. # service (string value)
  3401. #baseapi=<None>
  3402.  
  3403.  
  3404. #
  3405. # Options defined in nova.cells.rpc_driver
  3406. #
  3407.  
  3408. # Set a version cap for messages sent between cells services
  3409. # (string value)
  3410. #intercell=<None>
  3411.  
  3412.  
  3413. #
  3414. # Options defined in nova.cells.rpcapi
  3415. #
  3416.  
  3417. # Set a version cap for messages sent to local cells services
  3418. # (string value)
  3419. #cells=<None>
  3420.  
  3421.  
  3422. #
  3423. # Options defined in nova.cert.rpcapi
  3424. #
  3425.  
  3426. # Set a version cap for messages sent to cert services (string
  3427. # value)
  3428. #cert=<None>
  3429.  
  3430.  
  3431. #
  3432. # Options defined in nova.compute.rpcapi
  3433. #
  3434.  
  3435. # Set a version cap for messages sent to compute services. If
  3436. # you plan to do a live upgrade from havana to icehouse, you
  3437. # should set this option to "icehouse-compat" before beginning
  3438. # the live upgrade procedure. (string value)
  3439. #compute=<None>
  3440.  
  3441.  
  3442. #
  3443. # Options defined in nova.conductor.rpcapi
  3444. #
  3445.  
  3446. # Set a version cap for messages sent to conductor services
  3447. # (string value)
  3448. #conductor=<None>
  3449.  
  3450.  
  3451. #
  3452. # Options defined in nova.console.rpcapi
  3453. #
  3454.  
  3455. # Set a version cap for messages sent to console services
  3456. # (string value)
  3457. #console=<None>
  3458.  
  3459.  
  3460. #
  3461. # Options defined in nova.consoleauth.rpcapi
  3462. #
  3463.  
  3464. # Set a version cap for messages sent to consoleauth services
  3465. # (string value)
  3466. #consoleauth=<None>
  3467.  
  3468.  
  3469. #
  3470. # Options defined in nova.network.rpcapi
  3471. #
  3472.  
  3473. # Set a version cap for messages sent to network services
  3474. # (string value)
  3475. #network=<None>
  3476.  
  3477.  
  3478. #
  3479. # Options defined in nova.scheduler.rpcapi
  3480. #
  3481.  
  3482. # Set a version cap for messages sent to scheduler services
  3483. # (string value)
  3484. #scheduler=<None>
  3485.  
  3486.  
  3487. [vmware]
  3488.  
  3489. #
  3490. # Options defined in nova.virt.vmwareapi.driver
  3491. #
  3492.  
  3493. # Hostname or IP address for connection to VMware VC host.
  3494. # (string value)
  3495. #host_ip=<None>
  3496.  
  3497. # Port for connection to VMware VC host. (integer value)
  3498. #host_port=443
  3499.  
  3500. # Username for connection to VMware VC host. (string value)
  3501. #host_username=<None>
  3502.  
  3503. # Password for connection to VMware VC host. (string value)
  3504. #host_password=<None>
  3505.  
  3506. # Name of a VMware Cluster ComputeResource. (multi valued)
  3507. #cluster_name=<None>
  3508.  
  3509. # Regex to match the name of a datastore. (string value)
  3510. #datastore_regex=<None>
  3511.  
  3512. # The interval used for polling of remote tasks. (floating
  3513. # point value)
  3514. #task_poll_interval=0.5
  3515.  
  3516. # The number of times we retry on failures, e.g., socket
  3517. # error, etc. (integer value)
  3518. #api_retry_count=10
  3519.  
  3520. # VNC starting port (integer value)
  3521. #vnc_port=5900
  3522.  
  3523. # Total number of VNC ports (integer value)
  3524. #vnc_port_total=10000
  3525.  
  3526. # Whether to use linked clone (boolean value)
  3527. #use_linked_clone=true
  3528.  
  3529. # Optional VIM Service WSDL Location e.g
  3530. # http://<server>/vimService.wsdl. Optional over-ride to
  3531. # default location for bug work-arounds (string value)
  3532. #wsdl_location=<None>
  3533.  
  3534.  
  3535. #
  3536. # Options defined in nova.virt.vmwareapi.vif
  3537. #
  3538.  
  3539. # Physical ethernet adapter name for vlan networking (string
  3540. # value)
  3541. #vlan_interface=vmnic0
  3542.  
  3543. # Name of Integration Bridge (string value)
  3544. #integration_bridge=br-int
  3545.  
  3546.  
  3547. #
  3548. # Options defined in nova.virt.vmwareapi.vim_util
  3549. #
  3550.  
  3551. # The maximum number of ObjectContent data objects that should
  3552. # be returned in a single result. A positive value will cause
  3553. # the operation to suspend the retrieval when the count of
  3554. # objects reaches the specified maximum. The server may still
  3555. # limit the count to something less than the configured value.
  3556. # Any remaining objects may be retrieved with additional
  3557. # requests. (integer value)
  3558. #maximum_objects=100
  3559.  
  3560.  
  3561. [xenserver]
  3562.  
  3563. #
  3564. # Options defined in nova.virt.xenapi.agent
  3565. #
  3566.  
  3567. # Number of seconds to wait for agent reply (integer value)
  3568. #agent_timeout=30
  3569.  
  3570. # Number of seconds to wait for agent to be fully operational
  3571. # (integer value)
  3572. #agent_version_timeout=300
  3573.  
  3574. # Number of seconds to wait for agent reply to resetnetwork
  3575. # request (integer value)
  3576. #agent_resetnetwork_timeout=60
  3577.  
  3578. # Specifies the path in which the XenAPI guest agent should be
  3579. # located. If the agent is present, network configuration is
  3580. # not injected into the image. Used if
  3581. # compute_driver=xenapi.XenAPIDriver and flat_injected=True
  3582. # (string value)
  3583. #agent_path=usr/sbin/xe-update-networking
  3584.  
  3585. # Disables the use of the XenAPI agent in any image regardless
  3586. # of what image properties are present. (boolean value)
  3587. #disable_agent=false
  3588.  
  3589. # Determines if the XenAPI agent should be used when the image
  3590. # used does not contain a hint to declare if the agent is
  3591. # present or not. The hint is a glance property
  3592. # "xenapi_use_agent" that has the value "True" or "False".
  3593. # Note that waiting for the agent when it is not present will
  3594. # significantly increase server boot times. (boolean value)
  3595. #use_agent_default=false
  3596.  
  3597.  
  3598. #
  3599. # Options defined in nova.virt.xenapi.client.session
  3600. #
  3601.  
  3602. # Timeout in seconds for XenAPI login. (integer value)
  3603. #login_timeout=10
  3604.  
  3605. # Maximum number of concurrent XenAPI connections. Used only
  3606. # if compute_driver=xenapi.XenAPIDriver (integer value)
  3607. #connection_concurrent=5
  3608.  
  3609.  
  3610. #
  3611. # Options defined in nova.virt.xenapi.driver
  3612. #
  3613.  
  3614. # URL for connection to XenServer/Xen Cloud Platform. A
  3615. # special value of unix://local can be used to connect to the
  3616. # local unix socket. Required if
  3617. # compute_driver=xenapi.XenAPIDriver (string value)
  3618. #connection_url=<None>
  3619.  
  3620. # Username for connection to XenServer/Xen Cloud Platform.
  3621. # Used only if compute_driver=xenapi.XenAPIDriver (string
  3622. # value)
  3623. #connection_username=root
  3624.  
  3625. # Password for connection to XenServer/Xen Cloud Platform.
  3626. # Used only if compute_driver=xenapi.XenAPIDriver (string
  3627. # value)
  3628. #connection_password=<None>
  3629.  
  3630. # The interval used for polling of coalescing vhds. Used only
  3631. # if compute_driver=xenapi.XenAPIDriver (floating point value)
  3632. #vhd_coalesce_poll_interval=5.0
  3633.  
  3634. # Ensure compute service is running on host XenAPI connects
  3635. # to. (boolean value)
  3636. #check_host=true
  3637.  
  3638. # Max number of times to poll for VHD to coalesce. Used only
  3639. # if compute_driver=xenapi.XenAPIDriver (integer value)
  3640. #vhd_coalesce_max_attempts=20
  3641.  
  3642. # Base path to the storage repository (string value)
  3643. #sr_base_path=/var/run/sr-mount
  3644.  
  3645. # The iSCSI Target Host (string value)
  3646. #target_host=<None>
  3647.  
  3648. # The iSCSI Target Port, default is port 3260 (string value)
  3649. #target_port=3260
  3650.  
  3651. # IQN Prefix (string value)
  3652. #iqn_prefix=iqn.2010-10.org.openstack
  3653.  
  3654. # Used to enable the remapping of VBD dev (Works around an
  3655. # issue in Ubuntu Maverick) (boolean value)
  3656. #remap_vbd_dev=false
  3657.  
  3658. # Specify prefix to remap VBD dev to (ex. /dev/xvdb ->
  3659. # /dev/sdb) (string value)
  3660. #remap_vbd_dev_prefix=sd
  3661.  
  3662.  
  3663. #
  3664. # Options defined in nova.virt.xenapi.image.bittorrent
  3665. #
  3666.  
  3667. # Base URL for torrent files. (string value)
  3668. #torrent_base_url=<None>
  3669.  
  3670. # Probability that peer will become a seeder. (1.0 = 100%)
  3671. # (floating point value)
  3672. #torrent_seed_chance=1.0
  3673.  
  3674. # Number of seconds after downloading an image via BitTorrent
  3675. # that it should be seeded for other peers. (integer value)
  3676. #torrent_seed_duration=3600
  3677.  
  3678. # Cached torrent files not accessed within this number of
  3679. # seconds can be reaped (integer value)
  3680. #torrent_max_last_accessed=86400
  3681.  
  3682. # Beginning of port range to listen on (integer value)
  3683. #torrent_listen_port_start=6881
  3684.  
  3685. # End of port range to listen on (integer value)
  3686. #torrent_listen_port_end=6891
  3687.  
  3688. # Number of seconds a download can remain at the same progress
  3689. # percentage w/o being considered a stall (integer value)
  3690. #torrent_download_stall_cutoff=600
  3691.  
  3692. # Maximum number of seeder processes to run concurrently
  3693. # within a given dom0. (-1 = no limit) (integer value)
  3694. #torrent_max_seeder_processes_per_host=1
  3695.  
  3696.  
  3697. #
  3698. # Options defined in nova.virt.xenapi.pool
  3699. #
  3700.  
  3701. # To use for hosts with different CPUs (boolean value)
  3702. #use_join_force=true
  3703.  
  3704.  
  3705. #
  3706. # Options defined in nova.virt.xenapi.vif
  3707. #
  3708.  
  3709. # Name of Integration Bridge used by Open vSwitch (string
  3710. # value)
  3711. #ovs_integration_bridge=xapi1
  3712.  
  3713.  
  3714. #
  3715. # Options defined in nova.virt.xenapi.vm_utils
  3716. #
  3717.  
  3718. # Cache glance images locally. `all` will cache all images,
  3719. # `some` will only cache images that have the image_property
  3720. # `cache_in_nova=True`, and `none` turns off caching entirely
  3721. # (string value)
  3722. #cache_images=all
  3723.  
  3724. # Compression level for images, e.g., 9 for gzip -9. Range is
  3725. # 1-9, 9 being most compressed but most CPU intensive on dom0.
  3726. # (integer value)
  3727. #image_compression_level=<None>
  3728.  
  3729. # Default OS type (string value)
  3730. #default_os_type=linux
  3731.  
  3732. # Time to wait for a block device to be created (integer
  3733. # value)
  3734. #block_device_creation_timeout=10
  3735.  
  3736. # Maximum size in bytes of kernel or ramdisk images (integer
  3737. # value)
  3738. #max_kernel_ramdisk_size=16777216
  3739.  
  3740. # Filter for finding the SR to be used to install guest
  3741. # instances on. To use the Local Storage in default
  3742. # XenServer/XCP installations set this flag to other-config
  3743. # :i18n-key=local-storage. To select an SR with a different
  3744. # matching criteria, you could set it to other-
  3745. # config:my_favorite_sr=true. On the other hand, to fall back
  3746. # on the Default SR, as displayed by XenCenter, set this flag
  3747. # to: default-sr:true (string value)
  3748. #sr_matching_filter=default-sr:true
  3749.  
  3750. # Whether to use sparse_copy for copying data on a resize down
  3751. # (False will use standard dd). This speeds up resizes down
  3752. # considerably since large runs of zeros won't have to be
  3753. # rsynced (boolean value)
  3754. #sparse_copy=true
  3755.  
  3756. # Maximum number of retries to unplug VBD (integer value)
  3757. #num_vbd_unplug_retries=10
  3758.  
  3759. # Whether or not to download images via Bit Torrent
  3760. # (all|some|none). (string value)
  3761. #torrent_images=none
  3762.  
  3763. # Name of network to use for booting iPXE ISOs (string value)
  3764. #ipxe_network_name=<None>
  3765.  
  3766. # URL to the iPXE boot menu (string value)
  3767. #ipxe_boot_menu_url=<None>
  3768.  
  3769. # Name and optionally path of the tool used for ISO image
  3770. # creation (string value)
  3771. #ipxe_mkisofs_cmd=mkisofs
  3772.  
  3773.  
  3774. #
  3775. # Options defined in nova.virt.xenapi.vmops
  3776. #
  3777.  
  3778. # Number of seconds to wait for instance to go to running
  3779. # state (integer value)
  3780. #running_timeout=60
  3781.  
  3782. # The XenAPI VIF driver using XenServer Network APIs. (string
  3783. # value)
  3784. #vif_driver=nova.virt.xenapi.vif.XenAPIBridgeDriver
  3785.  
  3786. # Dom0 plugin driver used to handle image uploads. (string
  3787. # value)
  3788. #image_upload_handler=nova.virt.xenapi.image.glance.GlanceStore
  3789.  
  3790.  
  3791. #
  3792. # Options defined in nova.virt.xenapi.volume_utils
  3793. #
  3794.  
  3795. # Number of seconds to wait for an SR to settle if the VDI
  3796. # does not exist when first introduced (integer value)
  3797. #introduce_vdi_retry_wait=20
  3798.  
  3799.  
  3800. [zookeeper]
  3801.  
  3802. #
  3803. # Options defined in nova.servicegroup.drivers.zk
  3804. #
  3805.  
  3806. # The ZooKeeper addresses for servicegroup service in the
  3807. # format of host1:port,host2:port,host3:port (string value)
  3808. #address=<None>
  3809.  
  3810. # The recv_timeout parameter for the zk session (integer
  3811. # value)
  3812. #recv_timeout=4000
  3813.  
  3814. # The prefix used in ZooKeeper to store ephemeral nodes
  3815. # (string value)
  3816. #sg_prefix=/servicegroups
  3817.  
  3818. # Number of seconds to wait until retrying to join the session
  3819. # (integer value)
  3820. #sg_retry_interval=5
Advertisement
Add Comment
Please, Sign In to add comment