Advertisement
Guest User

Untitled

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