Advertisement
Guest User

Untitled

a guest
Nov 7th, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1. [DEFAULT]
  2. debug = true
  3. log_file = tempest.log
  4. use_stderr = True
  5. log_dir = /var/log/kolla/tempest/
  6. region = {{ openstack_region_name }}
  7. build_timeout = 300
  8. build_interval = 4
  9. endpoint_type = publicURL
  10.  
  11. [auth]
  12. use_dynamic_credentials = true
  13. tempest_roles = heat_stack_owner
  14. create_isolated_networks = true
  15. admin_username = admin
  16. admin_password = {{ keystone_admin_password }}
  17. admin_project_name = tempest_admin
  18. admin_domain_name = default
  19.  
  20. [dashboard]
  21. dashboard_url = {{ public_protocol }}://{{ kolla_external_fqdn }}
  22. login_url = {{ public_protocol }}://{{ kolla_external_fqdn }}/auth/login/
  23.  
  24. [service_available]
  25. aodh = "yes"
  26. aodh_plugin = "yes"
  27. ceilometer = "yes"
  28. cinder = "yes"
  29. glance = "yes"
  30. gnocchi = "yes"
  31. heat = "yes"
  32. horizon = "yes"
  33. neutron = "yes"
  34. nova = "yes"
  35. swift = "yes"
  36. trove = "yes"
  37.  
  38. [compute]
  39. max_microversion = latest
  40. image_ref = {{ images_ids.stdout_lines[0] }}
  41. image_ref_alt = {{ images_ids.stdout_lines[1] }}
  42. flavor_ref = 100
  43. flavor_ref_alt = 101
  44. #fixed_network_name = tempest_fixed-net
  45. catalog_type = compute
  46. min_compute_nodes = 2
  47.  
  48. [compute-feature-enabled]
  49. console_output = true
  50. resize = true
  51. pause = true
  52. suspend = true
  53. live_migration = true
  54. snapshot = true
  55. swap_volume = true
  56. block_migration_for_live_migration = true
  57. personality = true
  58. nova_cert = false
  59. ipv6_subnet_attributes = true
  60. vnc_console = true
  61. change_password = true
  62. scheduler_available_filters = RetryFilter,AvailabilityZoneFilter,RamFilter,DiskFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,Cor
  63. eFilter,PciPassthroughFilter,NUMATopologyFilter
  64.  
  65. [identity]
  66. auth_version = v3
  67. uri = {{ public_protocol }}://{{ kolla_external_fqdn }}:{{ keystone_public_port }}/v2.0
  68. uri_v3 = {{ public_protocol }}://{{ kolla_external_fqdn }}:{{ keystone_public_port }}/v3
  69. #default_domain_id = default
  70. #domain_name = Default
  71. #admin_domain_name = Default
  72. #admin_domain_scope = True
  73. [identity-feature-enabled]
  74. security_compliance = true
  75. [image]
  76. http_image = {{ yum_repos_url }}cirros-0.3.5-x86_64-disk.img
  77.  
  78. [image-feature-enabled]
  79. api_v1 = False
  80. api_v2 = True
  81. deactivate_image = true
  82.  
  83. [network]
  84. oroject_network_cidr = 192.168.11.0/24
  85. project_network_mask_bits = 27
  86. project_networks_reachable = true
  87.  
  88. public_network_id = {{ def_net_id.stdout }}
  89. floating_network_name = default
  90. project_networks_reachable = false
  91.  
  92. [network-feature-enabled]
  93. ipv6 = true
  94.  
  95. [object-storage]
  96. operator_role = _member_
  97.  
  98. [orchestration]
  99. [volume]
  100. catalog_type = volume
  101. backend_names = lvm-1
  102. vendor_name = Open Source
  103.  
  104. [validation]
  105. image_ssh_user = cirros
  106. image_ssh_password = cubswin:)
  107. run_validation = true
  108. [volume-feature-enabled]
  109. multi_backend = false
  110. backup = false
  111. snapshot = true
  112. api_v1 = True
  113. api_v2 = true
  114. api_v3 = true
  115. volume_services = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement