blob: 27ab428a9c3db6cda2b4ecb706cc705a7ae0bd2a [file] [log] [blame]
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001- job:
Slawek Kaplonski8988a012022-04-07 10:50:44 +02002 name: neutron-tempest-plugin-base
3 parent: devstack-tempest
4 abstract: true
5 description: |
6 Perform setup common to all Neutron tempest tests
7 roles:
8 - zuul: openstack/devstack
9 required-projects:
10 - openstack/neutron
11 - openstack/neutron-tempest-plugin
12 - openstack/tempest
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020013 vars:
Slawek Kaplonski8988a012022-04-07 10:50:44 +020014 tempest_concurrency: 3 # out of 4
15 tox_envlist: all
16 # NOTE(slaweq): in case of some tests, which requires advanced image,
17 # default test timeout set to 1200 seconds may be not enough if job is
18 # run on slow node
19 tempest_test_timeout: 2400
20 tempest_test_regex: "\
21 (^neutron_tempest_plugin.api)|\
22 (^neutron_tempest_plugin.scenario)|\
23 (^tempest.api.compute.servers.test_attach_interfaces)|\
24 (^tempest.api.compute.servers.test_multiple_create)"
25 devstack_localrc:
26 USE_PYTHON3: true
27 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_tempest) | join(',') }}"
28 PHYSICAL_NETWORK: public
29 IMAGE_URLS: https://cloud-images.ubuntu.com/minimal/releases/focal/release/ubuntu-20.04-minimal-cloudimg-amd64.img
yatinkareld3bf7c12024-12-02 18:27:47 +053030 CIRROS_VERSION: 0.6.3
31 DEFAULT_IMAGE_NAME: cirros-0.6.3-x86_64-uec
32 DEFAULT_IMAGE_FILE_NAME: cirros-0.6.3-x86_64-uec.tar.gz
Slawek Kaplonski8988a012022-04-07 10:50:44 +020033 ADVANCED_IMAGE_NAME: ubuntu-20.04-minimal-cloudimg-amd64
34 ADVANCED_INSTANCE_TYPE: ntp_image_256M
35 ADVANCED_INSTANCE_USER: ubuntu
36 CUSTOMIZE_IMAGE: true
37 BUILD_TIMEOUT: 784
38 # TODO(lucasagomes): Re-enable MOD_WSGI after
39 # https://bugs.launchpad.net/neutron/+bug/1912359 is implemented
Rodolfo Alonso Hernandezc27cf6b2024-11-19 11:00:18 +000040 NEUTRON_DEPLOY_MOD_WSGI: true
Slawek Kaplonski8988a012022-04-07 10:50:44 +020041 devstack_plugins:
42 neutron: https://opendev.org/openstack/neutron.git
43 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin.git
44 tempest_plugins:
45 - neutron-tempest-plugin
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020046 # TODO(slaweq): find a way to put this list of extensions in
47 # neutron repository and keep it different per branch,
48 # then it could be removed from here
49 network_api_extensions_common: &api_extensions
Miguel Lavalleb1c7a3d2021-01-31 19:05:22 -060050 - address-group
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020051 - address-scope
52 - agent
53 - allowed-address-pairs
54 - auto-allocated-topology
55 - availability_zone
56 - binding
57 - default-subnetpools
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020058 - dns-domain-ports
59 - dns-integration
Slawek Kaplonski913c3062020-06-08 00:06:54 +020060 - dns-integration-domain-keywords
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020061 - empty-string-filtering
62 - expose-port-forwarding-in-fip
63 - expose-l3-conntrack-helper
64 - ext-gw-mode
65 - external-net
66 - extra_dhcp_opt
67 - extraroute
68 - extraroute-atomic
69 - filter-validation
70 - fip-port-details
71 - flavors
72 - floating-ip-port-forwarding
zhouhenglcbdacaa22022-09-08 08:47:04 +080073 - floating-ip-port-forwarding-detail
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020074 - floatingip-pools
75 - ip-substring-filtering
76 - l3-conntrack-helper
yangjianfeng2936a292022-02-04 11:22:11 +080077 - l3-ext-ndp-proxy
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020078 - l3-flavors
79 - l3-ha
yangjianfeng2936a292022-02-04 11:22:11 +080080 - l3-ndp-proxy
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020081 - l3_agent_scheduler
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020082 - metering
83 - multi-provider
84 - net-mtu
85 - net-mtu-writable
86 - network-ip-availability
87 - network_availability_zone
88 - network-segment-range
89 - pagination
Slawek Kaplonskiada16222021-10-07 11:49:51 +020090 - port-device-profile
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020091 - port-resource-request
elajkat4a1357b2021-08-31 10:16:25 +020092 - port-resource-request-groups
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020093 - port-mac-address-regenerate
Slawek Kaplonski65b00c02024-09-02 15:20:59 +020094 - port-trusted-vif
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020095 - port-security
96 - port-security-groups-filtering
97 - project-id
98 - provider
99 - qos
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200100 - qos-fip
101 - quotas
102 - quota_details
Miguel Lavalleb1c7a3d2021-01-31 19:05:22 -0600103 - rbac-address-group
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200104 - rbac-address-scope
105 - rbac-policies
106 - rbac-security-groups
107 - rbac-subnetpool
108 - router
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200109 - router_availability_zone
110 - security-group
Slawek Kaplonskiaa22c9e2023-05-18 18:59:26 +0200111 - security-groups-default-rules
Slawek Kaplonski63396f02023-12-06 11:01:24 +0100112 - security-groups-normalized-cidr
Hang Yange6e0ccf2021-02-26 15:07:05 -0600113 - security-groups-remote-address-group
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200114 - segment
115 - service-type
116 - sorting
117 - standard-attr-description
118 - standard-attr-revisions
119 - standard-attr-segment
120 - standard-attr-tag
121 - standard-attr-timestamp
Ihar Hrachyshkab0b597f2021-11-04 03:00:42 +0000122 - stateful-security-group
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200123 - subnet_allocation
124 - subnet-dns-publish-fixed-ip
Slawek Kaplonskia5cdede2021-06-23 09:37:04 +0200125 - subnet-service-types
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200126 - subnetpool-prefix-ops
127 - tag-ports-during-bulk-creation
128 - trunk
129 - trunk-details
130 - uplink-status-propagation
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200131 devstack_services:
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200132 tempest: true
133 neutron-dns: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200134 neutron-log: true
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200135 neutron-qos: true
136 neutron-segments: true
137 neutron-trunk: true
138 neutron-uplink-status-propagation: true
139 neutron-network-segment-range: true
140 neutron-port-forwarding: true
141 neutron-conntrack-helper: true
142 neutron-tag-ports-during-bulk-creation: true
yangjianfeng2936a292022-02-04 11:22:11 +0800143 neutron-ndp-proxy: true
Rodolfo Alonso Hernandez0da38af2024-03-05 00:03:27 +0000144 neutron-subnet-external-network: true
Slawek Kaplonski65b00c02024-09-02 15:20:59 +0200145 neutron-port-trusted-vif: true
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200146 br-ex-tcpdump: true
147 br-int-flows: true
148 # Cinder services
149 c-api: false
150 c-bak: false
151 c-sch: false
152 c-vol: false
153 cinder: false
154 # We don't need Swift to be run in the Neutron jobs
155 s-account: false
156 s-container: false
157 s-object: false
158 s-proxy: false
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200159 devstack_local_conf:
160 post-config:
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200161 $NEUTRON_CONF:
162 QUOTAS:
163 quota_router: 100
164 quota_floatingip: 500
165 quota_security_group: 150
166 quota_security_group_rule: 1000
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200167 /$NEUTRON_CORE_PLUGIN_CONF:
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200168 ml2:
169 type_drivers: flat,geneve,vlan,gre,local,vxlan
170 ml2_type_vlan:
171 network_vlan_ranges: foo:1:10
172 ml2_type_vxlan:
173 vni_ranges: 1:2000
174 ml2_type_gre:
175 tunnel_id_ranges: 1:1000
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200176 network_log:
177 local_output_log_base: /tmp/test_log.log
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200178 $NEUTRON_L3_CONF:
179 agent:
180 availability_zone: nova
181 $NEUTRON_DHCP_CONF:
182 agent:
183 availability_zone: nova
184 test-config:
185 $TEMPEST_CONFIG:
186 neutron_plugin_options:
187 provider_vlans: foo,
188 agent_availability_zone: nova
189 image_is_advanced: true
190 available_type_drivers: flat,geneve,vlan,gre,local,vxlan
191 provider_net_base_segm_id: 1
Ihar Hrachyshka889566a2024-08-22 18:08:29 +0000192 snat_rules_apply_to_nested_networks: true
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100193 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +0530194 - ^\.pylintrc$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100195 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -0400196 - ^lower-constraints.txt$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100197 - ^releasenotes/.*$
198 - ^doc/.*$
199 - ^setup.cfg$
200 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -0400201 - ^.*\.sample$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100202 - ^neutron/locale/.*$
203 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -0400204 - ^neutron/tests/fullstack/.*$
205 - ^neutron/tests/functional/.*$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100206 - ^tools/.*$
207 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +0530208 - ^plugin.spec$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100209 - ^neutron/agent/.*$
210 - ^neutron/privileged/.*$
Takashi Kajinamia78d12a2021-08-22 13:25:18 +0900211 - ^neutron_lib/tests/unit/.*$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100212 - ^neutron_tempest_plugin/scenario/.*$
yatinkarele191dde2021-12-09 12:38:42 +0530213 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +0530214 - ^roles/.*functional.*$
215 - ^playbooks/.*functional.*$
yatinkarele191dde2021-12-09 12:38:42 +0530216 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -0400217 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -0400218 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -0400219 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100220
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200221- job:
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200222 name: neutron-tempest-plugin-openvswitch
223 parent: neutron-tempest-plugin-base-nested-switch
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200224 timeout: 10000
225 vars:
yatinkarel56d4dc92024-07-19 15:03:43 +0530226 configure_swap_size: 3072
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +0100227 devstack_services:
228 # Disable OVN services
229 br-ex-tcpdump: false
230 br-int-flows: false
231 ovn-controller: false
232 ovn-northd: false
233 ovs-vswitchd: false
234 ovsdb-server: false
235 q-ovn-metadata-agent: false
236 # Neutron services
Nurmatov Mamatisa1b1c9d32021-12-27 15:37:03 +0300237 neutron-local-ip-static: true
Rodolfo Alonso Hernandez0da38af2024-03-05 00:03:27 +0000238 neutron-subnet-external-network: true
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +0100239 q-agt: true
240 q-dhcp: true
241 q-l3: true
242 q-meta: true
243 q-metering: true
Nurmatov Mamatisa1b1c9d32021-12-27 15:37:03 +0300244 network_api_extensions_openvswitch:
Slawek Kaplonski909402b2022-09-23 09:35:09 +0200245 - dhcp_agent_scheduler
Nurmatov Mamatisa1b1c9d32021-12-27 15:37:03 +0300246 - local_ip
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200247 - qos-bw-minimum-ingress
248 network_available_features: &available_features
249 - ipv6_metadata
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200250 devstack_localrc:
251 Q_AGENT: openvswitch
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +0100252 Q_ML2_TENANT_NETWORK_TYPE: vxlan
253 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200254 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_openvswitch) | join(',') }}"
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200255 devstack_local_conf:
256 post-config:
257 $NEUTRON_CONF:
258 DEFAULT:
259 enable_dvr: false
Brian Haley1945f922023-10-10 16:50:15 +0000260 l3_ha: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200261 /$NEUTRON_CORE_PLUGIN_CONF:
262 agent:
263 tunnel_types: vxlan,gre
264 ovs:
265 tunnel_bridge: br-tun
266 bridge_mappings: public:br-ex
Rodolfo Alonso Hernandez68596be2022-05-03 14:51:54 +0000267 openflow_processed_per_port: True
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200268 test-config:
269 $TEMPEST_CONFIG:
elajkat8bbd7432020-11-04 16:41:34 +0100270 network-feature-enabled:
271 available_features: "{{ network_available_features | join(',') }}"
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200272 neutron_plugin_options:
273 available_type_drivers: flat,vlan,local,vxlan
Hang Yange6e0ccf2021-02-26 15:07:05 -0600274 firewall_driver: openvswitch
Ihar Hrachyshka889566a2024-08-22 18:08:29 +0000275 snat_rules_apply_to_nested_networks: true
yatinkarel55f1f922023-10-06 18:51:31 +0530276 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +0530277 - ^\.pylintrc$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100278 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -0400279 - ^lower-constraints.txt$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100280 - ^releasenotes/.*$
281 - ^doc/.*$
282 - ^setup.cfg$
283 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -0400284 - ^.*\.sample$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100285 - ^neutron/locale/.*$
286 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -0400287 - ^neutron/tests/fullstack/.*$
288 - ^neutron/tests/functional/.*$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100289 - ^tools/.*$
290 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +0530291 - ^plugin.spec$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100292 - ^neutron/agent/ovn/.*$
293 - ^neutron/agent/windows/.*$
294 - ^neutron/plugins/ml2/drivers/linuxbridge/.*$
295 - ^neutron/plugins/ml2/drivers/macvtap/.*$
296 - ^neutron/plugins/ml2/drivers/mech_sriov/.*$
297 - ^neutron/plugins/ml2/drivers/ovn/.*$
yatinkarel9d85f292022-01-27 17:26:57 +0530298 - ^neutron/services/ovn_l3/.*$
299 - ^neutron/services/logapi/drivers/ovn/.*$
300 - ^neutron/services/portforwarding/drivers/ovn/.*$
301 - ^neutron/services/qos/drivers/linuxbridge/.*$
302 - ^neutron/services/qos/drivers/ovn/.*$
303 - ^neutron/services/trunk/drivers/linuxbridge/.*$
304 - ^neutron/services/trunk/drivers/ovn/.*$
305 - ^neutron/cmd/ovn/.*$
306 - ^neutron/common/ovn/.*$
yatinkarel007c22f2021-12-10 15:15:45 +0530307 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
308 - ^neutron_tempest_plugin/services/bgp/.*$
yatinkarele191dde2021-12-09 12:38:42 +0530309 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +0530310 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +0530311 - ^playbooks/.*dvr-multinode.*$
312 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +0530313 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +0530314 - ^playbooks/.*linuxbridge.*$
yatinkarele191dde2021-12-09 12:38:42 +0530315 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -0400316 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -0400317 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -0400318 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200319
320- job:
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200321 name: neutron-tempest-plugin-openvswitch-iptables_hybrid
322 parent: neutron-tempest-plugin-base-nested-switch
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200323 timeout: 10000
324 vars:
yatinkarel56d4dc92024-07-19 15:03:43 +0530325 configure_swap_size: 3072
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +0100326 devstack_services:
327 # Disable OVN services
328 br-ex-tcpdump: false
329 br-int-flows: false
330 ovn-controller: false
331 ovn-northd: false
332 ovs-vswitchd: false
333 ovsdb-server: false
334 q-ovn-metadata-agent: false
335 # Neutron services
Nurmatov Mamatisa1b1c9d32021-12-27 15:37:03 +0300336 neutron-local-ip: true
Rodolfo Alonso Hernandez0da38af2024-03-05 00:03:27 +0000337 neutron-subnet-external-network: true
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +0100338 q-agt: true
339 q-dhcp: true
340 q-l3: true
341 q-meta: true
342 q-metering: true
Nurmatov Mamatisa1b1c9d32021-12-27 15:37:03 +0300343 network_api_extensions_openvswitch:
Slawek Kaplonski909402b2022-09-23 09:35:09 +0200344 - dhcp_agent_scheduler
Nurmatov Mamatisa1b1c9d32021-12-27 15:37:03 +0300345 - local_ip
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200346 - logging
elajkat8bbd7432020-11-04 16:41:34 +0100347 network_available_features: *available_features
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200348 # TODO(slaweq): remove trunks subport_connectivity test from blacklist
349 # when bug https://bugs.launchpad.net/neutron/+bug/1838760 will be fixed
Alex Katzbd2bfd42021-05-26 18:12:36 +0300350 # TODO(akatz): remove established tcp session verification test when the
351 # bug https://bugzilla.redhat.com/show_bug.cgi?id=1965036 will be fixed
352 tempest_exclude_regex: "\
353 (^neutron_tempest_plugin.scenario.test_trunk.TrunkTest.test_subport_connectivity)|\
Slawek Kaplonski83979b92022-12-15 14:15:12 +0100354 (^neutron_tempest_plugin.scenario.test_security_groups.StatefulNetworkSecGroupTest.test_established_tcp_session_after_re_attachinging_sg)|\
355 (^neutron_tempest_plugin.scenario.test_security_groups.StatelessNetworkSecGroupTest.test_established_tcp_session_after_re_attachinging_sg)"
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200356 devstack_localrc:
357 Q_AGENT: openvswitch
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +0100358 Q_ML2_TENANT_NETWORK_TYPE: vxlan
359 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200360 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_openvswitch) | join(',') }}"
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200361 devstack_local_conf:
362 post-config:
363 $NEUTRON_CONF:
364 DEFAULT:
365 enable_dvr: false
Brian Haley1945f922023-10-10 16:50:15 +0000366 l3_ha: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200367 /$NEUTRON_CORE_PLUGIN_CONF:
368 agent:
369 tunnel_types: vxlan,gre
370 ovs:
371 tunnel_bridge: br-tun
372 bridge_mappings: public:br-ex
373 securitygroup:
374 firewall_driver: iptables_hybrid
375 test-config:
376 $TEMPEST_CONFIG:
elajkat8bbd7432020-11-04 16:41:34 +0100377 network-feature-enabled:
378 available_features: "{{ network_available_features | join(',') }}"
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200379 neutron_plugin_options:
380 available_type_drivers: flat,vlan,local,vxlan
Hang Yange6e0ccf2021-02-26 15:07:05 -0600381 firewall_driver: iptables_hybrid
Ihar Hrachyshka889566a2024-08-22 18:08:29 +0000382 snat_rules_apply_to_nested_networks: true
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100383 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +0530384 - ^\.pylintrc$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100385 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -0400386 - ^lower-constraints.txt$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100387 - ^releasenotes/.*$
388 - ^doc/.*$
389 - ^setup.cfg$
390 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -0400391 - ^.*\.sample$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100392 - ^neutron/locale/.*$
393 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -0400394 - ^neutron/tests/fullstack/.*$
395 - ^neutron/tests/functional/.*$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100396 - ^tools/.*$
397 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +0530398 - ^plugin.spec$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100399 - ^neutron/agent/linux/openvswitch_firewall/.*$
400 - ^neutron/agent/ovn/.*$
401 - ^neutron/agent/windows/.*$
402 - ^neutron/plugins/ml2/drivers/linuxbridge/.*$
403 - ^neutron/plugins/ml2/drivers/macvtap/.*$
404 - ^neutron/plugins/ml2/drivers/mech_sriov/.*$
405 - ^neutron/plugins/ml2/drivers/ovn/.*$
yatinkarel9d85f292022-01-27 17:26:57 +0530406 - ^neutron/services/ovn_l3/.*$
407 - ^neutron/services/logapi/drivers/ovn/.*$
408 - ^neutron/services/portforwarding/drivers/ovn/.*$
409 - ^neutron/services/qos/drivers/linuxbridge/.*$
410 - ^neutron/services/qos/drivers/ovn/.*$
411 - ^neutron/services/trunk/drivers/linuxbridge/.*$
412 - ^neutron/services/trunk/drivers/ovn/.*$
413 - ^neutron/cmd/ovn/.*$
414 - ^neutron/common/ovn/.*$
yatinkarel007c22f2021-12-10 15:15:45 +0530415 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
416 - ^neutron_tempest_plugin/services/bgp/.*$
yatinkarele191dde2021-12-09 12:38:42 +0530417 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +0530418 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +0530419 - ^playbooks/.*dvr-multinode.*$
420 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +0530421 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +0530422 - ^playbooks/.*linuxbridge.*$
yatinkarele191dde2021-12-09 12:38:42 +0530423 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -0400424 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -0400425 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -0400426 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200427
Sławek Kapłoński6a074c92022-12-13 15:28:29 +0100428- job:
Ihar Hrachyshka2f8c9562024-09-03 12:04:58 -0400429 name: neutron-tempest-plugin-ovn-enforce-scope-old-defaults
430 parent: neutron-tempest-plugin-ovn
Sławek Kapłoński6a074c92022-12-13 15:28:29 +0100431 vars:
432 devstack_localrc:
Ghanshyam608b85f2023-10-25 20:05:39 +0000433 NEUTRON_ENFORCE_SCOPE: false
Sławek Kapłoński6a074c92022-12-13 15:28:29 +0100434
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200435- job:
436 name: neutron-tempest-plugin-openvswitch-distributed-dhcp
437 parent: neutron-tempest-plugin-openvswitch
Slawek Kaplonskie7198c02021-08-04 14:13:37 +0200438 timeout: 10000
439 vars:
Slawek Kaplonski909402b2022-09-23 09:35:09 +0200440 network_api_extensions_openvswitch:
441 - local_ip
442 - qos-bw-minimum-ingress
Slawek Kaplonskie7198c02021-08-04 14:13:37 +0200443 # NOTE: DHCP extra options and dns services aren't supported with
444 # distributed DHCP L2 agent extension
445 tempest_exclude_regex: "\
446 (^neutron_tempest_plugin.scenario.test_dhcp.DHCPTest.test_extra_dhcp_opts)|\
447 (^neutron_tempest_plugin.scenario.test_internal_dns.InternalDNSTest.test_dns_domain_and_name)"
448 devstack_services:
449 q-dhcp: false
450 q-distributed-dhcp: true
451
452- job:
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200453 name: neutron-tempest-plugin-openvswitch-iptables_hybrid-distributed-dhcp
454 parent: neutron-tempest-plugin-openvswitch-iptables_hybrid
Slawek Kaplonskie7198c02021-08-04 14:13:37 +0200455 timeout: 10000
456 vars:
Slawek Kaplonski909402b2022-09-23 09:35:09 +0200457 network_api_extensions_openvswitch:
458 - local_ip
459 - logging
Slawek Kaplonskie7198c02021-08-04 14:13:37 +0200460 # NOTE: DHCP extra options and dns services aren't supported with
461 # distributed DHCP L2 agent extension
462 tempest_exclude_regex: "\
463 (^neutron_tempest_plugin.scenario.test_dhcp.DHCPTest.test_extra_dhcp_opts)|\
464 (^neutron_tempest_plugin.scenario.test_internal_dns.InternalDNSTest.test_dns_domain_and_name)"
465 devstack_services:
466 q-dhcp: false
467 q-distributed-dhcp: true
468
469- job:
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200470 name: neutron-tempest-plugin-linuxbridge
471 parent: neutron-tempest-plugin-base-nested-switch
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200472 timeout: 10000
Slawek Kaplonskide8e5032020-08-27 09:12:43 +0200473 roles:
474 - zuul: openstack/neutron
475 pre-run: playbooks/linuxbridge-scenario-pre-run.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200476 vars:
yatinkarel56d4dc92024-07-19 15:03:43 +0530477 configure_swap_size: 3072
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +0100478 devstack_services:
479 # Disable OVN services
480 br-ex-tcpdump: false
481 br-int-flows: false
482 ovn-controller: false
483 ovn-northd: false
484 ovs-vswitchd: false
485 ovsdb-server: false
486 q-ovn-metadata-agent: false
487 # Neutron services
488 q-agt: true
489 q-dhcp: true
490 q-l3: true
491 q-meta: true
492 q-metering: true
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200493 # SG logging isn't supported by linuxbridge backend
494 neutron-log: false
Eduardo Olivares088707b2020-12-01 21:13:45 +0100495 network_api_extensions_linuxbridge:
Slawek Kaplonski909402b2022-09-23 09:35:09 +0200496 - dhcp_agent_scheduler
Eduardo Olivares088707b2020-12-01 21:13:45 +0100497 - vlan-transparent
elajkat8bbd7432020-11-04 16:41:34 +0100498 network_available_features: *available_features
Eduardo Olivares088707b2020-12-01 21:13:45 +0100499 # TODO(eolivare): remove VLAN Transparency tests from blacklist
500 # when bug https://bugs.launchpad.net/neutron/+bug/1907548 will be fixed
Slawek Kaplonskicc63c422021-07-21 10:20:18 +0200501 # TODO(slaweq): remove
502 # test_established_tcp_session_after_re_attachinging_sg from the
503 # exclude regex when bug https://bugs.launchpad.net/neutron/+bug/1936911
504 # will be fixed
Slawek Kaplonski3fe3a902022-04-13 09:46:24 +0200505 # TODO(slaweq) remove test_floatingip_port_details from the exclude
506 # regex when bug https://bugs.launchpad.net/neutron/+bug/1799790 will be
507 # fixed
Slawek Kaplonskicc63c422021-07-21 10:20:18 +0200508 tempest_exclude_regex: "\
509 (^neutron_tempest_plugin.scenario.test_vlan_transparency.VlanTransparencyTest)|\
Slawek Kaplonski83979b92022-12-15 14:15:12 +0100510 (^neutron_tempest_plugin.scenario.test_security_groups.StatefulNetworkSecGroupTest.test_established_tcp_session_after_re_attachinging_sg)|\
511 (^neutron_tempest_plugin.scenario.test_security_groups.StatelessNetworkSecGroupTest.test_established_tcp_session_after_re_attachinging_sg)|\
Slawek Kaplonski3fe3a902022-04-13 09:46:24 +0200512 (^neutron_tempest_plugin.scenario.test_floatingip.FloatingIPPortDetailsTest.test_floatingip_port_details)"
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200513 devstack_localrc:
514 Q_AGENT: linuxbridge
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200515 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_linuxbridge) | join(',') }}"
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +0100516 Q_ML2_TENANT_NETWORK_TYPE: vxlan
Brian Haley973995e2025-03-26 13:21:41 -0400517 Q_ML2_PLUGIN_MECHANISM_DRIVERS: linuxbridge
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200518 devstack_local_conf:
519 post-config:
520 $NEUTRON_CONF:
521 DEFAULT:
522 enable_dvr: false
Eduardo Olivares088707b2020-12-01 21:13:45 +0100523 vlan_transparent: true
Brian Haley1945f922023-10-10 16:50:15 +0000524 l3_ha: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200525 AGENT:
526 debug_iptables_rules: true
Miguel Lavalle22173b82022-06-13 17:53:50 -0500527 EXPERIMENTAL:
528 linuxbridge: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200529 /$NEUTRON_CORE_PLUGIN_CONF:
530 ml2:
531 type_drivers: flat,vlan,local,vxlan
Eduardo Olivares088707b2020-12-01 21:13:45 +0100532 mechanism_drivers: linuxbridge
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200533 test-config:
534 $TEMPEST_CONFIG:
elajkat8bbd7432020-11-04 16:41:34 +0100535 network-feature-enabled:
536 available_features: "{{ network_available_features | join(',') }}"
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200537 neutron_plugin_options:
538 available_type_drivers: flat,vlan,local,vxlan
539 q_agent: linuxbridge
Hang Yange6e0ccf2021-02-26 15:07:05 -0600540 firewall_driver: iptables
Ihar Hrachyshka889566a2024-08-22 18:08:29 +0000541 snat_rules_apply_to_nested_networks: true
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100542 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +0530543 - ^\.pylintrc$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100544 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -0400545 - ^lower-constraints.txt$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100546 - ^releasenotes/.*$
547 - ^doc/.*$
548 - ^setup.cfg$
549 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -0400550 - ^.*\.sample$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100551 - ^neutron/locale/.*$
552 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -0400553 - ^neutron/tests/fullstack/.*$
554 - ^neutron/tests/functional/.*$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100555 - ^tools/.*$
556 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +0530557 - ^plugin.spec$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100558 - ^neutron/agent/linux/openvswitch_firewall/.*$
559 - ^neutron/agent/ovn/.*$
560 - ^neutron/agent/windows/.*$
561 - ^neutron/plugins/ml2/drivers/openvswitch/.*$
562 - ^neutron/plugins/ml2/drivers/macvtap/.*$
563 - ^neutron/plugins/ml2/drivers/mech_sriov/.*$
564 - ^neutron/plugins/ml2/drivers/ovn/.*$
yatinkarel9d85f292022-01-27 17:26:57 +0530565 - ^neutron/services/ovn_l3/.*$
566 - ^neutron/services/logapi/drivers/openvswitch/.*$
567 - ^neutron/services/logapi/drivers/ovn/.*$
568 - ^neutron/services/portforwarding/drivers/ovn/.*$
569 - ^neutron/services/qos/drivers/openvswitch/.*$
570 - ^neutron/services/qos/drivers/ovn/.*$
571 - ^neutron/services/trunk/drivers/openvswitch/.*$
572 - ^neutron/services/trunk/drivers/ovn/.*$
573 - ^neutron/cmd/ovn/.*$
574 - ^neutron/common/ovn/.*$
yatinkarel007c22f2021-12-10 15:15:45 +0530575 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
576 - ^neutron_tempest_plugin/services/bgp/.*$
yatinkarele191dde2021-12-09 12:38:42 +0530577 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +0530578 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +0530579 - ^playbooks/.*dvr-multinode.*$
580 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +0530581 - ^playbooks/.*functional.*$
yatinkarele191dde2021-12-09 12:38:42 +0530582 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -0400583 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -0400584 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -0400585 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200586
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200587- job:
588 name: neutron-tempest-plugin-ovn
589 parent: neutron-tempest-plugin-base-nested-switch
Rodolfo Alonso Hernandez99acc992021-11-03 08:30:33 +0000590 timeout: 10800
Frode Nordahl1bb8e622023-10-16 15:16:34 +0200591 pre-run: playbooks/plugin-ovn-scenario-pre-run.yaml
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000592 vars:
Eduardo Olivares088707b2020-12-01 21:13:45 +0100593 network_api_extensions_ovn:
594 - vlan-transparent
Slawek Kaplonskid4c707e2024-12-16 14:46:16 +0100595 - qinq
Frode Nordahl1bb8e622023-10-16 15:16:34 +0200596 - external-gateway-multihoming
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000597 devstack_localrc:
598 Q_AGENT: ovn
Rodolfo Alonso Hernandez45280272024-02-22 12:21:06 +0000599 OVN_AGENT_EXTENSIONS: 'metadata'
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200600 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_ovn) | join(',') }}"
Rodolfo Alonso Hernandez25cf0bc2025-02-11 08:09:50 +0000601 # NOTE(ralonsoh): during the eventlet removal, the "logger" mech
602 # driver has been removed from this list. Re-add it once the removal
603 # is finished or the mech driver does not call monkey_patch().
604 Q_ML2_PLUGIN_MECHANISM_DRIVERS: ovn
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000605 Q_ML2_PLUGIN_TYPE_DRIVERS: local,flat,vlan,geneve
606 Q_ML2_TENANT_NETWORK_TYPE: geneve
607 Q_USE_PROVIDERNET_FOR_PUBLIC: true
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000608 ENABLE_CHASSIS_AS_GW: true
609 OVN_L3_CREATE_PUBLIC_NETWORK: true
610 OVN_DBS_LOG_LEVEL: dbg
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000611 ENABLE_TLS: True
612 OVN_IGMP_SNOOPING_ENABLE: True
613 devstack_services:
614 br-ex-tcpdump: true
615 br-int-flows: true
Rodolfo Alonso Hernandez45280272024-02-22 12:21:06 +0000616 q-ovn-metadata-agent: false
617 q-ovn-agent: true
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000618 ovn-controller: true
619 ovn-northd: true
620 ovs-vswitchd: true
621 ovsdb-server: true
622 q-agt: false
623 q-dhcp: false
624 q-l3: false
625 q-meta: false
626 q-metering: false
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100627 q-qos: true
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100628 # Cinder services
629 c-api: false
630 c-bak: false
631 c-sch: false
632 c-vol: false
633 cinder: false
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000634 s-account: false
635 s-container-sync: false
636 s-container: false
637 s-object: false
638 s-proxy: false
Daniel Alvarez Sanchez366a5152023-09-07 09:06:57 +0000639 network_available_features: *available_features
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000640 devstack_local_conf:
641 post-config:
642 $NEUTRON_CONF:
643 DEFAULT:
644 enable_dvr: false
Eduardo Olivares088707b2020-12-01 21:13:45 +0100645 vlan_transparent: true
Slawek Kaplonskid4c707e2024-12-16 14:46:16 +0100646 vlan_qinq: true
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000647 /$NEUTRON_CORE_PLUGIN_CONF:
648 ml2:
649 type_drivers: local,flat,vlan,geneve
Frode Nordahl1bb8e622023-10-16 15:16:34 +0200650 ml2_type_vlan:
651 network_vlan_ranges: foo:1:10,public
Renjing Xiao6ee007c2025-02-06 18:09:25 +0000652 ovn:
653 # This feature is available in OVN v24.03.4
654 # Latest Ubuntu 24.04 provides OVN v24.03.2
655 ovn_router_indirect_snat: false
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000656 test-config:
657 $TEMPEST_CONFIG:
elajkat8bbd7432020-11-04 16:41:34 +0100658 network-feature-enabled:
Daniel Alvarez Sanchez366a5152023-09-07 09:06:57 +0000659 available_features: "{{ network_available_features | join(',') }}"
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000660 neutron_plugin_options:
Slawek Kaplonskid4c707e2024-12-16 14:46:16 +0100661 provider_vlans: public,
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000662 available_type_drivers: local,flat,vlan,geneve
663 is_igmp_snooping_enabled: True
Hang Yange6e0ccf2021-02-26 15:07:05 -0600664 firewall_driver: ovn
Ihar Hrachyshka889566a2024-08-22 18:08:29 +0000665 snat_rules_apply_to_nested_networks: false
Jakub Libosvar08f3c612021-02-07 15:50:23 +0100666 zuul_copy_output:
667 '{{ devstack_base_dir }}/data/ovs': 'logs'
668 '{{ devstack_base_dir }}/data/ovn': 'logs'
yatinkarel96747582024-06-25 18:10:03 +0530669 '{{ devstack_log_dir }}/ovn-controller.log': 'logs'
670 '{{ devstack_log_dir }}/ovn-northd.log': 'logs'
Jakub Libosvar08f3c612021-02-07 15:50:23 +0100671 '{{ devstack_log_dir }}/ovsdb-server-nb.log': 'logs'
672 '{{ devstack_log_dir }}/ovsdb-server-sb.log': 'logs'
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200673 '/var/log/ovn': 'logs'
674 '/var/log/openvswitch': 'logs'
675 '/var/lib/ovn': 'logs'
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100676 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +0530677 - ^\.pylintrc$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100678 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -0400679 - ^lower-constraints.txt$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100680 - ^releasenotes/.*$
681 - ^doc/.*$
682 - ^setup.cfg$
683 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -0400684 - ^.*\.sample$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100685 - ^neutron/locale/.*$
686 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -0400687 - ^neutron/tests/fullstack/.*$
688 - ^neutron/tests/functional/.*$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100689 - ^tools/.*$
690 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +0530691 - ^plugin.spec$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100692 - ^neutron/agent/dhcp/.*$
693 - ^neutron/agent/l2/.*$
694 - ^neutron/agent/l3/.*$
695 - ^neutron/agent/metadata/.*$
696 - ^neutron/agent/windows/.*$
697 - ^neutron/agent/dhcp_agent.py
698 - ^neutron/agent/l3_agent.py
699 - ^neutron/agent/metadata_agent.py
700 - ^neutron/agent/resource_cache.py
701 - ^neutron/agent/rpc.py
702 - ^neutron/agent/securitygroup_rpc.py
703 - ^neutron/plugins/ml2/drivers/linuxbridge/.*$
704 - ^neutron/plugins/ml2/drivers/openvswitch/.*$
705 - ^neutron/plugins/ml2/drivers/macvtap/.*$
706 - ^neutron/plugins/ml2/drivers/mech_sriov/.*$
yatinkarel9d85f292022-01-27 17:26:57 +0530707 - ^neutron/services/qos/drivers/linuxbridge/.*$
708 - ^neutron/services/qos/drivers/openvswitch/.*$
709 - ^neutron/services/trunk/drivers/linuxbridge/.*$
710 - ^neutron/services/trunk/drivers/openvswitch/.*$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100711 - ^neutron/scheduler/.*$
yatinkarel007c22f2021-12-10 15:15:45 +0530712 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
713 - ^neutron_tempest_plugin/services/bgp/.*$
yatinkarele191dde2021-12-09 12:38:42 +0530714 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +0530715 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +0530716 - ^playbooks/.*dvr-multinode.*$
717 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +0530718 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +0530719 - ^playbooks/.*linuxbridge.*$
yatinkarele191dde2021-12-09 12:38:42 +0530720 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -0400721 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -0400722 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -0400723 - ^zuul.d/base-nested-switch.yaml
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000724
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200725# TODO(slaweq): remove that job's definition as soon as new job
726# "neutron-tempest-plugin-ovn" will be used in the neutron-lib repo as
727# instead of old "neutron-tempest-plugin-api" job
728- job:
729 name: neutron-tempest-plugin-api
730 parent: neutron-tempest-plugin-ovn
731
Rodolfo Alonso Hernandez2e17b802024-10-17 06:06:19 +0000732- job: # Needed only in Neutron stable/2024.2
elajkat2fa58d92024-05-15 13:52:33 +0200733 name: neutron-tempest-plugin-api-ovs-wsgi
734 parent: neutron-tempest-plugin-openvswitch
735 voting: false
736 vars:
737 devstack_localrc:
738 NEUTRON_DEPLOY_MOD_WSGI: true
739
Rodolfo Alonso Hernandez2e17b802024-10-17 06:06:19 +0000740- job: # Needed only in Neutron stable/2024.2
elajkat2fa58d92024-05-15 13:52:33 +0200741 name: neutron-tempest-plugin-api-ovn-wsgi
742 parent: neutron-tempest-plugin-ovn
743 voting: false
744 vars:
745 devstack_localrc:
746 NEUTRON_DEPLOY_MOD_WSGI: true
747
748- job:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200749 name: neutron-tempest-plugin-dvr-multinode-scenario
LIU Yulongd304c732024-11-27 10:17:47 +0800750 parent: tempest-multinode-full-py3
751 timeout: 10800
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200752 description: |
753 Perform setup for Neutron tempest tests in multinode with DVR scenario
754 roles:
755 - zuul: openstack/devstack
756 required-projects:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200757 - openstack/neutron
758 - openstack/neutron-tempest-plugin
759 - openstack/tempest
760 pre-run: playbooks/dvr-multinode-scenario-pre-run.yaml
761 voting: false
762 vars:
763 tempest_concurrency: 4
764 tox_envlist: all
765 tempest_test_regex: ^neutron_tempest_plugin\.scenario
766 # NOTE(slaweq): in case of some tests, which requires advanced image,
767 # default test timeout set to 1200 seconds may be not enough if job is
768 # run on slow node
769 tempest_test_timeout: 2400
770 network_api_extensions_common: *api_extensions
771 network_api_extensions_dvr:
Slawek Kaplonski909402b2022-09-23 09:35:09 +0200772 - dhcp_agent_scheduler
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200773 - dvr
774 devstack_localrc:
775 USE_PYTHON3: true
776 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_dvr) | join(',') }}"
777 PHYSICAL_NETWORK: default
yatinkareld3bf7c12024-12-02 18:27:47 +0530778 CIRROS_VERSION: 0.6.3
779 DEFAULT_IMAGE_NAME: cirros-0.6.3-x86_64-uec
780 DEFAULT_IMAGE_FILE_NAME: cirros-0.6.3-x86_64-uec.tar.gz
Slawek Kaplonski7e5923a2021-10-08 16:05:21 +0200781 IMAGE_URLS: https://cloud-images.ubuntu.com/minimal/releases/focal/release/ubuntu-20.04-minimal-cloudimg-amd64.img
782 ADVANCED_IMAGE_NAME: ubuntu-20.04-minimal-cloudimg-amd64
783 ADVANCED_INSTANCE_TYPE: ntp_image_256M
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200784 ADVANCED_INSTANCE_USER: ubuntu
Slawek Kaplonski7e5923a2021-10-08 16:05:21 +0200785 CUSTOMIZE_IMAGE: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200786 BUILD_TIMEOUT: 784
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200787 Q_AGENT: openvswitch
788 Q_ML2_TENANT_NETWORK_TYPE: vxlan
789 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Rodolfo Alonso Hernandez575840d2024-07-08 19:34:25 +0000790 NEUTRON_DEPLOY_MOD_WSGI: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200791 devstack_plugins:
792 neutron: https://opendev.org/openstack/neutron.git
793 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin.git
794 tempest_plugins:
795 - neutron-tempest-plugin
796 devstack_services:
Slawek Kaplonski579b6df2021-06-11 08:47:32 +0200797 tls-proxy: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200798 tempest: true
LIU Yulongd304c732024-11-27 10:17:47 +0800799 br-ex-tcpdump: true
800 br-int-flows: true
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200801 # Disable OVN services
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200802 ovn-controller: false
803 ovn-northd: false
804 ovs-vswitchd: false
805 ovsdb-server: false
806 q-ovn-metadata-agent: false
807 # Neutron services
LIU Yulongd304c732024-11-27 10:17:47 +0800808 q-svc: true
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200809 q-agt: true
810 q-dhcp: true
811 q-l3: true
812 q-meta: true
813 q-metering: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200814 neutron-dns: true
815 neutron-qos: true
816 neutron-segments: true
817 neutron-trunk: true
818 neutron-log: true
819 neutron-port-forwarding: true
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100820 # Cinder services
821 c-api: false
822 c-bak: false
823 c-sch: false
824 c-vol: false
825 cinder: false
Slawek Kaplonskif2893442020-11-02 21:40:26 +0100826 # We don't need Swift to be run in the Neutron jobs
827 s-account: false
828 s-container: false
829 s-object: false
830 s-proxy: false
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200831 devstack_local_conf:
832 post-config:
833 $NEUTRON_CONF:
834 quotas:
835 quota_router: 100
836 quota_floatingip: 500
837 quota_security_group: 100
838 quota_security_group_rule: 1000
839 DEFAULT:
840 router_distributed: True
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200841 "/$NEUTRON_CORE_PLUGIN_CONF":
842 ml2:
843 type_drivers: flat,geneve,vlan,gre,local,vxlan
844 mechanism_drivers: openvswitch,l2population
845 ml2_type_vlan:
846 network_vlan_ranges: foo:1:10
847 ml2_type_vxlan:
848 vni_ranges: 1:2000
849 ml2_type_gre:
850 tunnel_id_ranges: 1:1000
851 agent:
852 enable_distributed_routing: True
853 l2_population: True
854 tunnel_types: vxlan,gre
855 ovs:
856 tunnel_bridge: br-tun
857 bridge_mappings: public:br-ex
858 $NEUTRON_L3_CONF:
859 DEFAULT:
860 agent_mode: dvr_snat
861 agent:
862 availability_zone: nova
863 $NEUTRON_DHCP_CONF:
864 agent:
865 availability_zone: nova
866 "/etc/neutron/api-paste.ini":
867 "composite:neutronapi_v2_0":
868 use: "call:neutron.auth:pipeline_factory"
869 noauth: "cors request_id catch_errors osprofiler extensions neutronapiapp_v2_0"
870 keystone: "cors request_id catch_errors osprofiler authtoken keystonecontext extensions neutronapiapp_v2_0"
871 test-config:
872 $TEMPEST_CONFIG:
elajkat8bbd7432020-11-04 16:41:34 +0100873 network-feature-enabled:
874 available_features: *available_features
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200875 neutron_plugin_options:
876 provider_vlans: foo,
877 agent_availability_zone: nova
878 image_is_advanced: true
879 available_type_drivers: flat,geneve,vlan,gre,local,vxlan
880 l3_agent_mode: dvr_snat
Hang Yange6e0ccf2021-02-26 15:07:05 -0600881 firewall_driver: openvswitch
LIU Yulong82d62ad2024-12-10 17:27:18 +0800882 snat_rules_apply_to_nested_networks: false
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200883 group-vars:
884 subnode:
885 devstack_services:
Slawek Kaplonski579b6df2021-06-11 08:47:32 +0200886 tls-proxy: true
LIU Yulongd304c732024-11-27 10:17:47 +0800887 br-ex-tcpdump: true
888 br-int-flows: true
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200889 # Disable OVN services
890 ovn-controller: false
891 ovn-northd: false
892 ovs-vswitchd: false
893 ovsdb-server: false
894 q-ovn-metadata-agent: false
895 # Neutron services
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200896 q-agt: true
897 q-l3: true
898 q-meta: true
899 neutron-qos: true
900 neutron-trunk: true
901 neutron-log: true
902 neutron-port-forwarding: true
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100903 # Cinder services
LIU Yulongd304c732024-11-27 10:17:47 +0800904 c-api: false
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100905 c-bak: false
LIU Yulongd304c732024-11-27 10:17:47 +0800906 c-sch: false
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100907 c-vol: false
LIU Yulongd304c732024-11-27 10:17:47 +0800908 cinder: false
Slawek Kaplonskif2893442020-11-02 21:40:26 +0100909 # We don't need Swift to be run in the Neutron jobs
910 s-account: false
911 s-container: false
912 s-object: false
913 s-proxy: false
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200914 devstack_localrc:
915 USE_PYTHON3: true
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200916 Q_AGENT: openvswitch
917 Q_ML2_TENANT_NETWORK_TYPE: vxlan
918 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200919 devstack_local_conf:
920 post-config:
921 $NEUTRON_CONF:
922 DEFAULT:
923 router_distributed: True
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200924 "/$NEUTRON_CORE_PLUGIN_CONF":
925 agent:
926 enable_distributed_routing: True
927 l2_population: True
928 tunnel_types: vxlan,gre
929 ovs:
930 tunnel_bridge: br-tun
931 bridge_mappings: public:br-ex
932 $NEUTRON_L3_CONF:
933 DEFAULT:
934 agent_mode: dvr_snat
935 agent:
936 availability_zone: nova
yatinkarel55f1f922023-10-06 18:51:31 +0530937 irrelevant-files:
938 - ^\.pylintrc$
939 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -0400940 - ^lower-constraints.txt$
yatinkarel55f1f922023-10-06 18:51:31 +0530941 - ^releasenotes/.*$
942 - ^doc/.*$
943 - ^setup.cfg$
944 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -0400945 - ^.*\.sample$
yatinkarel55f1f922023-10-06 18:51:31 +0530946 - ^neutron/locale/.*$
947 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -0400948 - ^neutron/tests/fullstack/.*$
949 - ^neutron/tests/functional/.*$
yatinkarel55f1f922023-10-06 18:51:31 +0530950 - ^tools/.*$
951 - ^tox.ini$
952 - ^plugin.spec$
953 - ^neutron/agent/ovn/.*$
954 - ^neutron/agent/windows/.*$
955 - ^neutron/plugins/ml2/drivers/linuxbridge/.*$
956 - ^neutron/plugins/ml2/drivers/macvtap/.*$
957 - ^neutron/plugins/ml2/drivers/mech_sriov/.*$
958 - ^neutron/plugins/ml2/drivers/ovn/.*$
959 - ^neutron/services/ovn_l3/.*$
960 - ^neutron/services/logapi/drivers/ovn/.*$
961 - ^neutron/services/portforwarding/drivers/ovn/.*$
962 - ^neutron/services/qos/drivers/linuxbridge/.*$
963 - ^neutron/services/qos/drivers/ovn/.*$
964 - ^neutron/services/trunk/drivers/linuxbridge/.*$
965 - ^neutron/services/trunk/drivers/ovn/.*$
966 - ^neutron/cmd/ovn/.*$
967 - ^neutron/common/ovn/.*$
968 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
969 - ^neutron_tempest_plugin/services/bgp/.*$
970 - ^rally-jobs/.*$
971 - ^roles/.*functional.*$
972 - ^playbooks/.*dynamic-routing.*$
973 - ^playbooks/.*functional.*$
974 - ^playbooks/.*linuxbridge.*$
975 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -0400976 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -0400977 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -0400978 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200979
980- job:
981 name: neutron-tempest-plugin-designate-scenario
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200982 parent: neutron-tempest-plugin-base-nested-switch
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200983 description: Neutron designate integration scenario
984 required-projects:
985 - openstack/designate
986 - openstack/designate-dashboard
987 - openstack/designate-tempest-plugin
988 timeout: 3600
989 vars:
990 network_api_extensions_common: *api_extensions
991 devstack_localrc:
992 DESIGNATE_BACKEND_DRIVER: bind9
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200993 # In this job advanced image is not needed, so it's name should be
994 # empty
995 ADVANCED_IMAGE_NAME: ""
996 NETWORK_API_EXTENSIONS: "{{ network_api_extensions_common | join(',') }}"
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200997 devstack_plugins:
998 designate: https://opendev.org/openstack/designate.git
999 devstack_services:
1000 cinder: false
1001 designate: true
1002 tempest_plugins:
1003 - designate-tempest-plugin
1004 - neutron-tempest-plugin
1005 tempest_test_regex: ^neutron_tempest_plugin\.scenario\.test_dns_integration
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001006 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301007 - ^\.pylintrc$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001008 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001009 - ^lower-constraints.txt$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001010 - ^releasenotes/.*$
1011 - ^doc/.*$
1012 - ^setup.cfg$
1013 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001014 - ^.*\.sample$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001015 - ^neutron/locale/.*$
1016 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001017 - ^neutron/tests/fullstack/.*$
1018 - ^neutron/tests/functional/.*$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001019 - ^tools/.*$
1020 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301021 - ^plugin.spec$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001022 - ^neutron/agent/.*$
1023 - ^neutron/cmd/.*$
1024 - ^neutron/privileged/.*$
1025 - ^neutron/plugins/ml2/drivers/.*$
1026 - ^neutron/scheduler/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001027 - ^neutron/services/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301028 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001029 - ^neutron_tempest_plugin/api/admin/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301030 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
1031 - ^neutron_tempest_plugin/services/bgp/.*$
yatinkarele191dde2021-12-09 12:38:42 +05301032 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301033 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301034 - ^playbooks/.*dvr-multinode.*$
1035 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301036 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301037 - ^playbooks/.*linuxbridge.*$
yatinkarele191dde2021-12-09 12:38:42 +05301038 - ^vagrant/.*$
Brian Haleyaa8581b2024-06-05 11:27:28 -04001039 # Ignore everything except for neutron/services/externaldns/
1040 - ^neutron/services/auto_allocate/.*$
1041 - ^neutron/services/conntrack_helper/.*$
1042 - ^neutron/services/firewall/.*$
1043 - ^neutron/services/flavors/.*$
1044 - ^neutron/services/l3_router/.*$
1045 - ^neutron/services/local_ip/.*$
1046 - ^neutron/services/logapi/.*$
1047 - ^neutron/services/loki/.*$
1048 - ^neutron/services/metering/.*$
1049 - ^neutron/services/ndp_proxy/.*$
1050 - ^neutron/services/network_ip_availability/.*$
1051 - ^neutron/services/network_segment_range/.*$
1052 - ^neutron/services/ovn_l3/.*$
1053 - ^neutron/services/placement_report/.*$
1054 - ^neutron/services/portforwarding/.*$
1055 - ^neutron/services/qos/.*$
1056 - ^neutron/services/rbac/.*$
1057 - ^neutron/services/revisions/.*$
1058 - ^neutron/services/segments/.*$
1059 - ^neutron/services/tag/.*$
1060 - ^neutron/services/timestamp/.*$
1061 - ^neutron/services/trunk/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001062 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001063 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001064 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001065
1066- job:
1067 name: neutron-tempest-plugin-sfc
1068 parent: neutron-tempest-plugin-base
1069 timeout: 10800
1070 required-projects:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001071 - openstack/networking-sfc
1072 - openstack/neutron
1073 - openstack/neutron-tempest-plugin
1074 - openstack/tempest
1075 vars:
elajkat3d7420a2021-05-12 11:28:40 +02001076 devstack_services:
1077 # Disable OVN services
1078 br-ex-tcpdump: false
1079 br-int-flows: false
1080 ovn-controller: false
1081 ovn-northd: false
1082 ovs-vswitchd: false
1083 ovsdb-server: false
1084 q-ovn-metadata-agent: false
1085 # Enable Neutron services that are not used by OVN
1086 q-agt: true
1087 q-dhcp: true
1088 q-l3: true
1089 q-meta: true
1090 q-metering: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001091 tempest_test_regex: ^neutron_tempest_plugin\.sfc
1092 devstack_plugins:
1093 networking-sfc: https://opendev.org/openstack/networking-sfc
1094 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin
1095 network_api_extensions_sfc:
1096 - flow_classifier
1097 - sfc
1098 devstack_localrc:
Slawek Kaplonskifea6b0b2023-01-04 10:16:20 +01001099 # TODO(slaweq): check why traceroute output is different in Cirros >
1100 # 0.6.1 which is causing failures of the networking-sfc jobs
Rodolfo Alonso Hernandez9aa8eb42023-10-14 23:29:58 +00001101 CIRROS_VERSION: 0.5.2
1102 DEFAULT_IMAGE_NAME: cirros-0.5.2-x86_64-uec
1103 DEFAULT_IMAGE_FILE_NAME: cirros-0.5.2-x86_64-uec.tar.gz
elajkat3d7420a2021-05-12 11:28:40 +02001104 Q_AGENT: openvswitch
1105 Q_ML2_TENANT_NETWORK_TYPE: vxlan
1106 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001107 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_sfc) | join(',') }}"
1108 # TODO(bcafarel): tests still fail from time to time in parallel
1109 # https://bugs.launchpad.net/neutron/+bug/1851500
1110 # https://bugs.launchpad.net/networking-sfc/+bug/1660366
1111 tempest_concurrency: 1
yatinkarel007c22f2021-12-10 15:15:45 +05301112 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301113 - ^\.pylintrc$
yatinkarel007c22f2021-12-10 15:15:45 +05301114 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001115 - ^lower-constraints.txt$
yatinkarel007c22f2021-12-10 15:15:45 +05301116 - ^releasenotes/.*$
1117 - ^doc/.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301118 - ^setup.cfg$
1119 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001120 - ^.*\.sample$
yatinkarel007c22f2021-12-10 15:15:45 +05301121 - ^neutron/locale/.*$
1122 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001123 - ^neutron/tests/fullstack/.*$
1124 - ^neutron/tests/functional/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301125 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001126 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001127 - ^neutron_tempest_plugin/scenario/admin/.*$
1128 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301129 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|tap_as_a_service|vpnaas).*$
1130 - ^neutron_tempest_plugin/services/bgp/.*$
1131 - ^tools/.*$
1132 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301133 - ^plugin.spec$
yatinkarel007c22f2021-12-10 15:15:45 +05301134 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301135 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301136 - ^playbooks/.*dvr-multinode.*$
1137 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301138 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301139 - ^playbooks/.*linuxbridge.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301140 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001141 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001142 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001143 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001144
1145- job:
1146 name: neutron-tempest-plugin-bgpvpn-bagpipe
1147 parent: neutron-tempest-plugin-base
1148 required-projects:
1149 - openstack/networking-bagpipe
1150 - openstack/networking-bgpvpn
1151 vars:
elajkat3d7420a2021-05-12 11:28:40 +02001152 devstack_services:
1153 # Disable OVN services
1154 br-ex-tcpdump: false
1155 br-int-flows: false
1156 ovn-controller: false
1157 ovn-northd: false
1158 ovs-vswitchd: false
1159 ovsdb-server: false
1160 q-ovn-metadata-agent: false
1161 # Enable Neutron services that are not used by OVN
1162 q-agt: true
1163 q-dhcp: true
1164 q-l3: true
1165 q-meta: true
1166 q-metering: true
yatinkarelb8e69d32022-09-13 17:48:00 +05301167 tempest_concurrency: 4
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001168 tempest_test_regex: ^neutron_tempest_plugin\.bgpvpn
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001169 network_api_extensions_bgpvpn:
1170 - bgpvpn
1171 - bgpvpn-routes-control
1172 devstack_localrc:
elajkat3d7420a2021-05-12 11:28:40 +02001173 Q_AGENT: openvswitch
1174 Q_ML2_TENANT_NETWORK_TYPE: vxlan
1175 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001176 NETWORKING_BGPVPN_DRIVER: "BGPVPN:BaGPipe:networking_bgpvpn.neutron.services.service_drivers.bagpipe.bagpipe_v2.BaGPipeBGPVPNDriver:default"
1177 BAGPIPE_DATAPLANE_DRIVER_IPVPN: "ovs"
1178 BAGPIPE_BGP_PEERS: "-"
Slawek Kaplonski8988a012022-04-07 10:50:44 +02001179 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_bgpvpn) | join(',') }}"
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001180 devstack_plugins:
1181 networking-bgpvpn: https://git.openstack.org/openstack/networking-bgpvpn
1182 networking-bagpipe: https://git.openstack.org/openstack/networking-bagpipe
yatinkarel007c22f2021-12-10 15:15:45 +05301183 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301184 - ^\.pylintrc$
yatinkarel007c22f2021-12-10 15:15:45 +05301185 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001186 - ^lower-constraints.txt$
yatinkarel007c22f2021-12-10 15:15:45 +05301187 - ^releasenotes/.*$
1188 - ^doc/.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301189 - ^setup.cfg$
1190 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001191 - ^.*\.sample$
yatinkarel007c22f2021-12-10 15:15:45 +05301192 - ^neutron/locale/.*$
1193 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001194 - ^neutron/tests/fullstack/.*$
1195 - ^neutron/tests/functional/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301196 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001197 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001198 - ^neutron_tempest_plugin/scenario/admin/.*$
1199 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301200 - ^neutron_tempest_plugin/(fwaas|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
1201 - ^neutron_tempest_plugin/services/bgp/.*$
1202 - ^tools/.*$
1203 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301204 - ^plugin.spec$
yatinkarel007c22f2021-12-10 15:15:45 +05301205 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301206 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301207 - ^playbooks/.*dvr-multinode.*$
1208 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301209 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301210 - ^playbooks/.*linuxbridge.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301211 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001212 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001213 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001214 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001215
1216- job:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001217 name: neutron-tempest-plugin-dynamic-routing
1218 parent: neutron-tempest-plugin-base
1219 description: |
1220 Perform setup common to all Neutron dynamic routing tempest tests
1221 required-projects:
1222 - openstack/neutron
1223 - openstack/neutron-dynamic-routing
1224 - openstack/os-ken
1225 - openstack/tempest
1226 pre-run: playbooks/dynamic-routing-pre-run.yaml
1227 vars:
1228 devstack_plugins:
1229 neutron-dynamic-routing: https://opendev.org/openstack/neutron-dynamic-routing
1230 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001231 network_api_extensions_bgp:
1232 - bgp
1233 - bgp_dragent_scheduler
1234 - bgp_4byte_asn
1235 devstack_localrc:
1236 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_bgp) | join(',') }}"
1237 devstack_services:
1238 neutron-dr: true
1239 neutron-dr-agent: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001240 tempest_concurrency: 1
1241 tempest_test_regex: ^neutron_tempest_plugin\.neutron_dynamic_routing
yatinkarel007c22f2021-12-10 15:15:45 +05301242 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301243 - ^\.pylintrc$
yatinkarel007c22f2021-12-10 15:15:45 +05301244 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001245 - ^lower-constraints.txt$
yatinkarel007c22f2021-12-10 15:15:45 +05301246 - ^releasenotes/.*$
1247 - ^doc/.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301248 - ^setup.cfg$
1249 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001250 - ^.*\.sample$
yatinkarel007c22f2021-12-10 15:15:45 +05301251 - ^neutron/locale/.*$
1252 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001253 - ^neutron/tests/fullstack/.*$
1254 - ^neutron/tests/functional/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301255 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001256 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001257 - ^neutron_tempest_plugin/scenario/admin/.*$
1258 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301259 - ^neutron_tempest_plugin/(bgpvpn|fwaas|sfc|tap_as_a_service|vpnaas).*$
1260 - ^tools/.*$
1261 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301262 - ^plugin.spec$
yatinkarel007c22f2021-12-10 15:15:45 +05301263 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301264 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301265 - ^playbooks/.*dvr-multinode.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301266 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301267 - ^playbooks/.*linuxbridge.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301268 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001269 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001270 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001271 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001272
1273- job:
zhouhenglc446cc592022-02-09 10:19:06 +08001274 name: neutron-tempest-plugin-fwaas
1275 parent: neutron-tempest-plugin-base
1276 timeout: 10800
1277 required-projects:
zhouhenglc446cc592022-02-09 10:19:06 +08001278 - openstack/neutron-fwaas
1279 - openstack/neutron
1280 - openstack/neutron-tempest-plugin
1281 - openstack/tempest
1282 vars:
Slawek Kaplonski8988a012022-04-07 10:50:44 +02001283 tempest_concurrency: 4
zhouhenglc446cc592022-02-09 10:19:06 +08001284 tempest_test_regex: ^neutron_tempest_plugin\.fwaas
1285 devstack_plugins:
1286 neutron-fwaas: https://opendev.org/openstack/neutron-fwaas.git
1287 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin.git
zhouhenglc446cc592022-02-09 10:19:06 +08001288 network_api_extensions_fwaas:
1289 - fwaas_v2
1290 devstack_localrc:
1291 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_fwaas) | join(',') }}"
1292 Q_AGENT: openvswitch
1293 Q_ML2_TENANT_NETWORK_TYPE: vxlan
1294 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
1295 devstack_services:
1296 # Disable OVN services
1297 br-ex-tcpdump: false
1298 br-int-flows: false
1299 ovn-controller: false
1300 ovn-northd: false
1301 q-ovn-metadata-agent: false
1302 # Neutron services
1303 q-agt: true
1304 q-dhcp: true
1305 q-meta: true
1306 q-metering: true
1307 q-l3: true
Slawek Kaplonski8988a012022-04-07 10:50:44 +02001308 neutron-log: false
yatinkarel91821d22022-05-19 11:11:50 +05301309 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301310 - ^\.pylintrc$
yatinkarel91821d22022-05-19 11:11:50 +05301311 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001312 - ^lower-constraints.txt$
yatinkarel91821d22022-05-19 11:11:50 +05301313 - ^releasenotes/.*$
1314 - ^doc/.*$
yatinkarel91821d22022-05-19 11:11:50 +05301315 - ^setup.cfg$
1316 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001317 - ^.*\.sample$
yatinkarel91821d22022-05-19 11:11:50 +05301318 - ^neutron/locale/.*$
1319 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001320 - ^neutron/tests/fullstack/.*$
1321 - ^neutron/tests/functional/.*$
yatinkarel91821d22022-05-19 11:11:50 +05301322 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001323 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001324 - ^neutron_tempest_plugin/scenario/admin/.*$
1325 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel91821d22022-05-19 11:11:50 +05301326 - ^neutron_tempest_plugin/(bgpvpn|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
1327 - ^neutron_tempest_plugin/services/bgp/.*$
1328 - ^tools/.*$
1329 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301330 - ^plugin.spec$
yatinkarel91821d22022-05-19 11:11:50 +05301331 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301332 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301333 - ^playbooks/.*dvr-multinode.*$
1334 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301335 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301336 - ^playbooks/.*linuxbridge.*$
yatinkarel91821d22022-05-19 11:11:50 +05301337 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001338 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001339 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001340 - ^zuul.d/base-nested-switch.yaml
zhouhenglc446cc592022-02-09 10:19:06 +08001341
1342- job:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001343 name: neutron-tempest-plugin-vpnaas
1344 parent: neutron-tempest-plugin-base
Rodolfo Alonso Hernandezb6e254e2025-03-21 08:55:16 +00001345 timeout: 5400
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001346 required-projects:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001347 - openstack/neutron
1348 - openstack/neutron-vpnaas
1349 - openstack/neutron-tempest-plugin
1350 - openstack/tempest
1351 vars:
yatinkarelb8e69d32022-09-13 17:48:00 +05301352 tempest_concurrency: 4
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001353 tempest_test_regex: ^neutron_tempest_plugin\.vpnaas
1354 devstack_plugins:
1355 neutron-vpnaas: https://opendev.org/openstack/neutron-vpnaas.git
1356 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin.git
1357 network_api_extensions_common: *api_extensions
1358 network_api_extensions_vpnaas:
1359 - vpnaas
1360 devstack_localrc:
1361 IPSEC_PACKAGE: strongswan
1362 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_vpnaas) | join(',') }}"
elajkat3a98dae2021-09-17 17:25:27 +02001363 Q_AGENT: openvswitch
1364 Q_ML2_TENANT_NETWORK_TYPE: vxlan
1365 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
1366 devstack_services:
1367 # Disable OVN services
1368 br-ex-tcpdump: false
1369 br-int-flows: false
1370 ovn-controller: false
1371 ovn-northd: false
1372 ovs-vswitchd: false
1373 ovsdb-server: false
1374 q-ovn-metadata-agent: false
1375 # Neutron services
1376 q-agt: true
1377 q-dhcp: true
1378 q-meta: true
1379 q-metering: true
1380 q-l3: true
yatinkarel007c22f2021-12-10 15:15:45 +05301381 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301382 - ^\.pylintrc$
yatinkarel007c22f2021-12-10 15:15:45 +05301383 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001384 - ^lower-constraints.txt$
yatinkarel007c22f2021-12-10 15:15:45 +05301385 - ^releasenotes/.*$
1386 - ^doc/.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301387 - ^setup.cfg$
1388 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001389 - ^.*\.sample$
yatinkarel007c22f2021-12-10 15:15:45 +05301390 - ^neutron/locale/.*$
1391 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001392 - ^neutron/tests/fullstack/.*$
1393 - ^neutron/tests/functional/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301394 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001395 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001396 - ^neutron_tempest_plugin/scenario/admin/.*$
1397 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301398 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service).*$
1399 - ^neutron_tempest_plugin/services/bgp/.*$
1400 - ^tools/.*$
1401 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301402 - ^plugin.spec$
yatinkarel007c22f2021-12-10 15:15:45 +05301403 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301404 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301405 - ^playbooks/.*dvr-multinode.*$
1406 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301407 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301408 - ^playbooks/.*linuxbridge.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301409 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001410 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001411 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001412 - ^zuul.d/base-nested-switch.yaml
elajkat4abd0682021-08-06 16:05:23 +02001413
1414- job:
Bodo Petermannaf70af32022-06-21 13:48:42 +02001415 name: neutron-tempest-plugin-vpnaas-ovn
1416 parent: neutron-tempest-plugin-base
Rodolfo Alonso Hernandezb6e254e2025-03-21 08:55:16 +00001417 timeout: 5400
Bodo Petermannaf70af32022-06-21 13:48:42 +02001418 required-projects:
1419 - openstack/neutron
1420 - openstack/neutron-vpnaas
1421 - openstack/neutron-tempest-plugin
1422 - openstack/tempest
1423 vars:
1424 tempest_concurrency: 4
1425 tempest_test_regex: ^neutron_tempest_plugin\.vpnaas
1426 devstack_plugins:
1427 neutron-vpnaas: https://opendev.org/openstack/neutron-vpnaas.git
1428 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin.git
1429 network_api_extensions_common: *api_extensions
1430 network_api_extensions_vpnaas:
1431 - vpnaas
1432 devstack_localrc:
1433 IPSEC_PACKAGE: strongswan
1434 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_vpnaas) | join(',') }}"
elajkate4c6c4f2025-02-11 10:20:16 +01001435 Q_ML2_PLUGIN_MECHANISM_DRIVERS: ovn
Bodo Petermannaf70af32022-06-21 13:48:42 +02001436 devstack_services:
1437 q-ovn-vpn-agent: true
1438 devstack_local_conf:
1439 test-config:
1440 $TEMPEST_CONFIG:
1441 neutron_vpnaas_plugin_options:
1442 skip_6in4_tests: true
1443 skip_6in6_tests: true
1444
1445 irrelevant-files:
1446 - ^\.pylintrc$
1447 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001448 - ^lower-constraints.txt$
Bodo Petermannaf70af32022-06-21 13:48:42 +02001449 - ^releasenotes/.*$
1450 - ^doc/.*$
Bodo Petermannaf70af32022-06-21 13:48:42 +02001451 - ^setup.cfg$
1452 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001453 - ^.*\.sample$
Bodo Petermannaf70af32022-06-21 13:48:42 +02001454 - ^neutron/locale/.*$
1455 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001456 - ^neutron/tests/fullstack/.*$
1457 - ^neutron/tests/functional/.*$
Bodo Petermannaf70af32022-06-21 13:48:42 +02001458 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001459 - ^neutron_tempest_plugin/api/admin/test_.*$
Bodo Petermannaf70af32022-06-21 13:48:42 +02001460 - ^neutron_tempest_plugin/scenario/admin/.*$
1461 - ^neutron_tempest_plugin/scenario/test_.*$
1462 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service).*$
1463 - ^neutron_tempest_plugin/services/bgp/.*$
1464 - ^tools/.*$
1465 - ^tox.ini$
1466 - ^plugin.spec$
1467 - ^rally-jobs/.*$
1468 - ^roles/.*functional.*$
1469 - ^playbooks/.*dvr-multinode.*$
1470 - ^playbooks/.*dynamic-routing.*$
1471 - ^playbooks/.*functional.*$
1472 - ^playbooks/.*linuxbridge.*$
1473 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001474 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001475 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001476 - ^zuul.d/base-nested-switch.yaml
Bodo Petermannaf70af32022-06-21 13:48:42 +02001477
1478- job:
elajkat4abd0682021-08-06 16:05:23 +02001479 name: neutron-tempest-plugin-tap-as-a-service
1480 parent: neutron-tempest-plugin-base
1481 description: |
1482 Perform setup common to all tap-as-a-service tempest tests
1483 roles:
1484 - zuul: openstack/devstack
1485 required-projects:
elajkat4abd0682021-08-06 16:05:23 +02001486 - openstack/neutron
1487 - openstack/neutron-tempest-plugin
1488 - openstack/tap-as-a-service
1489 - openstack/tempest
1490 vars:
yatinkarelb8e69d32022-09-13 17:48:00 +05301491 tempest_concurrency: 4
elajkat4abd0682021-08-06 16:05:23 +02001492 tempest_test_regex: ^neutron_tempest_plugin\.tap_as_a_service
1493 tox_envlist: all
elajkat4abd0682021-08-06 16:05:23 +02001494 network_api_extensions_tempest:
1495 - taas
1496 - taas-vlan-filter
1497 devstack_localrc:
1498 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_tempest) | join(',') }}"
elajkat4abd0682021-08-06 16:05:23 +02001499 BUILD_TIMEOUT: 784
1500 Q_AGENT: openvswitch
elajkat1f275e42021-10-15 12:47:55 +02001501 Q_ML2_TENANT_NETWORK_TYPE: vxlan,vlan
elajkat4abd0682021-08-06 16:05:23 +02001502 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
1503 devstack_local_conf:
1504 post-config:
1505 /$NEUTRON_CORE_PLUGIN_CONF:
1506 AGENT:
elajkat1f275e42021-10-15 12:47:55 +02001507 tunnel_types: vxlan
1508 ml2_type_vlan:
1509 network_vlan_ranges: public
elajkat4abd0682021-08-06 16:05:23 +02001510 test-config:
1511 $TEMPEST_CONFIG:
elajkat1f275e42021-10-15 12:47:55 +02001512 neutron_plugin_options:
1513 image_is_advanced: true
1514 advanced_image_flavor_ref: d1
1515 taas:
elajkat4abd0682021-08-06 16:05:23 +02001516 provider_physical_network: public
1517 provider_segmentation_id: 100
1518 image_feature_enabled:
1519 api_v2: true
1520 devstack_plugins:
1521 neutron: git://opendev.org/openstack/neutron.git
1522 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin.git
1523 tap-as-a-service: git://opendev.org/openstack/tap-as-a-service.git
1524 devstack_services:
1525 # Disable OVN services
1526 ovn-controller: false
1527 ovn-northd: false
1528 ovs-vswitchd: false
1529 ovsdb-server: false
1530 q-ovn-metadata-agent: false
1531 # Enable Neutron services that are not used by OVN
1532 q-agt: true
1533 q-dhcp: true
1534 q-l3: true
1535 q-meta: true
1536 q-metering: true
1537 br-ex-tcpdump: true
1538 br-int-flows: true
1539 base: false
1540 key: true
1541 mysql: true
1542 rabbit: true
1543 g-api: true
elajkat4abd0682021-08-06 16:05:23 +02001544 n-api: true
1545 n-cond: true
1546 n-cpu: true
1547 n-crt: true
1548 n-sch: true
1549 placement-api: true
1550 n-api-meta: true
1551 q-svc: true
Takashi Kajinamiffcc0172024-01-23 12:56:01 +09001552 neutron: true
elajkat4abd0682021-08-06 16:05:23 +02001553 taas: true
1554 taas_openvswitch_agent: true
1555 tempest: true
1556 dstat: true
yatinkarel007c22f2021-12-10 15:15:45 +05301557 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301558 - ^\.pylintrc$
elajkat4abd0682021-08-06 16:05:23 +02001559 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001560 - ^lower-constraints.txt$
elajkat4abd0682021-08-06 16:05:23 +02001561 - ^releasenotes/.*$
1562 - ^doc/.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301563 - ^setup.cfg$
elajkat4abd0682021-08-06 16:05:23 +02001564 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001565 - ^.*\.sample$
yatinkarel007c22f2021-12-10 15:15:45 +05301566 - ^neutron/locale/.*$
1567 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001568 - ^neutron/tests/fullstack/.*$
1569 - ^neutron/tests/functional/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301570 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001571 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001572 - ^neutron_tempest_plugin/scenario/admin/.*$
1573 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301574 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|vpnaas).*$
1575 - ^neutron_tempest_plugin/services/bgp/.*$
elajkat4abd0682021-08-06 16:05:23 +02001576 - ^tools/.*$
1577 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301578 - ^plugin.spec$
yatinkarel007c22f2021-12-10 15:15:45 +05301579 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301580 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301581 - ^playbooks/.*dvr-multinode.*$
1582 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301583 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301584 - ^playbooks/.*linuxbridge.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301585 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001586 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001587 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001588 - ^zuul.d/base-nested-switch.yaml