blob: bcd55f1e08a32386e4447d1e6caf300b59496670 [file] [log] [blame]
sgarbuzfcd802e2018-03-05 10:20:04 +02001classes:
sturivnyic111bdc2018-12-05 13:11:59 +00002 - service.runtest.tempest.artifactory
sgarbuzfcd802e2018-03-05 10:20:04 +02003 - service.runtest.tempest.glance
4 - service.runtest.tempest.nova
ibumarskovc082e072019-02-01 15:01:00 +04005 - service.runtest.tempest.heat
ibumarskova6a9ff82019-04-10 14:07:34 +04006 - service.runtest.tempest.tempest_net
sgarbuzfcd802e2018-03-05 10:20:04 +02007applications:
Ilya Menkovc5625092018-03-29 12:31:03 +04008 - runtest
sgarbuzfcd802e2018-03-05 10:20:04 +02009parameters:
10 _param:
sturivnyic111bdc2018-12-05 13:11:59 +000011 runtest_tempest_convert_to_uuid_flavor_ref: 'm1.extra_tiny_test'
12 runtest_tempest_convert_to_uuid_flavor_ref_alt: 'm1.tiny_test'
Mykyta Karpin9a403872018-04-12 18:20:30 +030013 glance_image_cirros_name: 'TestCirros-0.3.5'
14 glance_image_fedora_name: 'TestFedora-27-1.6'
Maksym Shalamov74acaec2018-06-18 16:26:35 +030015 glance_image_manila_name: 'manila-service-image-master'
Mykyta Karpin9a403872018-04-12 18:20:30 +030016 glance_image_cirros_location: 'http://download.cirros-cloud.net/0.3.5/cirros-0.3.5-x86_64-disk.img'
17 glance_image_fedora_location: 'https://mirror.chpc.utah.edu/pub/fedora/linux/releases/27/CloudImages/x86_64/images/Fedora-Cloud-Base-27-1.6.x86_64.qcow2'
Maksym Shalamov74acaec2018-06-18 16:26:35 +030018 glance_image_manila_location: 'http://tarballs.openstack.org/manila-image-elements/images/manila-service-image-master.qcow2'
Artem32024e82018-03-23 16:05:35 +030019 runtest_heat_plugin_skip_scenario_test_list: 'SoftwareConfigIntegrationTest, VolumeBackupRestoreIntegrationTest, AodhAlarmTest'
20 # VolumeBackupRestoreIntegrationTest : we don't use volume backup in our default configuration.
21 # AodhAlarmTest : we don't have aodh endpoint because of have't telemetry on default configuration.
sgarbuzfcd802e2018-03-05 10:20:04 +020022 runtest_path_to_ca_file: '/etc/ssl/certs/ca-certificates.crt'
Artem607cbb72018-05-08 10:56:59 +030023 runtest_path_to_boot_config_env_file: '/usr/local/lib/python2.7/dist-packages/heat_tempest_plugin/tests/scenario/templates/boot_config_none_env.yaml'
Mykyta Karpin9a403872018-04-12 18:20:30 +030024 runtest_local_image_url: ${_param:glance_image_cirros_location}
25 runtest_local_img_dir: /tmp
26 runtest_local_img_file: ${_param:glance_image_cirros_name}.img
sgarbuzfcd802e2018-03-05 10:20:04 +020027 tempest_test_target: cfg01*
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +030028 runtest_tempest_cfg_dir: /root/test/
29 runtest_tempest_cfg_name: tempest_generated.conf
Mykyta Karpin64e16a42018-04-23 11:52:55 +030030 runtest_tempest_log_file: /home/rally/test/tempest.log
Mykyta Karpin34de9ea2018-04-23 12:59:47 +030031 runtest_tempest_regenerate_conf: false
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +030032 runtest_tempest_public_net: public
Mykyta Karpin576db5f2018-05-18 09:14:12 +000033 runtest_tempest_use_dynamic_credentials: true
Vasyl Saienko9983b742018-12-05 18:15:22 +020034 runtest_salttest_enabled: true
Vasyl Saienkod97a8f22018-06-06 11:21:52 +030035 # This file will be last include, add pillar directly to avoid
36 # variable override
37 keystone:
38 client:
39 enabled: true
40 server:
41 admin_identity:
42 admin:
43 user: admin
44 password: ${_param:keystone_admin_password}
45 project: admin
46 host: ${_param:keystone_service_host}
47 port: 5000
48 region_name: ${_param:openstack_region}
49 use_keystoneauth: true
50 protocol: ${_param:keystone_service_protocol}
Vasyl Saienko35f100f2018-06-12 21:10:33 +030051 api_version: ''
52 user_domain_name: 'Default'
53 project_domain_name: 'Default'
Mykyta Karpin16b69012018-09-21 13:40:16 +030054 os_client_config:
55 enabled: true
56 cfgs:
57 root:
58 content:
59 clouds:
60 admin_identity:
61 region_name: ${_param:openstack_region}
62 identity_api_version: '3'
63 interface: 'internal'
64 auth:
65 username: 'admin'
66 password: ${_param:keystone_admin_password}
67 user_domain_name: 'Default'
68 project_name: 'admin'
69 project_domain_name: 'Default'
70 auth_url: ${_param:keystone_service_protocol}://${_param:keystone_service_host}:5000
sgarbuzfcd802e2018-03-05 10:20:04 +020071 runtest:
72 enabled: true
Vasyl Saienko9983b742018-12-05 18:15:22 +020073 salttest:
74 enabled: ${_param:runtest_salttest_enabled}
sgarbuzfcd802e2018-03-05 10:20:04 +020075 openstack_version: stable/${_param:openstack_version}
76 tempest:
77 enabled: true
78 test_target: ${_param:tempest_test_target}
sandriichenko407cd982018-04-03 19:31:26 +030079 keystone_profile_admin: admin_identity
Mykyta Karpin9a403872018-04-12 18:20:30 +030080 local_image_url: ${_param:runtest_local_image_url}
Mykyta Karpin34de9ea2018-04-23 12:59:47 +030081 regenerate_conf: ${_param:runtest_tempest_regenerate_conf}
sandriichenko23a47f72018-04-03 20:51:30 +030082 convert_to_uuid:
Alina Nesterova7202d142018-04-04 06:46:27 +000083 compute:
Mykyta Karpin9a403872018-04-12 18:20:30 +030084 image_ref: ${_param:glance_image_cirros_name}
Mykyta Karpin9a403872018-04-12 18:20:30 +030085 image_ref_alt: ${_param:glance_image_cirros_name}
sturivnyic111bdc2018-12-05 13:11:59 +000086 flavor_ref: ${_param:runtest_tempest_convert_to_uuid_flavor_ref}
87 flavor_ref_alt: ${_param:runtest_tempest_convert_to_uuid_flavor_ref_alt}
Maksym Shalamov74acaec2018-06-18 16:26:35 +030088 image_ref_nfs: ${_param:glance_image_manila_name}
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +030089 network:
90 public_network_id: ${_param:runtest_tempest_public_net}
91 cfg_dir: ${_param:runtest_tempest_cfg_dir}
92 cfg_name: ${_param:runtest_tempest_cfg_name}
Mykyta Karpin576db5f2018-05-18 09:14:12 +000093 auth:
94 use_dynamic_credentials: ${_param:runtest_tempest_use_dynamic_credentials}
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +030095 DEFAULT:
Mykyta Karpin64e16a42018-04-23 11:52:55 +030096 log_file: ${_param:runtest_tempest_log_file}
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +030097 compute:
98 build_timeout: 600
Alina Nesterova9e8cd6a2018-05-07 08:01:50 +000099 dashboard:
100 # Set to true until Horizon CA bundle pass would be allowed
101 disable_ssl_certificate_validation: true
Alina Nesterovacd9f7ad2018-04-20 08:01:01 +0000102 identity:
103 disable_ssl_certificate_validation: false
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +0300104 orchestration:
105 max_template_size: 5440000
106 max_resources_per_stack: 20000
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +0300107 volume-feature-enabled:
108 backup: false
sgarbuzfcd802e2018-03-05 10:20:04 +0200109 heat_plugin:
110 skip_scenario_test_list: ${_param:runtest_heat_plugin_skip_scenario_test_list}
sgarbuzfcd802e2018-03-05 10:20:04 +0200111 project_domain_id: default
112 user_domain_id: default
113 disable_ssl_certificate_validation: False
114 ca_file: ${_param:runtest_path_to_ca_file}
Mykyta Karpin9a403872018-04-12 18:20:30 +0300115 image_ref: ${_param:glance_image_fedora_name}
116 minimal_image_ref: ${_param:glance_image_cirros_name}
Artem607cbb72018-05-08 10:56:59 +0300117 boot_config_env: ${_param:runtest_path_to_boot_config_env_file}
Mykyta Karpin9a403872018-04-12 18:20:30 +0300118 scenario:
119 img_file: ${_param:runtest_local_img_file}
120 img_dir: ${_param:runtest_local_img_dir}
Alina Nesterova20bc8dc2018-05-03 11:53:50 +0000121 validation:
122 run_validation: true