Advertisement
Guest User

Untitled

a guest
Jun 16th, 2016
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.71 KB | None | 0 0
  1. [DEFAULT]
  2.  
  3. #
  4. # From oslo.log
  5. #
  6.  
  7. # If set to true, the logging level will be set to DEBUG instead of
  8. # the default INFO level. (boolean value)
  9. # Note: This option can be changed without restarting.
  10. #debug = false
  11.  
  12. # DEPRECATED: If set to false, the logging level will be set to
  13. # WARNING instead of the default INFO level. (boolean value)
  14. # This option is deprecated for removal.
  15. # Its value may be silently ignored in the future.
  16. #verbose = true
  17.  
  18. # The name of a logging configuration file. This file is appended to
  19. # any existing logging configuration files. For details about logging
  20. # configuration files, see the Python logging module documentation.
  21. # Note that when logging configuration files are used then all logging
  22. # configuration is set in the configuration file and other logging
  23. # configuration options are ignored (for example,
  24. # logging_context_format_string). (string value)
  25. # Deprecated group/name - [DEFAULT]/log_config
  26. #log_config_append = <None>
  27.  
  28. # Defines the format string for %%(asctime)s in log records. Default:
  29. # %(default)s . This option is ignored if log_config_append is set.
  30. # (string value)
  31. #log_date_format = %Y-%m-%d %H:%M:%S
  32.  
  33. # (Optional) Name of log file to send logging output to. If no default
  34. # is set, logging will go to stderr as defined by use_stderr. This
  35. # option is ignored if log_config_append is set. (string value)
  36. # Deprecated group/name - [DEFAULT]/logfile
  37. #log_file = <None>
  38.  
  39. # (Optional) The base directory used for relative log_file paths.
  40. # This option is ignored if log_config_append is set. (string value)
  41. # Deprecated group/name - [DEFAULT]/logdir
  42. #log_dir = <None>
  43.  
  44. # Uses logging handler designed to watch file system. When log file is
  45. # moved or removed this handler will open a new log file with
  46. # specified path instantaneously. It makes sense only if log_file
  47. # option is specified and Linux platform is used. This option is
  48. # ignored if log_config_append is set. (boolean value)
  49. #watch_log_file = false
  50.  
  51. # Use syslog for logging. Existing syslog format is DEPRECATED and
  52. # will be changed later to honor RFC5424. This option is ignored if
  53. # log_config_append is set. (boolean value)
  54. #use_syslog = false
  55.  
  56. # Syslog facility to receive log lines. This option is ignored if
  57. # log_config_append is set. (string value)
  58. #syslog_log_facility = LOG_USER
  59.  
  60. # Log output to standard error. This option is ignored if
  61. # log_config_append is set. (boolean value)
  62. #use_stderr = true
  63.  
  64. # Format string to use for log messages with context. (string value)
  65. #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  66.  
  67. # Format string to use for log messages when context is undefined.
  68. # (string value)
  69. #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  70.  
  71. # Additional data to append to log message when logging level for the
  72. # message is DEBUG. (string value)
  73. #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
  74.  
  75. # Prefix each line of exception output with this format. (string
  76. # value)
  77. #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
  78.  
  79. # Defines the format string for %(user_identity)s that is used in
  80. # logging_context_format_string. (string value)
  81. #logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
  82.  
  83. # List of package logging levels in logger=LEVEL pairs. This option is
  84. # ignored if log_config_append is set. (list value)
  85. #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,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN,taskflow=WARN,keystoneauth=WARN,oslo.cache=INFO,dogpile.core.dogpile=INFO
  86.  
  87. # Enables or disables publication of error events. (boolean value)
  88. #publish_errors = false
  89.  
  90. # The format for an instance that is passed with the log message.
  91. # (string value)
  92. #instance_format = "[instance: %(uuid)s] "
  93.  
  94. # The format for an instance UUID that is passed with the log message.
  95. # (string value)
  96. #instance_uuid_format = "[instance: %(uuid)s] "
  97.  
  98. # Enables or disables fatal status of deprecations. (boolean value)
  99. #fatal_deprecations = false
  100.  
  101. #
  102. # From tempest.config
  103. #
  104.  
  105. # Prefix to be added when generating the name for test resources. It
  106. # can be used to discover all resources associated with a specific
  107. # test run when running tempest on a real-life cloud (string value)
  108. #resources_prefix = tempest
  109.  
  110.  
  111. [auth]
  112.  
  113. admin_tenant_name = admin
  114. admin_username = admin
  115. admin_password = password
  116.  
  117. #
  118. # From tempest.config
  119. #
  120.  
  121. # Path to the yaml file that contains the list of credentials to use
  122. # for running tests. If used when running in parallel you have to make
  123. # sure sufficient credentials are provided in the accounts file. For
  124. # example if no tests with roles are being run it requires at least `2
  125. # * CONC` distinct accounts configured in the `test_accounts_file`,
  126. # with CONC == the number of concurrent test processes. (string value)
  127. #test_accounts_file = <None>
  128.  
  129. # Allows test cases to create/destroy projects and users. This option
  130. # requires that OpenStack Identity API admin credentials are known. If
  131. # false, isolated test cases and parallel execution, can still be
  132. # achieved configuring a list of test accounts (boolean value)
  133. # Deprecated group/name - [auth]/allow_tenant_isolation
  134. # Deprecated group/name - [compute]/allow_tenant_isolation
  135. # Deprecated group/name - [orchestration]/allow_tenant_isolation
  136. #use_dynamic_credentials = true
  137.  
  138. # Roles to assign to all users created by tempest (list value)
  139. #tempest_roles =
  140.  
  141. # Default domain used when getting v3 credentials. This is the name
  142. # keystone uses for v2 compatibility. (string value)
  143. # Deprecated group/name - [auth]/tenant_isolation_domain_name
  144. #default_credentials_domain_name = Default
  145.  
  146. # If use_dynamic_credentials is set to True and Neutron is enabled
  147. # Tempest will try to create a usable network, subnet, and router when
  148. # needed for each project it creates. However in some neutron
  149. # configurations, like with VLAN provider networks, this doesn't work.
  150. # So if set to False the isolated networks will not be created
  151. # (boolean value)
  152. #create_isolated_networks = true
  153.  
  154. # Username for an administrative user. This is needed for
  155. # authenticating requests made by project isolation to create users
  156. # and projects (string value)
  157. # Deprecated group/name - [identity]/admin_username
  158. #admin_username = <None>
  159.  
  160. # Project name to use for an administrative user. This is needed for
  161. # authenticating requests made by project isolation to create users
  162. # and projects (string value)
  163. # Deprecated group/name - [auth]/admin_tenant_name
  164. # Deprecated group/name - [identity]/admin_tenant_name
  165. #admin_project_name = <None>
  166.  
  167. # Password to use for an administrative user. This is needed for
  168. # authenticating requests made by project isolation to create users
  169. # and projects (string value)
  170. # Deprecated group/name - [identity]/admin_password
  171. #admin_password = <None>
  172.  
  173. # Admin domain name for authentication (Keystone V3).The same domain
  174. # applies to user and project (string value)
  175. # Deprecated group/name - [identity]/admin_domain_name
  176. #admin_domain_name = <None>
  177.  
  178.  
  179. [baremetal]
  180. # When enabling baremetal tests, Nova must be configured to use the
  181. # Ironic driver. The following parameters for the [compute] section
  182. # must be disabled: console_output, interface_attach, live_migration,
  183. # pause, rescue, resize shelve, snapshot, and suspend
  184.  
  185. #
  186. # From tempest.config
  187. #
  188.  
  189. # Catalog type of the baremetal provisioning service (string value)
  190. #catalog_type = baremetal
  191.  
  192. # Whether the Ironic nova-compute driver is enabled (boolean value)
  193. #driver_enabled = false
  194.  
  195. # Driver name which Ironic uses (string value)
  196. #driver = fake
  197.  
  198. # The endpoint type to use for the baremetal provisioning service
  199. # (string value)
  200. # Allowed values: public, admin, internal, publicURL, adminURL, internalURL
  201. #endpoint_type = publicURL
  202.  
  203. # Timeout for Ironic node to completely provision (integer value)
  204. #active_timeout = 300
  205.  
  206. # Timeout for association of Nova instance and Ironic node (integer
  207. # value)
  208. #association_timeout = 30
  209.  
  210. # Timeout for Ironic power transitions. (integer value)
  211. #power_timeout = 60
  212.  
  213. # Timeout for unprovisioning an Ironic node. Takes longer since Kilo
  214. # as Ironic performs an extra step in Node cleaning. (integer value)
  215. #unprovision_timeout = 300
  216.  
  217.  
  218. [compute]
  219.  
  220. #
  221. # From tempest.config
  222. #
  223.  
  224. # Valid primary image reference to be used in tests. This is a
  225. # required option (string value)
  226. #image_ref = <None>
  227.  
  228. # Valid secondary image reference to be used in tests. This is a
  229. # required option, but if only one image is available duplicate the
  230. # value of image_ref above (string value)
  231. #image_ref_alt = <None>
  232.  
  233. # Valid primary flavor to use in tests. (string value)
  234. #flavor_ref = 1
  235.  
  236. # Valid secondary flavor to be used in tests. (string value)
  237. #flavor_ref_alt = 2
  238.  
  239. # Time in seconds between build status checks. (integer value)
  240. #build_interval = 1
  241.  
  242. # Timeout in seconds to wait for an instance to build. Other services
  243. # that do not define build_timeout will inherit this value. (integer
  244. # value)
  245. #build_timeout = 300
  246.  
  247. # Additional wait time for clean state, when there is no OS-EXT-STS
  248. # extension available (integer value)
  249. #ready_wait = 0
  250.  
  251. # Name of the fixed network that is visible to all test projects. If
  252. # multiple networks are available for a project, this is the network
  253. # which will be used for creating servers if tempest does not create a
  254. # network or s network is not specified elsewhere. It may be used for
  255. # ssh validation only if floating IPs are disabled. (string value)
  256. #fixed_network_name = <None>
  257.  
  258. # Catalog type of the Compute service. (string value)
  259. #catalog_type = compute
  260.  
  261. # The compute region name to use. If empty, the value of
  262. # identity.region is used instead. If no such region is found in the
  263. # service catalog, the first found one is used. (string value)
  264. #region =
  265.  
  266. # The endpoint type to use for the compute service. (string value)
  267. # Allowed values: public, admin, internal, publicURL, adminURL, internalURL
  268. #endpoint_type = publicURL
  269.  
  270. # Expected device name when a volume is attached to an instance
  271. # (string value)
  272. #volume_device_name = vdb
  273.  
  274. # Time in seconds before a shelved instance is eligible for removing
  275. # from a host. -1 never offload, 0 offload when shelved. This time
  276. # should be the same as the time of nova.conf, and some tests will run
  277. # for as long as the time. (integer value)
  278. #shelved_offload_time = 0
  279.  
  280. # The minimum number of compute nodes expected. This will be utilized
  281. # by some multinode specific tests to ensure that requests match the
  282. # expected size of the cluster you are testing with. (integer value)
  283. #min_compute_nodes = 1
  284.  
  285. # Lower version of the test target microversion range. The format is
  286. # 'X.Y', where 'X' and 'Y' are int values. Tempest selects tests based
  287. # on the range between min_microversion and max_microversion. If both
  288. # values are not specified, Tempest avoids tests which require a
  289. # microversion. Valid values are string with format 'X.Y' or string
  290. # 'latest' (string value)
  291. # Deprecated group/name - [compute-feature-enabled]/min_microversion
  292. #min_microversion = <None>
  293.  
  294. # Upper version of the test target microversion range. The format is
  295. # 'X.Y', where 'X' and 'Y' are int values. Tempest selects tests based
  296. # on the range between min_microversion and max_microversion. If both
  297. # values are not specified, Tempest avoids tests which require a
  298. # microversion. Valid values are string with format 'X.Y' or string
  299. # 'latest' (string value)
  300. # Deprecated group/name - [compute-feature-enabled]/max_microversion
  301. #max_microversion = <None>
  302.  
  303.  
  304. [compute-feature-enabled]
  305.  
  306. #
  307. # From tempest.config
  308. #
  309.  
  310. # If false, skip disk config tests (boolean value)
  311. #disk_config = true
  312.  
  313. # A list of enabled compute extensions with a special entry all which
  314. # indicates every extension is enabled. Each extension should be
  315. # specified with alias name. Empty list indicates all extensions are
  316. # disabled (list value)
  317. #api_extensions = all
  318.  
  319. # Does the test environment support changing the admin password?
  320. # (boolean value)
  321. #change_password = false
  322.  
  323. # Does the test environment support obtaining instance serial console
  324. # output? (boolean value)
  325. #console_output = true
  326.  
  327. # Does the test environment support resizing? (boolean value)
  328. #resize = false
  329.  
  330. # Does the test environment support pausing? (boolean value)
  331. #pause = true
  332.  
  333. # Does the test environment support shelving/unshelving? (boolean
  334. # value)
  335. #shelve = true
  336.  
  337. # Does the test environment support suspend/resume? (boolean value)
  338. #suspend = true
  339.  
  340. # Does the test environment support live migration available? (boolean
  341. # value)
  342. #live_migration = true
  343.  
  344. # Does the test environment support metadata service? Ignored unless
  345. # validation.run_validation=true. (boolean value)
  346. #metadata_service = true
  347.  
  348. # Does the test environment use block devices for live migration
  349. # (boolean value)
  350. #block_migration_for_live_migration = false
  351.  
  352. # Does the test environment block migration support cinder iSCSI
  353. # volumes. Note, libvirt doesn't support this, see
  354. # https://bugs.launchpad.net/nova/+bug/1398999 (boolean value)
  355. #block_migrate_cinder_iscsi = false
  356.  
  357. # Enable VNC console. This configuration value should be same as
  358. # [nova.vnc]->vnc_enabled in nova.conf (boolean value)
  359. #vnc_console = false
  360.  
  361. # Enable Spice console. This configuration value should be same as
  362. # [nova.spice]->enabled in nova.conf (boolean value)
  363. #spice_console = false
  364.  
  365. # Enable RDP console. This configuration value should be same as
  366. # [nova.rdp]->enabled in nova.conf (boolean value)
  367. #rdp_console = false
  368.  
  369. # Does the test environment support instance rescue mode? (boolean
  370. # value)
  371. #rescue = true
  372.  
  373. # Enables returning of the instance password by the relevant server
  374. # API calls such as create, rebuild or rescue. (boolean value)
  375. #enable_instance_password = true
  376.  
  377. # Does the test environment support dynamic network interface
  378. # attachment? (boolean value)
  379. #interface_attach = true
  380.  
  381. # Does the test environment support creating snapshot images of
  382. # running instances? (boolean value)
  383. #snapshot = true
  384.  
  385. # Does the test environment have the nova cert running? (boolean
  386. # value)
  387. #nova_cert = true
  388.  
  389. # Does the test environment support server personality (boolean value)
  390. #personality = true
  391.  
  392. # Does the test environment support attaching an encrypted volume to a
  393. # running server instance? This may depend on the combination of
  394. # compute_driver in nova and the volume_driver(s) in cinder. (boolean
  395. # value)
  396. #attach_encrypted_volume = true
  397.  
  398. # Enable special configuration drive with metadata. (boolean value)
  399. #config_drive = true
  400.  
  401. # A list of enabled filters that nova will accept as hints to the
  402. # scheduler when creating a server. A special entry 'all' indicates
  403. # all filters are enabled. Empty list indicates all filters are
  404. # disabled. The full available list of filters is in nova.conf:
  405. # DEFAULT.scheduler_available_filters (list value)
  406. #scheduler_available_filters = all
  407.  
  408.  
  409. [data-processing]
  410.  
  411. #
  412. # From tempest.config
  413. #
  414.  
  415. # Catalog type of the data processing service. (string value)
  416. # Deprecated group/name - [data_processing]/catalog_type
  417. #catalog_type = data-processing
  418.  
  419. # The endpoint type to use for the data processing service. (string
  420. # value)
  421. # Allowed values: public, admin, internal, publicURL, adminURL, internalURL
  422. # Deprecated group/name - [data_processing]/endpoint_type
  423. #endpoint_type = publicURL
  424.  
  425.  
  426. [data-processing-feature-enabled]
  427.  
  428. #
  429. # From tempest.config
  430. #
  431.  
  432. # List of enabled data processing plugins (list value)
  433. # Deprecated group/name - [data_processing-feature-enabled]/plugins
  434. #plugins = vanilla,cdh
  435.  
  436.  
  437. [database]
  438.  
  439. #
  440. # From tempest.config
  441. #
  442.  
  443. # Catalog type of the Database service. (string value)
  444. #catalog_type = database
  445.  
  446. # Valid primary flavor to use in database tests. (string value)
  447. #db_flavor_ref = 1
  448.  
  449. # Current database version to use in database tests. (string value)
  450. #db_current_version = v1.0
  451.  
  452.  
  453. [debug]
  454.  
  455. #
  456. # From tempest.config
  457. #
  458.  
  459. # A regex to determine which requests should be traced.
  460. #
  461. # This is a regex to match the caller for rest client requests to be
  462. # able to
  463. # selectively trace calls out of specific classes and methods. It
  464. # largely
  465. # exists for test development, and is not expected to be used in a
  466. # real deploy
  467. # of tempest. This will be matched against the discovered
  468. # ClassName:method
  469. # in the test environment.
  470. #
  471. # Expected values for this field are:
  472. #
  473. # * ClassName:test_method_name - traces one test_method
  474. # * ClassName:setUp(Class) - traces specific setup functions
  475. # * ClassName:tearDown(Class) - traces specific teardown functions
  476. # * ClassName:_run_cleanups - traces the cleanup functions
  477. #
  478. # If nothing is specified, this feature is not enabled. To trace
  479. # everything
  480. # specify .* as the regex.
  481. # (string value)
  482. #trace_requests =
  483.  
  484.  
  485. [identity]
  486.  
  487. uri = http://192.168.99.11:5000/v2.0
  488. auth_version = v2
  489.  
  490. #
  491. # From tempest.config
  492. #
  493.  
  494. # Catalog type of the Identity service. (string value)
  495. #catalog_type = identity
  496.  
  497. # Set to True if using self-signed SSL certificates. (boolean value)
  498. #disable_ssl_certificate_validation = false
  499.  
  500. # Specify a CA bundle file to use in verifying a TLS (https) server
  501. # certificate. (string value)
  502. #ca_certificates_file = <None>
  503.  
  504. # Full URI of the OpenStack Identity API (Keystone), v2 (string value)
  505. #uri = <None>
  506.  
  507. # Full URI of the OpenStack Identity API (Keystone), v3 (string value)
  508. #uri_v3 = <None>
  509.  
  510. # Identity API version to be used for authentication for API tests.
  511. # (string value)
  512. #auth_version = v2
  513.  
  514. # The identity region name to use. Also used as the other services'
  515. # region name unless they are set explicitly. If no such region is
  516. # found in the service catalog, the first found one is used. (string
  517. # value)
  518. #region = RegionOne
  519.  
  520. # The admin endpoint type to use for OpenStack Identity (Keystone) API
  521. # v2 (string value)
  522. # Allowed values: public, admin, internal, publicURL, adminURL, internalURL
  523. #v2_admin_endpoint_type = adminURL
  524.  
  525. # The public endpoint type to use for OpenStack Identity (Keystone)
  526. # API v2 (string value)
  527. # Allowed values: public, admin, internal, publicURL, adminURL, internalURL
  528. # Deprecated group/name - [identity]/endpoint_type
  529. #v2_public_endpoint_type = publicURL
  530.  
  531. # The endpoint type to use for OpenStack Identity (Keystone) API v3
  532. # (string value)
  533. # Allowed values: public, admin, internal, publicURL, adminURL, internalURL
  534. #v3_endpoint_type = adminURL
  535.  
  536. # Role required to administrate keystone. (string value)
  537. #admin_role = admin
  538.  
  539. # ID of the default domain (string value)
  540. #default_domain_id = default
  541.  
  542. # Whether keystone identity v3 policy required a domain scoped token
  543. # to use admin APIs (boolean value)
  544. #admin_domain_scope = false
  545.  
  546.  
  547. [identity-feature-enabled]
  548.  
  549. #
  550. # From tempest.config
  551. #
  552.  
  553. # Does the identity service have delegation and impersonation enabled
  554. # (boolean value)
  555. #trust = true
  556.  
  557. # Is the v2 identity API enabled (boolean value)
  558. #api_v2 = true
  559.  
  560. # Is the v3 identity API enabled (boolean value)
  561. #api_v3 = true
  562.  
  563. # A list of enabled identity extensions with a special entry all which
  564. # indicates every extension is enabled. Empty list indicates all
  565. # extensions are disabled. To get the list of extensions run:
  566. # 'keystone discover' (list value)
  567. #api_extensions = all
  568.  
  569.  
  570. [image]
  571.  
  572. #
  573. # From tempest.config
  574. #
  575.  
  576. # Catalog type of the Image service. (string value)
  577. #catalog_type = image
  578.  
  579. # The image region name to use. If empty, the value of identity.region
  580. # is used instead. If no such region is found in the service catalog,
  581. # the first found one is used. (string value)
  582. #region =
  583.  
  584. # The endpoint type to use for the image service. (string value)
  585. # Allowed values: public, admin, internal, publicURL, adminURL, internalURL
  586. #endpoint_type = publicURL
  587.  
  588. # http accessible image (string value)
  589. #http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz
  590.  
  591. # Timeout in seconds to wait for an image to become available.
  592. # (integer value)
  593. #build_timeout = 300
  594.  
  595. # Time in seconds between image operation status checks. (integer
  596. # value)
  597. #build_interval = 1
  598.  
  599. # A list of image's container formats users can specify. (list value)
  600. #container_formats = ami,ari,aki,bare,ovf,ova
  601.  
  602. # A list of image's disk formats users can specify. (list value)
  603. #disk_formats = ami,ari,aki,vhd,vmdk,raw,qcow2,vdi,iso
  604.  
  605.  
  606. [image-feature-enabled]
  607.  
  608. #
  609. # From tempest.config
  610. #
  611.  
  612. # Is the v2 image API enabled (boolean value)
  613. #api_v2 = true
  614.  
  615. # Is the v1 image API enabled (boolean value)
  616. #api_v1 = true
  617.  
  618. # Is the deactivate-image feature enabled. The feature has been
  619. # integrated since Kilo. (boolean value)
  620. #deactivate_image = false
  621.  
  622.  
  623. [input-scenario]
  624.  
  625. #
  626. # From tempest.config
  627. #
  628.  
  629. # Matching images become parameters for scenario tests (string value)
  630. #image_regex = ^cirros-0.3.1-x86_64-uec$
  631.  
  632. # Matching flavors become parameters for scenario tests (string value)
  633. #flavor_regex = ^m1.nano$
  634.  
  635. # SSH verification in tests is skippedfor matching images (string
  636. # value)
  637. #non_ssh_image_regex = ^.*[Ww]in.*$
  638.  
  639. # List of user mapped to regex to matching image names. (string value)
  640. #ssh_user_regex = [["^.*[Cc]irros.*$", "cirros"]]
  641.  
  642.  
  643. [negative]
  644.  
  645. #
  646. # From tempest.config
  647. #
  648.  
  649. # Test generator class for all negative tests (string value)
  650. #test_generator = tempest.common.generator.negative_generator.NegativeTestGenerator
  651.  
  652.  
  653. [network]
  654.  
  655. public_network_id = f14c0655-5a02-47c7-89b9-09b6a14c101e
  656.  
  657. #
  658. # From tempest.config
  659. #
  660.  
  661. # Catalog type of the Neutron service. (string value)
  662. #catalog_type = network
  663.  
  664. # The network region name to use. If empty, the value of
  665. # identity.region is used instead. If no such region is found in the
  666. # service catalog, the first found one is used. (string value)
  667. #region =
  668.  
  669. # The endpoint type to use for the network service. (string value)
  670. # Allowed values: public, admin, internal, publicURL, adminURL, internalURL
  671. #endpoint_type = publicURL
  672.  
  673. # The cidr block to allocate project ipv4 subnets from (string value)
  674. # Deprecated group/name - [network]/tenant_network_cidr
  675. #project_network_cidr = 10.100.0.0/16
  676.  
  677. # The mask bits for project ipv4 subnets (integer value)
  678. # Deprecated group/name - [network]/tenant_network_mask_bits
  679. #project_network_mask_bits = 28
  680.  
  681. # The cidr block to allocate project ipv6 subnets from (string value)
  682. # Deprecated group/name - [network]/tenant_network_v6_cidr
  683. #project_network_v6_cidr = 2003::/48
  684.  
  685. # The mask bits for project ipv6 subnets (integer value)
  686. # Deprecated group/name - [network]/tenant_network_v6_mask_bits
  687. #project_network_v6_mask_bits = 64
  688.  
  689. # Whether project networks can be reached directly from the test
  690. # client. This must be set to True when the 'fixed' ssh_connect_method
  691. # is selected. (boolean value)
  692. # Deprecated group/name - [network]/tenant_networks_reachable
  693. #project_networks_reachable = false
  694.  
  695. # Id of the public network that provides external connectivity (string
  696. # value)
  697. #public_network_id =
  698.  
  699. # Default floating network name. Used to allocate floating IPs when
  700. # neutron is enabled. (string value)
  701. #floating_network_name = <None>
  702.  
  703. # Id of the public router that provides external connectivity. This
  704. # should only be used when Neutron's 'allow_overlapping_ips' is set to
  705. # 'False' in neutron.conf. usually not needed past 'Grizzly' release
  706. # (string value)
  707. #public_router_id =
  708.  
  709. # Timeout in seconds to wait for network operation to complete.
  710. # (integer value)
  711. #build_timeout = 300
  712.  
  713. # Time in seconds between network operation status checks. (integer
  714. # value)
  715. #build_interval = 1
  716.  
  717. # List of dns servers which should be used for subnet creation (list
  718. # value)
  719. #dns_servers = 8.8.8.8,8.8.4.4
  720.  
  721. # vnic_type to use when Launching instances with pre-configured ports.
  722. # Supported ports are: ['normal','direct','macvtap'] (string value)
  723. # Allowed values: <None>, normal, direct, macvtap
  724. #port_vnic_type = <None>
  725.  
  726. # List of ip pools for subnetpools creation (list value)
  727. #default_network = 1.0.0.0/16,2.0.0.0/16
  728.  
  729.  
  730. [network-feature-enabled]
  731.  
  732. #
  733. # From tempest.config
  734. #
  735.  
  736. # Allow the execution of IPv6 tests (boolean value)
  737. #ipv6 = true
  738.  
  739. # A list of enabled network extensions with a special entry all which
  740. # indicates every extension is enabled. Empty list indicates all
  741. # extensions are disabled. To get the list of extensions run: 'neutron
  742. # ext-list' (list value)
  743. #api_extensions = all
  744.  
  745. # Allow the execution of IPv6 subnet tests that use the extended IPv6
  746. # attributes ipv6_ra_mode and ipv6_address_mode (boolean value)
  747. #ipv6_subnet_attributes = false
  748.  
  749. # Does the test environment support changing port admin state (boolean
  750. # value)
  751. #port_admin_state_change = true
  752.  
  753.  
  754. [object-storage]
  755.  
  756. #
  757. # From tempest.config
  758. #
  759.  
  760. # Catalog type of the Object-Storage service. (string value)
  761. #catalog_type = object-store
  762.  
  763. # The object-storage region name to use. If empty, the value of
  764. # identity.region is used instead. If no such region is found in the
  765. # service catalog, the first found one is used. (string value)
  766. #region =
  767.  
  768. # The endpoint type to use for the object-store service. (string
  769. # value)
  770. # Allowed values: public, admin, internal, publicURL, adminURL, internalURL
  771. #endpoint_type = publicURL
  772.  
  773. # Number of seconds to time on waiting for a container to container
  774. # synchronization complete. (integer value)
  775. #container_sync_timeout = 600
  776.  
  777. # Number of seconds to wait while looping to check the status of a
  778. # container to container synchronization (integer value)
  779. #container_sync_interval = 5
  780.  
  781. # Role to add to users created for swift tests to enable creating
  782. # containers (string value)
  783. #operator_role = Member
  784.  
  785. # User role that has reseller admin (string value)
  786. #reseller_admin_role = ResellerAdmin
  787.  
  788. # Name of sync realm. A sync realm is a set of clusters that have
  789. # agreed to allow container syncing with each other. Set the same
  790. # realm name as Swift's container-sync-realms.conf (string value)
  791. #realm_name = realm1
  792.  
  793. # One name of cluster which is set in the realm whose name is set in
  794. # 'realm_name' item in this file. Set the same cluster name as Swift's
  795. # container-sync-realms.conf (string value)
  796. #cluster_name = name1
  797.  
  798.  
  799. [object-storage-feature-enabled]
  800.  
  801. #
  802. # From tempest.config
  803. #
  804.  
  805. # A list of the enabled optional discoverable apis. A single entry,
  806. # all, indicates that all of these features are expected to be enabled
  807. # (list value)
  808. #discoverable_apis = all
  809.  
  810. # Execute (old style) container-sync tests (boolean value)
  811. #container_sync = true
  812.  
  813. # Execute object-versioning tests (boolean value)
  814. #object_versioning = true
  815.  
  816. # Execute discoverability tests (boolean value)
  817. #discoverability = true
  818.  
  819.  
  820. [orchestration]
  821.  
  822. #
  823. # From tempest.config
  824. #
  825.  
  826. # Catalog type of the Orchestration service. (string value)
  827. #catalog_type = orchestration
  828.  
  829. # The orchestration region name to use. If empty, the value of
  830. # identity.region is used instead. If no such region is found in the
  831. # service catalog, the first found one is used. (string value)
  832. #region =
  833.  
  834. # The endpoint type to use for the orchestration service. (string
  835. # value)
  836. # Allowed values: public, admin, internal, publicURL, adminURL, internalURL
  837. #endpoint_type = publicURL
  838.  
  839. # Role required for users to be able to manage stacks (string value)
  840. #stack_owner_role = heat_stack_owner
  841.  
  842. # Time in seconds between build status checks. (integer value)
  843. #build_interval = 1
  844.  
  845. # Timeout in seconds to wait for a stack to build. (integer value)
  846. #build_timeout = 1200
  847.  
  848. # Instance type for tests. Needs to be big enough for a full OS plus
  849. # the test workload (string value)
  850. #instance_type = m1.micro
  851.  
  852. # Name of existing keypair to launch servers with. (string value)
  853. #keypair_name = <None>
  854.  
  855. # Value must match heat configuration of the same name. (integer
  856. # value)
  857. #max_template_size = 524288
  858.  
  859. # Value must match heat configuration of the same name. (integer
  860. # value)
  861. #max_resources_per_stack = 1000
  862.  
  863.  
  864. [oslo_concurrency]
  865.  
  866. #
  867. # From oslo.concurrency
  868. #
  869.  
  870. # Enables or disables inter-process locks. (boolean value)
  871. # Deprecated group/name - [DEFAULT]/disable_process_locking
  872. #disable_process_locking = false
  873.  
  874. # Directory to use for lock files. For security, the specified
  875. # directory should only be writable by the user running the processes
  876. # that need locking. Defaults to environment variable OSLO_LOCK_PATH.
  877. # If external locks are used, a lock path must be set. (string value)
  878. # Deprecated group/name - [DEFAULT]/lock_path
  879. #lock_path = <None>
  880.  
  881.  
  882. [scenario]
  883.  
  884. #
  885. # From tempest.config
  886. #
  887.  
  888. # DEPRECATED: Directory containing image files (string value)
  889. # This option is deprecated for removal.
  890. # Its value may be silently ignored in the future.
  891. #img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec
  892.  
  893. # Image file name (string value)
  894. # Deprecated group/name - [scenario]/qcow2_img_file
  895. #img_file = cirros-0.3.1-x86_64-disk.img
  896.  
  897. # Image disk format (string value)
  898. #img_disk_format = qcow2
  899.  
  900. # Image container format (string value)
  901. #img_container_format = bare
  902.  
  903. # Glance image properties. Use for custom images which require them
  904. # (dict value)
  905. #img_properties = <None>
  906.  
  907. # DEPRECATED: AMI image file name (string value)
  908. # This option is deprecated for removal.
  909. # Its value may be silently ignored in the future.
  910. #ami_img_file = cirros-0.3.1-x86_64-blank.img
  911.  
  912. # DEPRECATED: ARI image file name (string value)
  913. # This option is deprecated for removal.
  914. # Its value may be silently ignored in the future.
  915. #ari_img_file = cirros-0.3.1-x86_64-initrd
  916.  
  917. # DEPRECATED: AKI image file name (string value)
  918. # This option is deprecated for removal.
  919. # Its value may be silently ignored in the future.
  920. #aki_img_file = cirros-0.3.1-x86_64-vmlinuz
  921.  
  922. # DHCP client used by images to renew DCHP lease. If left empty,
  923. # update operation will be skipped. Supported clients: "udhcpc",
  924. # "dhclient" (string value)
  925. # Allowed values: udhcpc, dhclient, ''
  926. #dhcp_client = udhcpc
  927.  
  928.  
  929. [service_available]
  930.  
  931. #
  932. # From tempest.config
  933. #
  934.  
  935. # Whether or not cinder is expected to be available (boolean value)
  936. #cinder = true
  937.  
  938. # Whether or not neutron is expected to be available (boolean value)
  939. #neutron = false
  940.  
  941. # Whether or not glance is expected to be available (boolean value)
  942. #glance = true
  943.  
  944. # Whether or not swift is expected to be available (boolean value)
  945. #swift = true
  946.  
  947. # Whether or not nova is expected to be available (boolean value)
  948. #nova = true
  949.  
  950. # Whether or not Heat is expected to be available (boolean value)
  951. #heat = false
  952.  
  953. # Whether or not Sahara is expected to be available (boolean value)
  954. #sahara = false
  955.  
  956. # Whether or not Ironic is expected to be available (boolean value)
  957. #ironic = false
  958.  
  959. # Whether or not Trove is expected to be available (boolean value)
  960. #trove = false
  961.  
  962.  
  963. [stress]
  964.  
  965. #
  966. # From tempest.config
  967. #
  968.  
  969. # Directory containing log files on the compute nodes (string value)
  970. #nova_logdir = <None>
  971.  
  972. # Maximum number of instances to create during test. (integer value)
  973. #max_instances = 16
  974.  
  975. # Controller host. (string value)
  976. #controller = <None>
  977.  
  978. # Controller host. (string value)
  979. #target_controller = <None>
  980.  
  981. # ssh user. (string value)
  982. #target_ssh_user = <None>
  983.  
  984. # Path to private key. (string value)
  985. #target_private_key_path = <None>
  986.  
  987. # regexp for list of log files. (string value)
  988. #target_logfiles = <None>
  989.  
  990. # time (in seconds) between log file error checks. (integer value)
  991. #log_check_interval = 60
  992.  
  993. # The number of threads created while stress test. (integer value)
  994. #default_thread_number_per_action = 4
  995.  
  996. # Prevent the cleaning (tearDownClass()) between each stress test run
  997. # if an exception occurs during this run. (boolean value)
  998. #leave_dirty_stack = false
  999.  
  1000. # Allows a full cleaning process after a stress test. Caution : this
  1001. # cleanup will remove every objects of every project. (boolean value)
  1002. #full_clean_stack = false
  1003.  
  1004.  
  1005. [validation]
  1006.  
  1007. #
  1008. # From tempest.config
  1009. #
  1010.  
  1011. # Enable ssh on created servers and creation of additional validation
  1012. # resources to enable remote access (boolean value)
  1013. #run_validation = false
  1014.  
  1015. # Enable/disable security groups. (boolean value)
  1016. #security_group = true
  1017.  
  1018. # Enable/disable security group rules. (boolean value)
  1019. #security_group_rules = true
  1020.  
  1021. # Default IP type used for validation: -fixed: uses the first IP
  1022. # belonging to the fixed network -floating: creates and uses a
  1023. # floating IP (string value)
  1024. # Allowed values: fixed, floating
  1025. # Deprecated group/name - [compute]/use_floatingip_for_ssh
  1026. #connect_method = floating
  1027.  
  1028. # Default authentication method to the instance. Only ssh via keypair
  1029. # is supported for now. Additional methods will be handled in a
  1030. # separate spec. (string value)
  1031. # Allowed values: keypair
  1032. # Deprecated group/name - [compute]/ssh_auth_method
  1033. #auth_method = keypair
  1034.  
  1035. # Default IP version for ssh connections. (integer value)
  1036. #ip_version_for_ssh = 4
  1037.  
  1038. # Timeout in seconds to wait for ping to succeed. (integer value)
  1039. # Deprecated group/name - [compute]/ping_timeout
  1040. #ping_timeout = 120
  1041.  
  1042. # Timeout in seconds to wait for the TCP connection to be successful.
  1043. # (integer value)
  1044. #connect_timeout = 60
  1045.  
  1046. # Timeout in seconds to wait for the ssh banner. (integer value)
  1047. #ssh_timeout = 300
  1048.  
  1049. # User name used to authenticate to an instance. (string value)
  1050. # Deprecated group/name - [compute]/image_ssh_user
  1051. # Deprecated group/name - [compute]/ssh_user
  1052. # Deprecated group/name - [scenario]/ssh_user
  1053. #image_ssh_user = root
  1054.  
  1055. # Password used to authenticate to an instance. (string value)
  1056. # Deprecated group/name - [compute]/image_ssh_password
  1057. #image_ssh_password = password
  1058.  
  1059. # Shell fragments to use before executing a command when sshing to a
  1060. # guest. (string value)
  1061. # Deprecated group/name - [compute]/ssh_shell_prologue
  1062. #ssh_shell_prologue = set -eu -o pipefail; PATH=$$PATH:/sbin;
  1063.  
  1064. # The packet size for ping packets originating from remote linux hosts
  1065. # (integer value)
  1066. # Deprecated group/name - [compute]/ping_size
  1067. #ping_size = 56
  1068.  
  1069. # The number of ping packets originating from remote linux hosts
  1070. # (integer value)
  1071. # Deprecated group/name - [compute]/ping_count
  1072. #ping_count = 1
  1073.  
  1074. # Unallocated floating IP range, which will be used to test the
  1075. # floating IP bulk feature for CRUD operation. This block must not
  1076. # overlap an existing floating IP pool. (string value)
  1077. # Deprecated group/name - [compute]/floating_ip_range
  1078. #floating_ip_range = 10.0.0.0/29
  1079.  
  1080. # Network used for SSH connections. Ignored if connect_method=floating
  1081. # or run_validation=false. (string value)
  1082. # Deprecated group/name - [compute]/network_for_ssh
  1083. #network_for_ssh = public
  1084.  
  1085.  
  1086. [volume]
  1087.  
  1088. #
  1089. # From tempest.config
  1090. #
  1091.  
  1092. # Time in seconds between volume availability checks. (integer value)
  1093. #build_interval = 1
  1094.  
  1095. # Timeout in seconds to wait for a volume to become available.
  1096. # (integer value)
  1097. #build_timeout = 300
  1098.  
  1099. # Catalog type of the Volume Service (string value)
  1100. #catalog_type = volume
  1101.  
  1102. # The volume region name to use. If empty, the value of
  1103. # identity.region is used instead. If no such region is found in the
  1104. # service catalog, the first found one is used. (string value)
  1105. #region =
  1106.  
  1107. # The endpoint type to use for the volume service. (string value)
  1108. # Allowed values: public, admin, internal, publicURL, adminURL, internalURL
  1109. #endpoint_type = publicURL
  1110.  
  1111. # A list of backend names separated by comma. The backend name must be
  1112. # declared in cinder.conf (list value)
  1113. #backend_names = BACKEND_1,BACKEND_2
  1114.  
  1115. # Backend protocol to target when creating volume types (string value)
  1116. #storage_protocol = iSCSI
  1117.  
  1118. # Backend vendor to target when creating volume types (string value)
  1119. #vendor_name = Open Source
  1120.  
  1121. # Disk format to use when copying a volume to image (string value)
  1122. #disk_format = raw
  1123.  
  1124. # Default size in GB for volumes created by volumes tests (integer
  1125. # value)
  1126. #volume_size = 1
  1127.  
  1128.  
  1129. [volume-feature-enabled]
  1130.  
  1131. #
  1132. # From tempest.config
  1133. #
  1134.  
  1135. # Runs Cinder multi-backend test (requires 2 backends) (boolean value)
  1136. #multi_backend = false
  1137.  
  1138. # Runs Cinder volumes backup test (boolean value)
  1139. #backup = true
  1140.  
  1141. # Runs Cinder volume snapshot test (boolean value)
  1142. #snapshot = true
  1143.  
  1144. # Runs Cinder volume clone test (boolean value)
  1145. #clone = true
  1146.  
  1147. # A list of enabled volume extensions with a special entry all which
  1148. # indicates every extension is enabled. Empty list indicates all
  1149. # extensions are disabled (list value)
  1150. #api_extensions = all
  1151.  
  1152. # Is the v1 volume API enabled (boolean value)
  1153. #api_v1 = true
  1154.  
  1155. # Is the v2 volume API enabled (boolean value)
  1156. #api_v2 = true
  1157.  
  1158. # DEPRECATED: Update bootable status of a volume Not implemented on
  1159. # icehouse (boolean value)
  1160. # This option is deprecated for removal.
  1161. # Its value may be silently ignored in the future.
  1162. #bootable = true
  1163.  
  1164. # Extract correct host info from host@backend (boolean value)
  1165. #volume_services = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement