blob: 35e48b0cab02648e4316ed7103e439babdee7c58 [file] [log] [blame]
sgarbuzfcd802e2018-03-05 10:20:04 +02001classes:
2 - service.runtest.tempest.glance
3 - service.runtest.tempest.nova
4 - service.runtest.tempest.neutron
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +03005 - service.runtest.tempest.artifactory
sgarbuzfcd802e2018-03-05 10:20:04 +02006applications:
Ilya Menkovc5625092018-03-29 12:31:03 +04007 - runtest
sgarbuzfcd802e2018-03-05 10:20:04 +02008parameters:
9 _param:
Mykyta Karpin9a403872018-04-12 18:20:30 +030010 glance_image_cirros_name: 'TestCirros-0.3.5'
11 glance_image_fedora_name: 'TestFedora-27-1.6'
12 glance_image_cirros_location: 'http://download.cirros-cloud.net/0.3.5/cirros-0.3.5-x86_64-disk.img'
13 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'
Artem32024e82018-03-23 16:05:35 +030014 runtest_heat_plugin_skip_scenario_test_list: 'SoftwareConfigIntegrationTest, VolumeBackupRestoreIntegrationTest, AodhAlarmTest'
15 # VolumeBackupRestoreIntegrationTest : we don't use volume backup in our default configuration.
16 # AodhAlarmTest : we don't have aodh endpoint because of have't telemetry on default configuration.
Vasyl Saienko2cc87a92018-03-29 15:43:33 +030017 runtest_heat_plugin_skip_functional_test_list: 'UpdateServerNetworksTest, StackTemplateValidateTest'
Artem32024e82018-03-23 16:05:35 +030018 # UpdateServerNetworksTest, StackTemplateValidateTest : These tests support in openstack Queens, but not in Pike.
sgarbuzfcd802e2018-03-05 10:20:04 +020019 runtest_path_to_ca_file: '/etc/ssl/certs/ca-certificates.crt'
Artem607cbb72018-05-08 10:56:59 +030020 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 +030021 runtest_local_image_url: ${_param:glance_image_cirros_location}
22 runtest_local_img_dir: /tmp
23 runtest_local_img_file: ${_param:glance_image_cirros_name}.img
sgarbuzfcd802e2018-03-05 10:20:04 +020024 tempest_test_target: cfg01*
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +030025 runtest_tempest_cfg_dir: /root/test/
26 runtest_tempest_cfg_name: tempest_generated.conf
Mykyta Karpin64e16a42018-04-23 11:52:55 +030027 runtest_tempest_log_file: /home/rally/test/tempest.log
Mykyta Karpin34de9ea2018-04-23 12:59:47 +030028 runtest_tempest_regenerate_conf: false
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +030029 runtest_tempest_public_net: public
Mykyta Karpin576db5f2018-05-18 09:14:12 +000030 runtest_tempest_use_dynamic_credentials: true
Vasyl Saienkod97a8f22018-06-06 11:21:52 +030031 # This file will be last include, add pillar directly to avoid
32 # variable override
33 keystone:
34 client:
35 enabled: true
36 server:
37 admin_identity:
38 admin:
39 user: admin
40 password: ${_param:keystone_admin_password}
41 project: admin
42 host: ${_param:keystone_service_host}
43 port: 5000
44 region_name: ${_param:openstack_region}
45 use_keystoneauth: true
46 protocol: ${_param:keystone_service_protocol}
Vasyl Saienko35f100f2018-06-12 21:10:33 +030047 api_version: ''
48 user_domain_name: 'Default'
49 project_domain_name: 'Default'
sgarbuzfcd802e2018-03-05 10:20:04 +020050 runtest:
51 enabled: true
52 openstack_version: stable/${_param:openstack_version}
53 tempest:
54 enabled: true
55 test_target: ${_param:tempest_test_target}
sandriichenko407cd982018-04-03 19:31:26 +030056 keystone_profile_admin: admin_identity
Mykyta Karpin9a403872018-04-12 18:20:30 +030057 local_image_url: ${_param:runtest_local_image_url}
Mykyta Karpin34de9ea2018-04-23 12:59:47 +030058 regenerate_conf: ${_param:runtest_tempest_regenerate_conf}
sandriichenko23a47f72018-04-03 20:51:30 +030059 convert_to_uuid:
Alina Nesterova7202d142018-04-04 06:46:27 +000060 compute:
Mykyta Karpin9a403872018-04-12 18:20:30 +030061 image_ref: ${_param:glance_image_cirros_name}
Alina Nesterova7202d142018-04-04 06:46:27 +000062 flavor_ref: 'm1.extra_tiny_test'
63 flavor_ref_alt: 'm1.tiny_test'
Mykyta Karpin9a403872018-04-12 18:20:30 +030064 image_ref_alt: ${_param:glance_image_cirros_name}
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +030065 network:
66 public_network_id: ${_param:runtest_tempest_public_net}
67 cfg_dir: ${_param:runtest_tempest_cfg_dir}
68 cfg_name: ${_param:runtest_tempest_cfg_name}
Mykyta Karpin576db5f2018-05-18 09:14:12 +000069 auth:
70 use_dynamic_credentials: ${_param:runtest_tempest_use_dynamic_credentials}
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +030071 DEFAULT:
Mykyta Karpin64e16a42018-04-23 11:52:55 +030072 log_file: ${_param:runtest_tempest_log_file}
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +030073 compute:
74 build_timeout: 600
75 min_microversion: 2.1
76 max_microversion: 2.53
Alina Nesterova9e8cd6a2018-05-07 08:01:50 +000077 dashboard:
78 # Set to true until Horizon CA bundle pass would be allowed
79 disable_ssl_certificate_validation: true
Alina Nesterovacd9f7ad2018-04-20 08:01:01 +000080 identity:
81 disable_ssl_certificate_validation: false
Mykyta Karpin3c337842018-05-04 04:14:51 +000082 network:
83 floating_network_name: ${_param:runtest_tempest_public_net}
Oleh Hryhorov17b2ea92018-04-12 19:05:49 +030084 orchestration:
85 max_template_size: 5440000
86 max_resources_per_stack: 20000
87 dns_feature_enabled:
88 # Switch this to designate_admin_api_enabled once [1] is promoted to stable packages
89 # [1] https://gerrit.mcp.mirantis.net/gitweb?p=salt-formulas/designate.git;a=commit;h=96a3f43f6cf1149559e54a00b5548bdf46333749
90 api_admin: false
91 api_v1: false
92 api_v2: true
93 api_v2_quotas: true
94 api_v2_root_recordsets: true
95 bug_1573141_fixed: true
96 volume-feature-enabled:
97 backup: false
sgarbuzfcd802e2018-03-05 10:20:04 +020098 heat_plugin:
Oleksii Butenkob63cb662018-04-23 14:43:23 +030099 floating_network_name: ${_param:runtest_tempest_public_net}
sgarbuzfcd802e2018-03-05 10:20:04 +0200100 skip_scenario_test_list: ${_param:runtest_heat_plugin_skip_scenario_test_list}
Artem32024e82018-03-23 16:05:35 +0300101 skip_functional_test_list: ${_param:runtest_heat_plugin_skip_functional_test_list}
sgarbuz918d6d52018-04-04 12:10:55 +0300102 instance_type: 'm1.tiny_test'
103 minimal_instance_type: 'm1.extra_tiny_test'
sgarbuzfcd802e2018-03-05 10:20:04 +0200104 auth_version: 3
105 project_domain_id: default
106 user_domain_id: default
107 disable_ssl_certificate_validation: False
108 ca_file: ${_param:runtest_path_to_ca_file}
Mykyta Karpin9a403872018-04-12 18:20:30 +0300109 image_ref: ${_param:glance_image_fedora_name}
110 minimal_image_ref: ${_param:glance_image_cirros_name}
Artem607cbb72018-05-08 10:56:59 +0300111 boot_config_env: ${_param:runtest_path_to_boot_config_env_file}
Mykyta Karpin9a403872018-04-12 18:20:30 +0300112 scenario:
113 img_file: ${_param:runtest_local_img_file}
114 img_dir: ${_param:runtest_local_img_dir}
Alina Nesterova20bc8dc2018-05-03 11:53:50 +0000115 validation:
116 run_validation: true