blob: 6214867b91ec706636dc69dc71f10987dd01d973 [file] [log] [blame]
Goutham Pacha Ravi5dd63012020-04-29 22:18:14 -07001- job:
2 name: manila-tempest-plugin-base
3 abstract: true
4 description: Base job for devstack/tempest based manila jobs.
5 parent: devstack-tempest
6 timeout: 10800
Goutham Pacha Ravi4484d1a2020-05-04 17:34:38 -07007 required-projects: &manila-tempest-required-projects
Goutham Pacha Ravi5dd63012020-04-29 22:18:14 -07008 - openstack/manila
Goutham Pacha Ravi5dd63012020-04-29 22:18:14 -07009 - openstack/manila-tempest-plugin
10 - openstack/python-manilaclient
11 - openstack/tempest
Goutham Pacha Ravi4484d1a2020-05-04 17:34:38 -070012 irrelevant-files: &irrelevant-files
Goutham Pacha Ravi5dd63012020-04-29 22:18:14 -070013 - ^(test-|)requirements.txt$
14 - ^.*\.rst$
15 - ^api-ref/.*$
16 - ^doc/.*$
17 - ^manila/hacking/.*$
18 - ^manila/tests/.*$
19 - ^releasenotes/.*$
20 - ^setup.cfg$
21 - ^tools/.*$
22 - ^tox.ini$
Goutham Pacha Ravi4484d1a2020-05-04 17:34:38 -070023 vars: &manila-tempest-base-vars
Goutham Pacha Ravi5dd63012020-04-29 22:18:14 -070024 tox_envlist: all
25 tempest_test_regex: manila_tempest_tests
26 tempest_concurrency: 8
27 tempest_plugins:
28 - manila-tempest-plugin
29 devstack_plugins:
30 manila: https://opendev.org/openstack/manila
Goutham Pacha Ravi5dd63012020-04-29 22:18:14 -070031 devstack_services:
32 cinder: false
33 s-account: false
34 s-container: false
35 s-object: false
36 s-proxy: false
37 horizon: false
38 tls-proxy: true
39 devstack_localrc:
40 USE_PYTHON3: true
Goutham Pacha Ravi82b1e6f2023-04-25 19:49:38 -070041 MYSQL_REDUCE_MEMORY: True
Goutham Pacha Ravi5dd63012020-04-29 22:18:14 -070042 MANILA_USE_DOWNGRADE_MIGRATIONS: true
43 MANILA_INSTALL_TEMPEST_PLUGIN_SYSTEMWIDE: false
44 MANILA_ALLOW_NAS_SERVER_PORTS_ON_HOST: true
45 MANILA_DEFAULT_SHARE_TYPE_EXTRA_SPECS: 'snapshot_support=True create_share_from_snapshot_support=True'
Goutham Pacha Ravi4484d1a2020-05-04 17:34:38 -070046 MANILA_CONFIGURE_DEFAULT_TYPES: true
Goutham Pacha Ravidf804d82020-07-10 18:02:30 -070047 MANILA_SHARE_MIGRATION_PERIOD_TASK_INTERVAL: 1
debeltrami0d523bb2020-08-20 12:48:49 +000048 MANILA_SERVER_MIGRATION_PERIOD_TASK_INTERVAL: 10
Goutham Pacha Ravidf804d82020-07-10 18:02:30 -070049 MANILA_REPLICA_STATE_UPDATE_INTERVAL: 10
Goutham Pacha Ravi5dd63012020-04-29 22:18:14 -070050
Goutham Pacha Ravi5dd63012020-04-29 22:18:14 -070051- job:
Goutham Pacha Ravi4484d1a2020-05-04 17:34:38 -070052 name: manila-tempest-plugin-ipv6-base
53 abstract: true
54 description: |
55 Base job for devstack/tempest based manila jobs in a 4+6 (dual-stack)
56 devstack environment with IPv6 control plane endpoints.
57 parent: devstack-tempest-ipv6
58 timeout: 10800
59 irrelevant-files: *irrelevant-files
60 required-projects: *manila-tempest-required-projects
Goutham Pacha Ravif67893c2022-08-16 14:07:06 -070061 vars: *manila-tempest-base-vars
Goutham Pacha Ravi4484d1a2020-05-04 17:34:38 -070062
63- job:
Goutham Pacha Ravidf804d82020-07-10 18:02:30 -070064 name: manila-tempest-plugin-standalone-base
65 abstract: true
66 description: |
67 Base job for running a minimal devstack with tempest based manila jobs.
68 timeout: 3600
69 parent: devstack-minimal
70 irrelevant-files: *irrelevant-files
71 roles:
72 - zuul: opendev.org/openstack/devstack
73 - zuul: opendev.org/openstack/tempest
74 required-projects:
75 - openstack/keystone
76 - openstack/manila
77 - openstack/manila-tempest-plugin
78 - openstack/python-manilaclient
79 - openstack/tempest
80 run: playbooks/manila-tempest-plugin-standalone/run.yaml
81 post-run: playbooks/manila-tempest-plugin-standalone/post.yaml
82 vars:
83 tox_envlist: all
84 tempest_test_regex: manila_tempest_tests.tests.api
85 tempest_concurrency: 16
86 tempest_plugins:
87 - manila-tempest-plugin
88 devstack_plugins:
89 manila: https://opendev.org/openstack/manila
Goutham Pacha Ravidf804d82020-07-10 18:02:30 -070090 test_results_stage_name: test_results
91 zuul_copy_output:
92 '{{ devstack_base_dir }}/tempest/etc/tempest.conf': logs
93 '{{ devstack_base_dir }}/tempest/etc/accounts.yaml': logs
94 '{{ devstack_base_dir }}/tempest/tempest.log': logs
95 '{{ stage_dir }}/{{ test_results_stage_name }}.subunit': logs
96 '{{ stage_dir }}/{{ test_results_stage_name }}.html': logs
97 '{{ stage_dir }}/stackviz': logs
98 extensions_to_txt:
99 conf: true
100 log: true
101 yaml: true
102 yml: true
103 devstack_localrc:
104 USE_PYTHON3: true
105 MANILA_INSTALL_TEMPEST_PLUGIN_SYSTEMWIDE: false
106 MANILA_SERVICE_IMAGE_ENABLED: false
107 MANILA_SHARE_MIGRATION_PERIOD_TASK_INTERVAL: 1
debeltrami0d523bb2020-08-20 12:48:49 +0000108 MANILA_SERVER_MIGRATION_PERIOD_TASK_INTERVAL: 10
Goutham Pacha Ravidf804d82020-07-10 18:02:30 -0700109 MANILA_REPLICA_STATE_UPDATE_INTERVAL: 10
110 devstack_services:
111 tls-proxy: true
112 key: true
113 tempest: true
114
115- job:
silvacarloss95b3ac32022-06-23 12:39:00 -0300116 name: manila-tempest-plugin-zfsonlinux-base
117 abstract: true
Goutham Pacha Ravi5dd63012020-04-29 22:18:14 -0700118 description: Test ZFSOnLinux multibackend (DHSS=False) with postgresql db
119 parent: manila-tempest-plugin-base
120 vars:
121 tempest_test_regex: '(^manila_tempest_tests.tests)(?=.*\[.*\bbackend\b.*\])'
122 devstack_localrc:
123 SHARE_DRIVER: manila.share.drivers.zfsonlinux.driver.ZFSonLinuxShareDriver
124 MANILA_ENABLED_BACKENDS: london,paris
125 MANILA_BACKEND1_CONFIG_GROUP_NAME: london
126 MANILA_BACKEND2_CONFIG_GROUP_NAME: paris
127 MANILA_SHARE_BACKEND1_NAME: LONDON
128 MANILA_SHARE_BACKEND2_NAME: PARIS
129 MANILA_OPTGROUP_london_driver_handles_share_servers: false
130 MANILA_OPTGROUP_paris_driver_handles_share_servers: false
131 MANILA_SHARE_MIGRATION_PERIOD_TASK_INTERVAL: 1
132 MANILA_REPLICA_STATE_UPDATE_INTERVAL: 60
133 MANILA_ZFSONLINUX_SERVICE_IP: 127.0.0.1
134 MANILA_ZFSONLINUX_USE_SSH: true
Goutham Pacha Ravi5dd63012020-04-29 22:18:14 -0700135 MANILA_USE_SCHEDULER_CREATING_SHARE_FROM_SNAPSHOT: true
136 devstack_services:
137 mysql: false
138 postgresql: true
139 devstack_local_conf:
140 test-config:
141 $TEMPEST_CONFIG:
142 share:
143 default_share_type_name: default
144 run_driver_assisted_migration_tests: true
145 run_host_assisted_migration_tests: true
146 run_replication_tests: true
147 run_manage_unmanage_snapshot_tests: true
148 run_manage_unmanage_tests: true
149 run_multiple_share_replicas_tests: false
150 run_create_share_from_snapshot_in_another_pool_or_az_tests: true
151 backend_replication_type: readable
152 enable_protocols: nfs
153 capability_storage_protocol: NFS
154 build_timeout: 180
155 enable_ip_rules_for_protocols: nfs
156 multitenancy_enabled: False
157 backend_names: LONDON,PARIS
158 multi_backend: true
159 image_password: manila
lkuchlan192d4082023-09-07 13:44:31 +0300160 dd_input_file: /dev/urandom
Goutham Pacha Ravi4484d1a2020-05-04 17:34:38 -0700161
162- job:
silvacarloss95b3ac32022-06-23 12:39:00 -0300163 name: manila-tempest-plugin-zfsonlinux
164 description: Test ZFSOnLinux multibackend (DHSS=False) with postgresql db
165 parent: manila-tempest-plugin-zfsonlinux-base
Goutham Pacha Ravi3b9a0c42023-09-07 20:00:00 -0700166 branches: &ubuntu_jammy_test_image_branches
167 regex: ^stable/(yoga|xena|wallaby|victoria|ussuri)$
168 negate: true
silvacarloss95b3ac32022-06-23 12:39:00 -0300169
170- job:
171 name: manila-tempest-plugin-lvm-base
Goutham Pacha Ravi4484d1a2020-05-04 17:34:38 -0700172 description: |
173 Test LVM multibackend (DHSS=False) in a 4+6 (dual-stack) devstack
174 environment with IPv6 control plane endpoints.
175 parent: manila-tempest-plugin-ipv6-base
silvacarloss95b3ac32022-06-23 12:39:00 -0300176 abstract: true
Goutham Pacha Ravi4484d1a2020-05-04 17:34:38 -0700177 required-projects:
178 - openstack/neutron-dynamic-routing
179 vars:
Goutham Pacha Ravi170cc452020-07-15 23:42:05 -0700180 tempest_test_regex: '(^manila_tempest_tests.tests)(?=.*\[.*\bbackend\b.*\])'
Goutham Pacha Ravif67893c2022-08-16 14:07:06 -0700181 devstack_services: &devstack-with-ovs
182 # NOTE(gouthamr): LP#1940324 prevents bgp usage with OVN, disable OVN
183 br-ex-tcpdump: false
184 br-int-flows: false
185 ovn-controller: false
186 ovn-northd: false
187 ovs-vswitchd: false
188 ovsdb-server: false
189 q-ovn-metadata-agent: false
190 # Neutron services
191 neutron-local-ip-static: true
192 q-agt: true
193 q-dhcp: true
194 q-l3: true
195 q-meta: true
196 q-metering: true
Goutham Pacha Ravi4484d1a2020-05-04 17:34:38 -0700197 devstack_localrc:
Goutham Pacha Ravif67893c2022-08-16 14:07:06 -0700198 # NOTE(gouthamr): LP#1940324 prevents bgp usage with OVN, use OVS
199 Q_AGENT: openvswitch
200 Q_ML2_TENANT_NETWORK_TYPE: vxlan
201 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Goutham Pacha Ravi4484d1a2020-05-04 17:34:38 -0700202 SHARE_DRIVER: manila.share.drivers.lvm.LVMShareDriver
203 MANILA_ENABLED_BACKENDS: london,paris
204 MANILA_BACKEND1_CONFIG_GROUP_NAME: london
205 MANILA_BACKEND2_CONFIG_GROUP_NAME: paris
206 MANILA_SHARE_BACKEND1_NAME: LONDON
207 MANILA_SHARE_BACKEND2_NAME: PARIS
208 MANILA_OPTGROUP_london_driver_handles_share_servers: false
209 MANILA_OPTGROUP_paris_driver_handles_share_servers: false
210 SHARE_BACKING_FILE_SIZE: 32000M
211 MANILA_SHARE_MIGRATION_PERIOD_TASK_INTERVAL: 1
212 MANILA_DEFAULT_SHARE_TYPE_EXTRA_SPECS: 'snapshot_support=True create_share_from_snapshot_support=True revert_to_snapshot_support=True mount_snapshot_support=True'
213 MANILA_SETUP_IPV6: true
214 NEUTRON_CREATE_INITIAL_NETWORKS: false
215 MANILA_RESTORE_IPV6_DEFAULT_ROUTE: false
216 devstack_plugins:
217 neutron-dynamic-routing: https://opendev.org/openstack/neutron-dynamic-routing
218 devstack_local_conf:
219 test-config:
220 $TEMPEST_CONFIG:
221 share:
222 default_share_type_name: default
223 run_ipv6_tests: true
224 run_mount_snapshot_tests: true
225 run_host_assisted_migration_tests: true
226 run_shrink_tests: false
227 run_revert_to_snapshot_tests: true
228 enable_user_rules_for_protocols: cifs
229 enable_ip_rules_for_protocols: nfs
230 multitenancy_enabled: False
231 backend_names: LONDON,PARIS
232 multi_backend: true
233 image_password: manila
Goutham Pacha Ravi7a8f5ef2020-05-05 23:01:52 -0700234
235- job:
silvacarloss95b3ac32022-06-23 12:39:00 -0300236 name: manila-tempest-plugin-lvm
237 description: |
Goutham Pacha Ravi1ba0a8d2023-10-17 15:53:07 -0700238 Test LVM multibackend (DHSS=False) in a 4+6 (dual-stack) devstack
239 environment with IPv6 control plane endpoints.
240 branches: *ubuntu_jammy_test_image_branches
silvacarloss95b3ac32022-06-23 12:39:00 -0300241 parent: manila-tempest-plugin-lvm-base
silvacarloss91ca00a2023-09-04 10:09:21 -0300242 vars:
Goutham Pacha Ravi1ba0a8d2023-10-17 15:53:07 -0700243 # TODO(gouthamr): some tests are disabled due to bugs
244 # IPv6 Tests: https://bugs.launchpad.net/manila/+bug/1998489
245 # drop these overrides once we address that bug.
246 tempest_exclude_regex: '(^manila_tempest_tests.tests.scenario.*IPv6.*)'
silvacarloss91ca00a2023-09-04 10:09:21 -0300247 devstack_localrc:
248 MANILA_SETUP_IPV6: false
Goutham Pacha Ravi1ba0a8d2023-10-17 15:53:07 -0700249 NEUTRON_CREATE_INITIAL_NETWORKS: true
silvacarloss95b3ac32022-06-23 12:39:00 -0300250
251- job:
Goutham Pacha Ravi7a8f5ef2020-05-05 23:01:52 -0700252 name: manila-tempest-plugin-container
253 description: |
Goutham Pacha Ravi8f333bd2020-06-19 13:54:22 -0700254 Test the container driver multibackend (DHSS=True) with CIFS
Goutham Pacha Ravi7a8f5ef2020-05-05 23:01:52 -0700255 and postgresql db. API only, in a minimal devstack
256 parent: manila-tempest-plugin-base
257 vars:
258 tempest_test_regex: manila_tempest_tests.tests.api
259 devstack_localrc:
260 SHARE_DRIVER: manila.share.drivers.container.driver.ContainerShareDriver
261 MANILA_SERVICE_IMAGE_ENABLED: false
262 MANILA_ENABLED_BACKENDS: london,paris
263 MANILA_BACKEND1_CONFIG_GROUP_NAME: london
264 MANILA_BACKEND2_CONFIG_GROUP_NAME: paris
265 MANILA_SHARE_BACKEND1_NAME: LONDON
266 MANILA_SHARE_BACKEND2_NAME: PARIS
267 MANILA_OPTGROUP_london_driver_handles_share_servers: true
268 MANILA_OPTGROUP_paris_driver_handles_share_servers: true
269 SHARE_BACKING_FILE_SIZE: 64000M
270 MANILA_CONFIGURE_DEFAULT_TYPES: false
271 MANILA_DEFAULT_SHARE_TYPE_EXTRA_SPECS: 'snapshot_support=false'
Goutham Pacha Ravi8f333bd2020-06-19 13:54:22 -0700272 TEMPEST_USE_TEST_ACCOUNTS: true
Goutham Pacha Ravi7a8f5ef2020-05-05 23:01:52 -0700273 devstack_services:
274 mysql: false
275 postgresql: true
276 devstack_local_conf:
277 test-config:
278 $TEMPEST_CONFIG:
279 share:
280 enable_ip_rules_for_protocols: ""
281 run_share_group_tests: false
282 run_manage_unmanage_tests: true
283 run_snapshot_tests: false
284 run_shrink_tests: false
285 enable_user_rules_for_protocols: cifs
286 enable_protocols: cifs
287 capability_storage_protocol: CIFS
288 multitenancy_enabled: true
289 backend_names: LONDON,PARIS
290 multi_backend: true
debeltramib3089a72020-09-15 21:06:04 +0000291 run_share_server_migration_tests: true
Andrec1a3c0e2022-01-29 14:46:53 +0000292 run_share_server_multiple_subnet_tests: true
293 run_network_allocation_update_tests: true
Goutham Pacha Raviacc536e2020-05-05 23:01:52 -0700294
295- job:
silvacarloss95b3ac32022-06-23 12:39:00 -0300296 name: manila-tempest-plugin-generic-base
297 abstract: true
Goutham Pacha Raviacc536e2020-05-05 23:01:52 -0700298 description: |
299 Test the generic driver multibackend (DHSS=True) with NFS and CIFS
300 parent: manila-tempest-plugin-base
301 vars:
silvacarlosscc8a6512022-06-07 19:01:07 -0300302 tempest_test_regex: '(^manila_tempest_tests.tests.api)(?=.*\[.*\bbackend\b.*\])'
Goutham Pacha Raviacc536e2020-05-05 23:01:52 -0700303 # The generic driver uses nova VMs as share servers; running with a
304 # high concurrency could starve the driver of RAM/Disk/CPUs to
305 # function properly in a small single node devstack VM.
306 tempest_concurrency: 2
307 devstack_localrc:
308 VOLUME_BACKING_FILE_SIZE: 24G
309 SHARE_DRIVER: manila.share.drivers.generic.GenericShareDriver
310 MANILA_ENABLED_BACKENDS: london,paris
311 MANILA_BACKEND1_CONFIG_GROUP_NAME: london
312 MANILA_BACKEND2_CONFIG_GROUP_NAME: paris
313 MANILA_SHARE_BACKEND1_NAME: LONDON
314 MANILA_SHARE_BACKEND2_NAME: PARIS
315 MANILA_OPTGROUP_london_driver_handles_share_servers: true
316 MANILA_OPTGROUP_paris_driver_handles_share_servers: true
317 MANILA_USE_SERVICE_INSTANCE_PASSWORD: true
318 MANILA_DEFAULT_SHARE_TYPE_EXTRA_SPECS: 'snapshot_support=True create_share_from_snapshot_support=True'
Goutham Pacha Ravi8f333bd2020-06-19 13:54:22 -0700319 TEMPEST_USE_TEST_ACCOUNTS: true
Goutham Pacha Ravi838733e2023-08-11 14:56:13 -0700320 GLANCE_ENFORCE_SCOPE: false
Goutham Pacha Raviacc536e2020-05-05 23:01:52 -0700321 devstack_services:
322 cinder: true
323 devstack_local_conf:
324 test-config:
325 $TEMPEST_CONFIG:
326 share:
327 default_share_type_name: default
328 run_share_group_tests: false
329 multitenancy_enabled: true
330 suppress_errors_in_cleanup: true
331 share_creation_retry_number: 2
332 backend_names: LONDON,PARIS
333 multi_backend: true
334 image_password: manila
Victoria Martinez de la Cruz62ff7872020-05-05 17:21:14 -0300335
336- job:
silvacarloss95b3ac32022-06-23 12:39:00 -0300337 name: manila-tempest-plugin-generic
silvacarlosscc8a6512022-06-07 19:01:07 -0300338 description: |
339 Test the scenario test cases on the generic driver multibackend
340 (DHSS=True) with NFS and CIFS
silvacarloss95b3ac32022-06-23 12:39:00 -0300341 parent: manila-tempest-plugin-generic-base
silvacarlossd12285b2022-06-30 16:58:08 -0300342 branches: *ubuntu_jammy_test_image_branches
silvacarloss95b3ac32022-06-23 12:39:00 -0300343
344- job:
345 name: manila-tempest-plugin-generic-scenario-base
346 abstract: true
347 description: |
348 Test the scenario test cases on the generic driver multibackend
349 (DHSS=True) with NFS and CIFS
350 parent: manila-tempest-plugin-generic-base
silvacarlosscc8a6512022-06-07 19:01:07 -0300351 vars:
352 tempest_test_regex: '(^manila_tempest_tests.tests.scenario)(?=.*\[.*\bbackend\b.*\])'
353 # The generic driver uses nova VMs as share servers; running with a
354 # high concurrency could starve the driver of RAM/Disk/CPUs to
355 # function properly in a small single node devstack VM.
356 tempest_concurrency: 1
357
358- job:
silvacarloss95b3ac32022-06-23 12:39:00 -0300359 name: manila-tempest-plugin-generic-scenario
360 description: |
361 Test the scenario test cases on the generic driver multibackend
362 (DHSS=True) with NFS and CIFS
363 parent: manila-tempest-plugin-generic-scenario-base
silvacarlossd12285b2022-06-30 16:58:08 -0300364 branches: *ubuntu_jammy_test_image_branches
silvacarloss95b3ac32022-06-23 12:39:00 -0300365
366- job:
367 name: manila-tempest-plugin-cephfs-native-base
368 abstract: true
Victoria Martinez de la Cruz62ff7872020-05-05 17:21:14 -0300369 description: Test CephFS Native (DHSS=False)
370 parent: manila-tempest-plugin-base
371 required-projects:
372 - openstack/devstack-plugin-ceph
373 vars:
374 devstack_plugins:
375 devstack-plugin-ceph: https://opendev.org/openstack/devstack-plugin-ceph
Victoria Martinez de la Cruzd672a3e2020-09-02 17:55:09 -0300376 tempest_test_regex: manila_tempest_tests.tests
Victoria Martinez de la Cruz62ff7872020-05-05 17:21:14 -0300377 devstack_localrc:
Goutham Pacha Ravia6602ec2020-08-10 17:43:12 -0700378 VOLUME_BACKING_FILE_SIZE: 60GB
Victoria Martinez de la Cruz62ff7872020-05-05 17:21:14 -0300379 SHARE_DRIVER: manila.share.drivers.cephfs.driver.CephFSDriver
380 MANILA_ENABLED_BACKENDS: cephfsnative
381 ENABLED_SHARE_PROTOCOLS: CEPHFS
Goutham Pacha Ravi2ed58262020-06-19 12:57:40 -0700382 MANILA_DEFAULT_SHARE_TYPE_EXTRA_SPECS: 'snapshot_support=True'
Victoria Martinez de la Cruz62ff7872020-05-05 17:21:14 -0300383 MANILA_OPTGROUP_cephfsnative_share_driver: manila.share.drivers.cephfs.driver.CephFSDriver
384 MANILA_OPTGROUP_cephfsnative_driver_handles_share_servers: false
385 MANILA_OPTGROUP_cephfsnative_cephfs_conf_path: /etc/ceph/ceph.conf
386 MANILA_OPTGROUP_cephfsnative_cephfs_auth_id: manila
Goutham Pacha Ravi75f0d602020-08-20 11:50:48 -0700387 # NOTE(gouthamr): The following need to use the latest images, however, there's a bug
388 # with cephfs on Ubuntu 20.04 LTS: https://tracker.ceph.com/issues/47236
Victoria Martinez de la Cruzd672a3e2020-09-02 17:55:09 -0300389 # the latest image is built as https://tarballs.opendev.org/openstack/manila-image-elements/images/manila-service-image-cephfs-master.qcow2
Goutham Pacha Ravi75f0d602020-08-20 11:50:48 -0700390 MANILA_SERVICE_IMAGE_URL: https://tarballs.opendev.org/openstack/manila-image-elements/images/manila-service-image-cephfs-1.3.0-58-g2859569.qcow2
391 MANILA_SERVICE_IMAGE_NAME: manila-service-image-cephfs-1.3.0-58-g2859569
Victoria Martinez de la Cruz62ff7872020-05-05 17:21:14 -0300392 devstack_local_conf:
393 test-config:
394 $TEMPEST_CONFIG:
395 share:
lkuchlan3c20c062020-05-31 15:25:15 +0300396 default_share_type_name: default
Victoria Martinez de la Cruz62ff7872020-05-05 17:21:14 -0300397 enable_cephx_rules_for_protocols: cephfs
398 run_share_group_tests: false
Victoria Martinez de la Cruz62ff7872020-05-05 17:21:14 -0300399 multitenancy_enabled: false
Victoria Martinez de la Cruz62ff7872020-05-05 17:21:14 -0300400 backend_names: CEPHFSNATIVE
Victoria Martinez de la Cruz62ff7872020-05-05 17:21:14 -0300401 capability_storage_protocol: CEPHFS
lkuchlan3c20c062020-05-31 15:25:15 +0300402 enable_protocols: cephfs
403 image_password: manila
Victoria Martinez de la Cruzb28c6cd2020-05-07 07:36:28 -0300404
silvacarloss95b3ac32022-06-23 12:39:00 -0300405- job:
406 name: manila-tempest-plugin-cephfs-native
407 description: Test CephFS Native (DHSS=False)
408 parent: manila-tempest-plugin-cephfs-native-base
silvacarlossd12285b2022-06-30 16:58:08 -0300409 branches: *ubuntu_jammy_test_image_branches
Victoria Martinez de la Cruzb28c6cd2020-05-07 07:36:28 -0300410
411- job:
Victoria Martinez de la Cruz60626d52022-03-17 19:24:28 +0000412 name: manila-tempest-plugin-cephfs-native-cephadm
413 description: Test CephFS Native (DHSS=False) deployed with cephadm
Goutham Pacha Ravi797aeb12023-04-26 16:52:00 -0700414 parent: manila-tempest-plugin-cephfs-native-base
Victoria Martinez de la Cruz60626d52022-03-17 19:24:28 +0000415 vars:
Goutham Pacha Ravi797aeb12023-04-26 16:52:00 -0700416 configure_swap_size: 8192
Victoria Martinez de la Cruz60626d52022-03-17 19:24:28 +0000417 tempest_test_regex: manila_tempest_tests.tests
418 tempest_exclude_regex: '(^manila_tempest_tests.tests.scenario.*ceph_fuse.*)'
419 devstack_localrc:
Goutham Pacha Ravi797aeb12023-04-26 16:52:00 -0700420 ENABLE_CEPH_NOVA: false
Victoria Martinez de la Cruz60626d52022-03-17 19:24:28 +0000421 CONTAINER_IMAGE: 'quay.io/ceph/ceph:v17.2.5'
422 CEPHADM_DEPLOY: true
423 CEPHADM_DEV_OSD: true
424 TARGET_DEV_OSD_DIR: /opt/stack
425 CEPH_LOOPBACK_DISK_SIZE: 40G
426 DISABLE_CEPHADM_POST_DEPLOY: True
427 MANILA_SERVICE_IMAGE_URL: https://tarballs.opendev.org/openstack/manila-image-elements/images/manila-service-image-cephfs-master.qcow2
428 MANILA_SERVICE_IMAGE_NAME: manila-service-image-cephfs-master
429
430- job:
silvacarloss95b3ac32022-06-23 12:39:00 -0300431 name: manila-tempest-plugin-cephfs-nfs-base
432 abstract: true
Victoria Martinez de la Cruzb28c6cd2020-05-07 07:36:28 -0300433 description: Test CephFS NFS (DHSS=False)
434 parent: manila-tempest-plugin-base
435 required-projects:
436 - openstack/devstack-plugin-ceph
437 - openstack/neutron-dynamic-routing
438 vars:
Tom Barroncee8ed12021-01-11 14:43:54 -0500439 tempest_concurrency: 2
Goutham Pacha Ravi7669e942023-03-02 15:33:38 -0800440 # turning off some tests due to exhaustion of disk space
441 # https://bugs.launchpad.net/manila/+bug/2009083
442 tempest_exclude_regex: "\
443 (^manila_tempest_tests.tests.scenario.test_share_extend.TestShareExtendNFSIPv6.test_create_extend_and_write)|\
444 (^manila_tempest_tests.tests.scenario.test_share_shrink.TestShareShrinkNFSIPv6.test_create_shrink_and_write)"
Goutham Pacha Ravif67893c2022-08-16 14:07:06 -0700445 devstack_services: *devstack-with-ovs # LP 1940324
Victoria Martinez de la Cruzb28c6cd2020-05-07 07:36:28 -0300446 devstack_plugins:
447 devstack-plugin-ceph: https://opendev.org/openstack/devstack-plugin-ceph
448 neutron-dynamic-routing: https://opendev.org/openstack/neutron-dynamic-routing
449 devstack_localrc:
Goutham Pacha Ravif67893c2022-08-16 14:07:06 -0700450 # NOTE(gouthamr): LP#1940324 prevents bgp usage with OVN, use OVS
451 Q_AGENT: openvswitch
452 Q_ML2_TENANT_NETWORK_TYPE: vxlan
453 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Goutham Pacha Ravia6602ec2020-08-10 17:43:12 -0700454 VOLUME_BACKING_FILE_SIZE: 60GB
Victoria Martinez de la Cruzb28c6cd2020-05-07 07:36:28 -0300455 SHARE_DRIVER: manila.share.drivers.cephfs.driver.CephFSDriver
456 MANILA_ENABLED_BACKENDS: cephfsnfs
457 ENABLED_SHARE_PROTOCOLS: NFS
458 MANILA_DEFAULT_SHARE_TYPE_EXTRA_SPECS: 'snapshot_support=True'
459 MANILA_SERVICE_IMAGE_ENABLED: true
460 MANILA_OPTGROUP_cephfsnfs_share_driver: manila.share.drivers.cephfs.driver.CephFSDriver
461 MANILA_OPTGROUP_cephfsnfs_driver_handles_share_servers: false
462 MANILA_OPTGROUP_cephfsnfs_cephfs_protocol_helper_type: NFS
463 MANILA_OPTGROUP_cephfsnfs_cephfs_conf_path: /etc/ceph/ceph.conf
464 MANILA_OPTGROUP_cephfsnfs_cephfs_auth_id: manila
465 MANILA_CEPH_DRIVER: cephfsnfs
466 MANILA_SETUP_IPV6: true
467 NEUTRON_CREATE_INITIAL_NETWORKS: false
468 MANILA_RESTORE_IPV6_DEFAULT_ROUTE: false
Goutham Pacha Ravia4042642020-10-07 11:51:24 -0700469 zuul_copy_output:
470 '/var/log/ganesha': logs
471 '/etc/ganesha': logs
Victoria Martinez de la Cruzb28c6cd2020-05-07 07:36:28 -0300472 devstack_local_conf:
473 test-config:
474 $TEMPEST_CONFIG:
475 share:
476 default_share_type_name: default
477 run_ipv6_tests: true
478 run_share_group_tests: false
479 multitenancy_enabled: false
Victoria Martinez de la Cruzb28c6cd2020-05-07 07:36:28 -0300480 backend_names: CEPHFSNFS
481 enable_protocols: nfs
482 capability_storage_protocol: NFS
Victoria Martinez de la Cruzb28c6cd2020-05-07 07:36:28 -0300483 image_password: manila
484
Goutham Pacha Ravidf804d82020-07-10 18:02:30 -0700485- job:
silvacarloss95b3ac32022-06-23 12:39:00 -0300486 name: manila-tempest-plugin-cephfs-nfs
487 description: Test CephFS NFS (DHSS=False)
488 parent: manila-tempest-plugin-cephfs-nfs-base
silvacarlossd12285b2022-06-30 16:58:08 -0300489 branches: *ubuntu_jammy_test_image_branches
Goutham Pacha Ravi7afdada2023-05-08 17:49:31 -0700490 nodeset: devstack-single-node-centos-9-stream
491 vars:
492 # TODO(gouthamr): some tests are disabled due to bugs
493 # IPv6 Tests: https://bugs.launchpad.net/manila/+bug/1998489
494 # snapshot clone fs sync: https://bugs.launchpad.net/manila/+bug/1989273
495 tempest_exclude_regex: "\
496 (^manila_tempest_tests.tests.scenario.*IPv6.*)|\
497 (^manila_tempest_tests.tests.scenario.test_share_basic_ops.TestShareBasicOpsNFS.test_write_data_to_share_created_from_snapshot)"
498 devstack_localrc:
499 MANILA_OPTGROUP_cephfsnfs_cephfs_ganesha_server_ip: "{{ hostvars[inventory_hostname]['nodepool']['private_ipv4'] }}"
500 CEPH_RELEASE: "quincy"
501 MANILA_SETUP_IPV6: false
502 NEUTRON_CREATE_INITIAL_NETWORKS: true
503 IP_VERSION: 4
silvacarloss95b3ac32022-06-23 12:39:00 -0300504
505- job:
ashrod981bab3432023-06-30 14:50:11 +0000506 name: manila-tempest-plugin-multinode-base
507 abstract: true
508 description: |
509 Base job for testing multinode with Manila. Manila is enabled in
510 the controller node; and we have an additional compute node.
511 parent: tempest-multinode-full-py3
512 timeout: 10800
513 irrelevant-files: *irrelevant-files
514 required-projects: *manila-tempest-required-projects
515 vars:
516 tox_envlist: all
517 tempest_test_regex: manila_tempest_tests
518 tempest_plugins:
519 - manila-tempest-plugin
520 tempest_concurrency: 8
521 devstack_services:
522 cinder: false
523 c-bak: false
524 s-account: false
525 s-container: false
526 s-object: false
527 s-proxy: false
528 horizon: false
529 tls-proxy: true
530 devstack_localrc:
531 MANILA_USE_DOWNGRADE_MIGRATIONS: false
532 MANILA_INSTALL_TEMPEST_PLUGIN_SYSTEMWIDE: false
533 MANILA_ALLOW_NAS_SERVER_PORTS_ON_HOST: true
534 MANILA_SHARE_MIGRATION_PERIOD_TASK_INTERVAL: 1
535 MANILA_SERVER_MIGRATION_PERIOD_TASK_INTERVAL: 10
536 MANILA_REPLICA_STATE_UPDATE_INTERVAL: 10
537 group-vars:
538 tempest:
539 devstack_plugins:
540 manila: https://opendev.org/openstack/manila
541 subnode:
542 devstack_services:
543 cinder: false
544 c-bak: false
545
546- job:
547 name: manila-tempest-plugin-multinode-cephfs-nfs-cephadm
548 description: Test CephFS NFS (DHSS=False) in a Multinode devstack env
549 parent: manila-tempest-plugin-multinode-base
550 required-projects:
551 - openstack/devstack-plugin-ceph
552 vars:
553 configure_swap_size: 8192
554 tempest_concurrency: 2
555 # TODO(gouthamr): some tests are disabled due to bugs
556 # IPv6 Tests: https://bugs.launchpad.net/manila/+bug/1998489
557 # snapshot clone fs sync: https://bugs.launchpad.net/manila/+bug/1989273
558 tempest_exclude_regex: "\
559 (^manila_tempest_tests.tests.scenario.*IPv6.*)|\
560 (^manila_tempest_tests.tests.scenario.test_share_basic_ops.TestShareBasicOpsNFS.test_write_data_to_share_created_from_snapshot)"
561 devstack_localrc:
562 MYSQL_REDUCE_MEMORY: True
563 CEPHADM_DEPLOY: True
564 CEPHADM_DEV_OSD: true
565 CEPH_LOOPBACK_DISK_SIZE: 40GB
566 ENABLED_SHARE_PROTOCOLS: NFS
567 ENABLE_CEPH_MANILA: True
568 ENABLE_CEPH_NOVA: False
569 MANILA_CEPH_DRIVER: cephfsnfs
570 MANILA_CONFIGURE_DEFAULT_TYPES: true
571 MANILA_DEFAULT_SHARE_TYPE_EXTRA_SPECS: 'snapshot_support=True create_share_from_snapshot_support=True'
572 MANILA_ENABLED_BACKENDS: cephfsnfs
573 MANILA_OPTGROUP_cephfsnfs_cephfs_auth_id: manila
574 MANILA_OPTGROUP_cephfsnfs_cephfs_conf_path: /etc/ceph/ceph.conf
575 MANILA_OPTGROUP_cephfsnfs_cephfs_nfs_cluster_id: cephfs
576 MANILA_OPTGROUP_cephfsnfs_cephfs_protocol_helper_type: NFS
577 MANILA_OPTGROUP_cephfsnfs_driver_handles_share_servers: false
578 MANILA_OPTGROUP_cephfsnfs_share_driver: manila.share.drivers.cephfs.driver.CephFSDriver
579 MANILA_SERVICE_IMAGE_ENABLED: True
580 MANILA_SETUP_IPV6: false
581 SHARE_DRIVER: manila.share.drivers.cephfs.driver.CephFSDriver
582 TARGET_DEV_OSD_DIR: /opt/stack
583 devstack_local_conf:
584 test-config:
585 $TEMPEST_CONFIG:
586 share:
587 backend_names: cephfsnfs
588 capability_storage_protocol: NFS
589 default_share_type_name: default
590 enable_protocols: nfs
591 image_password: manila
592 multitenancy_enabled: false
593 run_share_group_tests: false
594 group-vars:
595 subnode:
596 devstack_plugins:
597 devstack-plugin-ceph: https://opendev.org/openstack/devstack-plugin-ceph
598 devstack_localrc:
599 REMOTE_CEPH: True
600 tempest:
601 devstack_plugins:
602 devstack-plugin-ceph: https://opendev.org/openstack/devstack-plugin-ceph
603
604- job:
Goutham Pacha Ravidf804d82020-07-10 18:02:30 -0700605 name: manila-tempest-plugin-dummy-no-dhss
606 description: Test the Dummy driver with DHSS=False
607 parent: manila-tempest-plugin-standalone-base
608 vars:
609 devstack_localrc:
610 SHARE_DRIVER: manila.tests.share.drivers.dummy.DummyDriver
611 MANILA_CONFIGURE_GROUPS: alpha,beta,gamma,membernet
612 MANILA_DEFAULT_SHARE_TYPE_EXTRA_SPECS: 'snapshot_support=True create_share_from_snapshot_support=True revert_to_snapshot_support=True mount_snapshot_support=True'
613 MANILA_ENABLED_BACKENDS: alpha,beta,gamma
614 MANILA_OPTGROUP_alpha_driver_handles_share_servers: false
615 MANILA_OPTGROUP_alpha_replication_domain: DUMMY_DOMAIN
616 MANILA_OPTGROUP_alpha_share_backend_name: ALPHA
617 MANILA_OPTGROUP_alpha_share_driver: manila.tests.share.drivers.dummy.DummyDriver
618 MANILA_OPTGROUP_beta_driver_handles_share_servers: false
619 MANILA_OPTGROUP_beta_replication_domain: DUMMY_DOMAIN
620 MANILA_OPTGROUP_beta_share_backend_name: BETA
621 MANILA_OPTGROUP_beta_share_driver: manila.tests.share.drivers.dummy.DummyDriver
622 # With below opts we'll enable a DHSS=True back-end solely for
623 # for the migration test case "test_migration_opposite_driver_modes"
624 MANILA_OPTGROUP_gamma_driver_handles_share_servers: true
625 MANILA_OPTGROUP_gamma_network_config_group: membernet
626 MANILA_OPTGROUP_gamma_share_backend_name: GAMMA
627 MANILA_OPTGROUP_gamma_share_driver: manila.tests.share.drivers.dummy.DummyDriver
628 MANILA_OPTGROUP_gamma_admin_network_config_group: membernet
629 MANILA_OPTGROUP_membernet_network_api_class: manila.network.standalone_network_plugin.StandaloneNetworkPlugin
630 MANILA_OPTGROUP_membernet_network_plugin_ipv4_enabled: true
631 MANILA_OPTGROUP_membernet_standalone_network_plugin_allowed_ip_ranges: 10.0.0.10-10.0.0.209
632 MANILA_OPTGROUP_membernet_standalone_network_plugin_gateway: 10.0.0.1
633 MANILA_OPTGROUP_membernet_standalone_network_plugin_mask: 24
634 MANILA_OPTGROUP_membernet_standalone_network_plugin_network_type: vlan
635 MANILA_OPTGROUP_membernet_standalone_network_plugin_segmentation_id: 1010
636 devstack_local_conf:
637 test-config:
638 "$TEMPEST_CONFIG":
639 share:
640 backend_names: ALPHA,BETA
641 backend_replication_type: readable
642 build_timeout: 180
643 capability_sg_consistent_snapshot_support: pool
644 enable_ip_rules_for_protocols: nfs
645 enable_ro_access_level_for_protocols: nfs,cifs
646 enable_user_rules_for_protocols: cifs
647 multi_backend: true
648 multitenancy_enabled: false
649 run_driver_assisted_migration_tests: true
650 run_manage_unmanage_snapshot_tests: true
651 run_manage_unmanage_tests: true
652 run_migration_with_preserve_snapshots_tests: true
653 run_mount_snapshot_tests: true
654 run_replication_tests: true
655 run_revert_to_snapshot_tests: true
656 # for migration test case "test_migration_opposite_driver_modes"
657 create_networks_when_multitenancy_enabled: false
Victoria Martinez de la Cruzb28c6cd2020-05-07 07:36:28 -0300658
Goutham Pacha Ravidf804d82020-07-10 18:02:30 -0700659- job:
660 name: manila-tempest-plugin-dummy-dhss
661 description: Test the Dummy driver with DHSS=True
662 parent: manila-tempest-plugin-standalone-base
663 vars:
664 devstack_localrc:
665 SHARE_DRIVER: manila.tests.share.drivers.dummy.DummyDriver
666 MANILA_CONFIGURE_GROUPS: alpha,beta,gamma,membernet,adminnet
667 MANILA_DEFAULT_SHARE_TYPE_EXTRA_SPECS: 'snapshot_support=True create_share_from_snapshot_support=True revert_to_snapshot_support=True mount_snapshot_support=True'
668 MANILA_ENABLED_BACKENDS: alpha,beta
669 MANILA_OPTGROUP_DEFAULT_quota_share_networks: 50
670 MANILA_OPTGROUP_adminnet_network_api_class: manila.network.standalone_network_plugin.StandaloneNetworkPlugin
671 MANILA_OPTGROUP_adminnet_network_plugin_ipv4_enabled: true
672 MANILA_OPTGROUP_adminnet_standalone_network_plugin_allowed_ip_ranges: 11.0.0.10-11.0.0.19,11.0.0.30-11.0.0.39,11.0.0.50-11.0.0.199
673 MANILA_OPTGROUP_adminnet_standalone_network_plugin_gateway: 11.0.0.1
674 MANILA_OPTGROUP_adminnet_standalone_network_plugin_mask: 24
675 MANILA_OPTGROUP_adminnet_standalone_network_plugin_network_type: vlan
676 MANILA_OPTGROUP_adminnet_standalone_network_plugin_segmentation_id: 1011
677 MANILA_OPTGROUP_alpha_admin_network_config_group: adminnet
678 MANILA_OPTGROUP_alpha_driver_handles_share_servers: true
679 MANILA_OPTGROUP_alpha_network_config_group: membernet
680 MANILA_OPTGROUP_alpha_replication_domain: DUMMY_DOMAIN
681 MANILA_OPTGROUP_alpha_share_backend_name: ALPHA
682 MANILA_OPTGROUP_alpha_share_driver: manila.tests.share.drivers.dummy.DummyDriver
683 MANILA_OPTGROUP_beta_admin_network_config_group: adminnet
684 MANILA_OPTGROUP_beta_driver_handles_share_servers: true
685 MANILA_OPTGROUP_beta_network_config_group: membernet
686 MANILA_OPTGROUP_beta_replication_domain: DUMMY_DOMAIN
687 MANILA_OPTGROUP_beta_share_backend_name: BETA
688 MANILA_OPTGROUP_beta_share_driver: manila.tests.share.drivers.dummy.DummyDriver
689 MANILA_OPTGROUP_membernet_network_api_class: manila.network.standalone_network_plugin.StandaloneNetworkPlugin
690 MANILA_OPTGROUP_membernet_network_plugin_ipv4_enabled: true
691 MANILA_OPTGROUP_membernet_standalone_network_plugin_allowed_ip_ranges: 10.0.0.10-10.0.0.209
692 MANILA_OPTGROUP_membernet_standalone_network_plugin_gateway: 10.0.0.1
693 MANILA_OPTGROUP_membernet_standalone_network_plugin_mask: 24
694 MANILA_OPTGROUP_membernet_standalone_network_plugin_network_type: vlan
695 MANILA_OPTGROUP_membernet_standalone_network_plugin_segmentation_id: 1010
696 # With below opts we'll enable a DHSS=False back-end solely for
697 # for the migration test case "test_migration_opposite_driver_modes"
698 MANILA_OPTGROUP_gamma_driver_handles_share_servers: false
699 MANILA_OPTGROUP_gamma_share_backend_name: GAMMA
700 MANILA_OPTGROUP_gamma_share_driver: manila.tests.share.drivers.dummy.DummyDriver
701 devstack_local_conf:
702 test-config:
703 "$TEMPEST_CONFIG":
704 share:
705 backend_names: ALPHA,BETA
706 backend_replication_type: readable
707 build_timeout: 180
708 capability_sg_consistent_snapshot_support: pool
709 create_networks_when_multitenancy_enabled: false
710 enable_ip_rules_for_protocols: nfs
711 enable_ro_access_level_for_protocols: nfs,cifs
712 enable_user_rules_for_protocols: cifs
713 multi_backend: true
714 multitenancy_enabled: true
715 run_driver_assisted_migration_tests: true
716 run_manage_unmanage_snapshot_tests: true
717 run_manage_unmanage_tests: true
718 run_migration_with_preserve_snapshots_tests: true
719 run_mount_snapshot_tests: true
720 run_replication_tests: true
721 run_revert_to_snapshot_tests: true
debeltramib3089a72020-09-15 21:06:04 +0000722 run_share_server_migration_tests: true
Andrec1a3c0e2022-01-29 14:46:53 +0000723 run_share_server_multiple_subnet_tests: true
724 run_network_allocation_update_tests: true
Goutham Pacha Ravi842d08b2020-05-28 22:25:21 -0700725
726- job:
727 name: manila-tempest-plugin-glusterfs-native
728 description: |
729 Test the GlusterFS driver (DHSS=False) with the native GlusterFS protocol
730 parent: manila-tempest-plugin-standalone-base
731 required-projects:
732 - x/devstack-plugin-glusterfs
733 vars:
734 tempest_concurrency: 8
735 devstack_plugins:
736 devstack-plugin-glusterfs: https://opendev.org/x/devstack-plugin-glusterfs
737 devstack_localrc:
738 CONFIGURE_GLUSTERFS_MANILA: true
739 GLUSTERFS_MANILA_DRIVER_TYPE: glusterfs-native
740 MANILA_DEFAULT_SHARE_TYPE_EXTRA_SPECS: 'snapshot_support=True create_share_from_snapshot_support=True'
741 devstack_local_conf:
742 test-config:
743 $TEMPEST_CONFIG:
744 share:
745 run_share_group_tests: false
746 run_snapshot_tests: false
747 multitenancy_enabled: false
748 run_shrink_tests: false
749 run_extend_tests: false
750 multi_backend: false
751 suppress_errors_in_cleanup: True
752 share_creation_retry_number: 2
753 backend_names: GLUSTERNATIVE
754 enable_cert_rules_for_protocols: glusterfs
755 capability_storage_protocol: glusterfs
756 enable_protocols: glusterfs
757
758- job:
759 name: manila-tempest-plugin-glusterfs-nfs
760 description: |
761 Test the GlusterFS driver (DHSS=False) with the native NFS protocol
762 parent: manila-tempest-plugin-standalone-base
763 required-projects:
764 - x/devstack-plugin-glusterfs
765 vars:
766 tempest_concurrency: 8
767 devstack_plugins:
768 devstack-plugin-glusterfs: https://opendev.org/x/devstack-plugin-glusterfs
769 devstack_localrc:
770 CONFIGURE_GLUSTERFS_MANILA: true
771 GLUSTERFS_MANILA_DRIVER_TYPE: glusterfs-nfs
772 MANILA_DEFAULT_SHARE_TYPE_EXTRA_SPECS: 'snapshot_support=False'
773 devstack_local_conf:
774 test-config:
775 $TEMPEST_CONFIG:
776 share:
777 run_share_group_tests: false
778 run_snapshot_tests: false
779 multitenancy_enabled: False
780 run_shrink_tests: true
781 multi_backend: false
782 suppress_errors_in_cleanup: True
783 share_creation_retry_number: 2
784 backend_names: GLUSTERFS
785 enable_ip_rules_for_protocols: nfs
786 capability_storage_protocol: NFS
787 enable_protocols: nfs
788 # read-only access rules not supported
789 enable_ro_access_level_for_protocols: ""
silvacarloss95b3ac32022-06-23 12:39:00 -0300790
silvacarlosse21dbfd2022-06-29 15:46:45 -0300791- job:
lkuchlan7b2566a2021-04-14 10:31:31 +0300792 name: manila-tempest-plugin-dummy-no-dhss-rbac
793 parent: manila-tempest-plugin-dummy-no-dhss
794 description: |
795 This job runs the devstack with scope checks enabled,
796 on the Dummy driver with DHSS=False.
797 vars:
798 tempest_test_regex: 'manila_tempest_tests.tests.rbac'
799 devstack_localrc:
800 MANILA_ENFORCE_SCOPE: true
801 devstack_local_conf:
802 test-config:
803 "$TEMPEST_CONFIG":
804 share:
805 default_share_type_name: default
806
807- job:
silvacarlosse21dbfd2022-06-29 15:46:45 -0300808 name: manila-tempest-plugin-lvm-fips-base
809 parent: manila-tempest-plugin-lvm-base
810 nodeset: devstack-single-node-centos-9-stream
811 description: |
812 Run LVM DHSS false tests for manila project using FIPS.
813 pre-run:
814 - playbooks/enable-fips.yaml
815 vars:
816 nslookup_target: 'opendev.org'
817 devstack_localrc:
818 MANILA_SETUP_IPV6: false
819 NEUTRON_CREATE_INITIAL_NETWORKS: true
820 IP_VERSION: 4
821 configure_swap_size: 4096
822 devstack_local_conf:
823 test-config:
824 "$TEMPEST_CONFIG":
825 validation:
826 ssh_key_type: 'ecdsa'
827 share:
828 run_ipv6_tests: false
829
830- job:
831 name: manila-tempest-plugin-lvm-fips
832 parent: manila-tempest-plugin-lvm-fips-base
Goutham Pacha Ravi3b9a0c42023-09-07 20:00:00 -0700833 branches:
834 regex: ^stable/(yoga|xena|wallaby|victoria|ussuri)$
835 negate: true
silvacarlosse21dbfd2022-06-29 15:46:45 -0300836
silvacarloss95b3ac32022-06-23 12:39:00 -0300837- project-template:
838 name: manila-tempest-plugin-jobs-using-service-image
839 description: |
840 Runs jobs that will also perform scenario tests in the branches that are
841 newer than Yoga.
842 check:
843 jobs:
844 - manila-tempest-plugin-lvm
845 - manila-tempest-plugin-generic-scenario:
846 voting: false
847 - manila-tempest-plugin-generic:
848 voting: false
Victoria Martinez de la Cruz60626d52022-03-17 19:24:28 +0000849 - manila-tempest-plugin-cephfs-native-cephadm:
silvacarloss95b3ac32022-06-23 12:39:00 -0300850 voting: false
ashrod981bab3432023-06-30 14:50:11 +0000851 - manila-tempest-plugin-multinode-cephfs-nfs-cephadm:
silvacarloss95b3ac32022-06-23 12:39:00 -0300852 voting: false
853 - manila-tempest-plugin-zfsonlinux:
854 voting: false
855 gate:
856 jobs:
857 - manila-tempest-plugin-lvm