blob: d4c82ffdb0c1526d36c37be6f81de991f852ad6d [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
Rodolfo Alonso Hernandez33130ea2025-05-08 09:45:12 +000029 IMAGE_URLS: https://cloud-images.ubuntu.com/minimal/releases/jammy/release/ubuntu-22.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
Rodolfo Alonso Hernandez33130ea2025-05-08 09:45:12 +000033 ADVANCED_IMAGE_NAME: ubuntu-22.04-minimal-cloudimg-amd64
Slawek Kaplonski8988a012022-04-07 10:50:44 +020034 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
Rodolfo Alonso Hernandez33130ea2025-05-08 09:45:12 +0000613 # NOTE(ralonsoh): ubuntu-22.04-minimal is not used due to an issue with
614 # the IGMP messages. See https://bugs.launchpad.net/cloud-images/+bug/2110520
615 IMAGE_URLS: https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img
616 ADVANCED_IMAGE_NAME: jammy-server-cloudimg-amd64
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000617 devstack_services:
618 br-ex-tcpdump: true
619 br-int-flows: true
Rodolfo Alonso Hernandez45280272024-02-22 12:21:06 +0000620 q-ovn-metadata-agent: false
621 q-ovn-agent: true
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000622 ovn-controller: true
623 ovn-northd: true
624 ovs-vswitchd: true
625 ovsdb-server: true
626 q-agt: false
627 q-dhcp: false
628 q-l3: false
629 q-meta: false
630 q-metering: false
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100631 q-qos: true
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100632 # Cinder services
633 c-api: false
634 c-bak: false
635 c-sch: false
636 c-vol: false
637 cinder: false
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000638 s-account: false
639 s-container-sync: false
640 s-container: false
641 s-object: false
642 s-proxy: false
Daniel Alvarez Sanchez366a5152023-09-07 09:06:57 +0000643 network_available_features: *available_features
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000644 devstack_local_conf:
645 post-config:
646 $NEUTRON_CONF:
647 DEFAULT:
648 enable_dvr: false
Eduardo Olivares088707b2020-12-01 21:13:45 +0100649 vlan_transparent: true
Slawek Kaplonskid4c707e2024-12-16 14:46:16 +0100650 vlan_qinq: true
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000651 /$NEUTRON_CORE_PLUGIN_CONF:
652 ml2:
653 type_drivers: local,flat,vlan,geneve
Frode Nordahl1bb8e622023-10-16 15:16:34 +0200654 ml2_type_vlan:
655 network_vlan_ranges: foo:1:10,public
Renjing Xiao6ee007c2025-02-06 18:09:25 +0000656 ovn:
657 # This feature is available in OVN v24.03.4
658 # Latest Ubuntu 24.04 provides OVN v24.03.2
659 ovn_router_indirect_snat: false
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000660 test-config:
661 $TEMPEST_CONFIG:
elajkat8bbd7432020-11-04 16:41:34 +0100662 network-feature-enabled:
Daniel Alvarez Sanchez366a5152023-09-07 09:06:57 +0000663 available_features: "{{ network_available_features | join(',') }}"
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000664 neutron_plugin_options:
Slawek Kaplonskid4c707e2024-12-16 14:46:16 +0100665 provider_vlans: public,
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000666 available_type_drivers: local,flat,vlan,geneve
667 is_igmp_snooping_enabled: True
Hang Yange6e0ccf2021-02-26 15:07:05 -0600668 firewall_driver: ovn
Ihar Hrachyshka889566a2024-08-22 18:08:29 +0000669 snat_rules_apply_to_nested_networks: false
Jakub Libosvar08f3c612021-02-07 15:50:23 +0100670 zuul_copy_output:
671 '{{ devstack_base_dir }}/data/ovs': 'logs'
672 '{{ devstack_base_dir }}/data/ovn': 'logs'
yatinkarel96747582024-06-25 18:10:03 +0530673 '{{ devstack_log_dir }}/ovn-controller.log': 'logs'
674 '{{ devstack_log_dir }}/ovn-northd.log': 'logs'
Jakub Libosvar08f3c612021-02-07 15:50:23 +0100675 '{{ devstack_log_dir }}/ovsdb-server-nb.log': 'logs'
676 '{{ devstack_log_dir }}/ovsdb-server-sb.log': 'logs'
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200677 '/var/log/ovn': 'logs'
678 '/var/log/openvswitch': 'logs'
679 '/var/lib/ovn': 'logs'
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100680 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +0530681 - ^\.pylintrc$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100682 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -0400683 - ^lower-constraints.txt$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100684 - ^releasenotes/.*$
685 - ^doc/.*$
686 - ^setup.cfg$
687 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -0400688 - ^.*\.sample$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100689 - ^neutron/locale/.*$
690 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -0400691 - ^neutron/tests/fullstack/.*$
692 - ^neutron/tests/functional/.*$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100693 - ^tools/.*$
694 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +0530695 - ^plugin.spec$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100696 - ^neutron/agent/dhcp/.*$
697 - ^neutron/agent/l2/.*$
698 - ^neutron/agent/l3/.*$
699 - ^neutron/agent/metadata/.*$
700 - ^neutron/agent/windows/.*$
701 - ^neutron/agent/dhcp_agent.py
702 - ^neutron/agent/l3_agent.py
703 - ^neutron/agent/metadata_agent.py
704 - ^neutron/agent/resource_cache.py
705 - ^neutron/agent/rpc.py
706 - ^neutron/agent/securitygroup_rpc.py
707 - ^neutron/plugins/ml2/drivers/linuxbridge/.*$
708 - ^neutron/plugins/ml2/drivers/openvswitch/.*$
709 - ^neutron/plugins/ml2/drivers/macvtap/.*$
710 - ^neutron/plugins/ml2/drivers/mech_sriov/.*$
yatinkarel9d85f292022-01-27 17:26:57 +0530711 - ^neutron/services/qos/drivers/linuxbridge/.*$
712 - ^neutron/services/qos/drivers/openvswitch/.*$
713 - ^neutron/services/trunk/drivers/linuxbridge/.*$
714 - ^neutron/services/trunk/drivers/openvswitch/.*$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +0100715 - ^neutron/scheduler/.*$
yatinkarel007c22f2021-12-10 15:15:45 +0530716 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
717 - ^neutron_tempest_plugin/services/bgp/.*$
yatinkarele191dde2021-12-09 12:38:42 +0530718 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +0530719 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +0530720 - ^playbooks/.*dvr-multinode.*$
721 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +0530722 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +0530723 - ^playbooks/.*linuxbridge.*$
yatinkarele191dde2021-12-09 12:38:42 +0530724 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -0400725 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -0400726 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -0400727 - ^zuul.d/base-nested-switch.yaml
Maciej Jozefczykf5855ac2020-06-10 13:17:27 +0000728
Rodolfo Alonso Hernandez2e17b802024-10-17 06:06:19 +0000729- job: # Needed only in Neutron stable/2024.2
elajkat2fa58d92024-05-15 13:52:33 +0200730 name: neutron-tempest-plugin-api-ovs-wsgi
731 parent: neutron-tempest-plugin-openvswitch
732 voting: false
733 vars:
734 devstack_localrc:
735 NEUTRON_DEPLOY_MOD_WSGI: true
736
Rodolfo Alonso Hernandez2e17b802024-10-17 06:06:19 +0000737- job: # Needed only in Neutron stable/2024.2
elajkat2fa58d92024-05-15 13:52:33 +0200738 name: neutron-tempest-plugin-api-ovn-wsgi
739 parent: neutron-tempest-plugin-ovn
740 voting: false
741 vars:
742 devstack_localrc:
743 NEUTRON_DEPLOY_MOD_WSGI: true
744
745- job:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200746 name: neutron-tempest-plugin-dvr-multinode-scenario
LIU Yulongd304c732024-11-27 10:17:47 +0800747 parent: tempest-multinode-full-py3
748 timeout: 10800
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200749 description: |
750 Perform setup for Neutron tempest tests in multinode with DVR scenario
751 roles:
752 - zuul: openstack/devstack
753 required-projects:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200754 - openstack/neutron
755 - openstack/neutron-tempest-plugin
756 - openstack/tempest
757 pre-run: playbooks/dvr-multinode-scenario-pre-run.yaml
758 voting: false
759 vars:
760 tempest_concurrency: 4
761 tox_envlist: all
762 tempest_test_regex: ^neutron_tempest_plugin\.scenario
763 # NOTE(slaweq): in case of some tests, which requires advanced image,
764 # default test timeout set to 1200 seconds may be not enough if job is
765 # run on slow node
766 tempest_test_timeout: 2400
767 network_api_extensions_common: *api_extensions
768 network_api_extensions_dvr:
Slawek Kaplonski909402b2022-09-23 09:35:09 +0200769 - dhcp_agent_scheduler
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200770 - dvr
771 devstack_localrc:
772 USE_PYTHON3: true
773 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_dvr) | join(',') }}"
774 PHYSICAL_NETWORK: default
yatinkareld3bf7c12024-12-02 18:27:47 +0530775 CIRROS_VERSION: 0.6.3
776 DEFAULT_IMAGE_NAME: cirros-0.6.3-x86_64-uec
777 DEFAULT_IMAGE_FILE_NAME: cirros-0.6.3-x86_64-uec.tar.gz
Rodolfo Alonso Hernandez33130ea2025-05-08 09:45:12 +0000778 IMAGE_URLS: https://cloud-images.ubuntu.com/minimal/releases/jammy/release/ubuntu-22.04-minimal-cloudimg-amd64.img
779 ADVANCED_IMAGE_NAME: ubuntu-22.04-minimal-cloudimg-amd64
Slawek Kaplonski7e5923a2021-10-08 16:05:21 +0200780 ADVANCED_INSTANCE_TYPE: ntp_image_256M
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200781 ADVANCED_INSTANCE_USER: ubuntu
Slawek Kaplonski7e5923a2021-10-08 16:05:21 +0200782 CUSTOMIZE_IMAGE: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200783 BUILD_TIMEOUT: 784
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200784 Q_AGENT: openvswitch
785 Q_ML2_TENANT_NETWORK_TYPE: vxlan
786 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Rodolfo Alonso Hernandez575840d2024-07-08 19:34:25 +0000787 NEUTRON_DEPLOY_MOD_WSGI: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200788 devstack_plugins:
789 neutron: https://opendev.org/openstack/neutron.git
790 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin.git
791 tempest_plugins:
792 - neutron-tempest-plugin
793 devstack_services:
Slawek Kaplonski579b6df2021-06-11 08:47:32 +0200794 tls-proxy: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200795 tempest: true
LIU Yulongd304c732024-11-27 10:17:47 +0800796 br-ex-tcpdump: true
797 br-int-flows: true
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200798 # Disable OVN services
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200799 ovn-controller: false
800 ovn-northd: false
801 ovs-vswitchd: false
802 ovsdb-server: false
803 q-ovn-metadata-agent: false
804 # Neutron services
LIU Yulongd304c732024-11-27 10:17:47 +0800805 q-svc: true
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200806 q-agt: true
807 q-dhcp: true
808 q-l3: true
809 q-meta: true
810 q-metering: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200811 neutron-dns: true
812 neutron-qos: true
813 neutron-segments: true
814 neutron-trunk: true
815 neutron-log: true
816 neutron-port-forwarding: true
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100817 # Cinder services
818 c-api: false
819 c-bak: false
820 c-sch: false
821 c-vol: false
822 cinder: false
Slawek Kaplonskif2893442020-11-02 21:40:26 +0100823 # We don't need Swift to be run in the Neutron jobs
824 s-account: false
825 s-container: false
826 s-object: false
827 s-proxy: false
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200828 devstack_local_conf:
829 post-config:
830 $NEUTRON_CONF:
831 quotas:
832 quota_router: 100
833 quota_floatingip: 500
834 quota_security_group: 100
835 quota_security_group_rule: 1000
836 DEFAULT:
837 router_distributed: True
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200838 "/$NEUTRON_CORE_PLUGIN_CONF":
839 ml2:
840 type_drivers: flat,geneve,vlan,gre,local,vxlan
841 mechanism_drivers: openvswitch,l2population
842 ml2_type_vlan:
843 network_vlan_ranges: foo:1:10
844 ml2_type_vxlan:
845 vni_ranges: 1:2000
846 ml2_type_gre:
847 tunnel_id_ranges: 1:1000
848 agent:
849 enable_distributed_routing: True
850 l2_population: True
851 tunnel_types: vxlan,gre
852 ovs:
853 tunnel_bridge: br-tun
854 bridge_mappings: public:br-ex
855 $NEUTRON_L3_CONF:
856 DEFAULT:
857 agent_mode: dvr_snat
858 agent:
859 availability_zone: nova
860 $NEUTRON_DHCP_CONF:
861 agent:
862 availability_zone: nova
863 "/etc/neutron/api-paste.ini":
864 "composite:neutronapi_v2_0":
865 use: "call:neutron.auth:pipeline_factory"
866 noauth: "cors request_id catch_errors osprofiler extensions neutronapiapp_v2_0"
867 keystone: "cors request_id catch_errors osprofiler authtoken keystonecontext extensions neutronapiapp_v2_0"
868 test-config:
869 $TEMPEST_CONFIG:
elajkat8bbd7432020-11-04 16:41:34 +0100870 network-feature-enabled:
871 available_features: *available_features
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200872 neutron_plugin_options:
873 provider_vlans: foo,
874 agent_availability_zone: nova
875 image_is_advanced: true
876 available_type_drivers: flat,geneve,vlan,gre,local,vxlan
877 l3_agent_mode: dvr_snat
Hang Yange6e0ccf2021-02-26 15:07:05 -0600878 firewall_driver: openvswitch
LIU Yulong82d62ad2024-12-10 17:27:18 +0800879 snat_rules_apply_to_nested_networks: false
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200880 group-vars:
881 subnode:
882 devstack_services:
Slawek Kaplonski579b6df2021-06-11 08:47:32 +0200883 tls-proxy: true
LIU Yulongd304c732024-11-27 10:17:47 +0800884 br-ex-tcpdump: true
885 br-int-flows: true
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200886 # Disable OVN services
887 ovn-controller: false
888 ovn-northd: false
889 ovs-vswitchd: false
890 ovsdb-server: false
891 q-ovn-metadata-agent: false
892 # Neutron services
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200893 q-agt: true
894 q-l3: true
895 q-meta: true
896 neutron-qos: true
897 neutron-trunk: true
898 neutron-log: true
899 neutron-port-forwarding: true
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100900 # Cinder services
LIU Yulongd304c732024-11-27 10:17:47 +0800901 c-api: false
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100902 c-bak: false
LIU Yulongd304c732024-11-27 10:17:47 +0800903 c-sch: false
Slawek Kaplonski643820c2020-11-12 16:48:12 +0100904 c-vol: false
LIU Yulongd304c732024-11-27 10:17:47 +0800905 cinder: false
Slawek Kaplonskif2893442020-11-02 21:40:26 +0100906 # We don't need Swift to be run in the Neutron jobs
907 s-account: false
908 s-container: false
909 s-object: false
910 s-proxy: false
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200911 devstack_localrc:
912 USE_PYTHON3: true
Slawek Kaplonskic28b4002021-06-09 09:52:01 +0200913 Q_AGENT: openvswitch
914 Q_ML2_TENANT_NETWORK_TYPE: vxlan
915 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200916 devstack_local_conf:
917 post-config:
918 $NEUTRON_CONF:
919 DEFAULT:
920 router_distributed: True
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200921 "/$NEUTRON_CORE_PLUGIN_CONF":
922 agent:
923 enable_distributed_routing: True
924 l2_population: True
925 tunnel_types: vxlan,gre
926 ovs:
927 tunnel_bridge: br-tun
928 bridge_mappings: public:br-ex
929 $NEUTRON_L3_CONF:
930 DEFAULT:
931 agent_mode: dvr_snat
932 agent:
933 availability_zone: nova
yatinkarel55f1f922023-10-06 18:51:31 +0530934 irrelevant-files:
935 - ^\.pylintrc$
936 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -0400937 - ^lower-constraints.txt$
yatinkarel55f1f922023-10-06 18:51:31 +0530938 - ^releasenotes/.*$
939 - ^doc/.*$
940 - ^setup.cfg$
941 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -0400942 - ^.*\.sample$
yatinkarel55f1f922023-10-06 18:51:31 +0530943 - ^neutron/locale/.*$
944 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -0400945 - ^neutron/tests/fullstack/.*$
946 - ^neutron/tests/functional/.*$
yatinkarel55f1f922023-10-06 18:51:31 +0530947 - ^tools/.*$
948 - ^tox.ini$
949 - ^plugin.spec$
950 - ^neutron/agent/ovn/.*$
951 - ^neutron/agent/windows/.*$
952 - ^neutron/plugins/ml2/drivers/linuxbridge/.*$
953 - ^neutron/plugins/ml2/drivers/macvtap/.*$
954 - ^neutron/plugins/ml2/drivers/mech_sriov/.*$
955 - ^neutron/plugins/ml2/drivers/ovn/.*$
956 - ^neutron/services/ovn_l3/.*$
957 - ^neutron/services/logapi/drivers/ovn/.*$
958 - ^neutron/services/portforwarding/drivers/ovn/.*$
959 - ^neutron/services/qos/drivers/linuxbridge/.*$
960 - ^neutron/services/qos/drivers/ovn/.*$
961 - ^neutron/services/trunk/drivers/linuxbridge/.*$
962 - ^neutron/services/trunk/drivers/ovn/.*$
963 - ^neutron/cmd/ovn/.*$
964 - ^neutron/common/ovn/.*$
965 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
966 - ^neutron_tempest_plugin/services/bgp/.*$
967 - ^rally-jobs/.*$
968 - ^roles/.*functional.*$
969 - ^playbooks/.*dynamic-routing.*$
970 - ^playbooks/.*functional.*$
971 - ^playbooks/.*linuxbridge.*$
972 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -0400973 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -0400974 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -0400975 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200976
977- job:
978 name: neutron-tempest-plugin-designate-scenario
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200979 parent: neutron-tempest-plugin-base-nested-switch
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200980 description: Neutron designate integration scenario
981 required-projects:
982 - openstack/designate
983 - openstack/designate-dashboard
984 - openstack/designate-tempest-plugin
985 timeout: 3600
986 vars:
987 network_api_extensions_common: *api_extensions
988 devstack_localrc:
989 DESIGNATE_BACKEND_DRIVER: bind9
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200990 # In this job advanced image is not needed, so it's name should be
991 # empty
992 ADVANCED_IMAGE_NAME: ""
993 NETWORK_API_EXTENSIONS: "{{ network_api_extensions_common | join(',') }}"
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200994 devstack_plugins:
995 designate: https://opendev.org/openstack/designate.git
996 devstack_services:
997 cinder: false
998 designate: true
999 tempest_plugins:
1000 - designate-tempest-plugin
1001 - neutron-tempest-plugin
1002 tempest_test_regex: ^neutron_tempest_plugin\.scenario\.test_dns_integration
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001003 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301004 - ^\.pylintrc$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001005 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001006 - ^lower-constraints.txt$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001007 - ^releasenotes/.*$
1008 - ^doc/.*$
1009 - ^setup.cfg$
1010 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001011 - ^.*\.sample$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001012 - ^neutron/locale/.*$
1013 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001014 - ^neutron/tests/fullstack/.*$
1015 - ^neutron/tests/functional/.*$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001016 - ^tools/.*$
1017 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301018 - ^plugin.spec$
Slawek Kaplonskid89e7e32021-02-04 12:12:27 +01001019 - ^neutron/agent/.*$
1020 - ^neutron/cmd/.*$
1021 - ^neutron/privileged/.*$
1022 - ^neutron/plugins/ml2/drivers/.*$
1023 - ^neutron/scheduler/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001024 - ^neutron/services/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301025 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001026 - ^neutron_tempest_plugin/api/admin/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301027 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
1028 - ^neutron_tempest_plugin/services/bgp/.*$
yatinkarele191dde2021-12-09 12:38:42 +05301029 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301030 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301031 - ^playbooks/.*dvr-multinode.*$
1032 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301033 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301034 - ^playbooks/.*linuxbridge.*$
yatinkarele191dde2021-12-09 12:38:42 +05301035 - ^vagrant/.*$
Brian Haleyaa8581b2024-06-05 11:27:28 -04001036 # Ignore everything except for neutron/services/externaldns/
1037 - ^neutron/services/auto_allocate/.*$
1038 - ^neutron/services/conntrack_helper/.*$
1039 - ^neutron/services/firewall/.*$
1040 - ^neutron/services/flavors/.*$
1041 - ^neutron/services/l3_router/.*$
1042 - ^neutron/services/local_ip/.*$
1043 - ^neutron/services/logapi/.*$
1044 - ^neutron/services/loki/.*$
1045 - ^neutron/services/metering/.*$
1046 - ^neutron/services/ndp_proxy/.*$
1047 - ^neutron/services/network_ip_availability/.*$
1048 - ^neutron/services/network_segment_range/.*$
1049 - ^neutron/services/ovn_l3/.*$
1050 - ^neutron/services/placement_report/.*$
1051 - ^neutron/services/portforwarding/.*$
1052 - ^neutron/services/qos/.*$
1053 - ^neutron/services/rbac/.*$
1054 - ^neutron/services/revisions/.*$
1055 - ^neutron/services/segments/.*$
1056 - ^neutron/services/tag/.*$
1057 - ^neutron/services/timestamp/.*$
1058 - ^neutron/services/trunk/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001059 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001060 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001061 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001062
1063- job:
1064 name: neutron-tempest-plugin-sfc
1065 parent: neutron-tempest-plugin-base
1066 timeout: 10800
1067 required-projects:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001068 - openstack/networking-sfc
1069 - openstack/neutron
1070 - openstack/neutron-tempest-plugin
1071 - openstack/tempest
1072 vars:
elajkat3d7420a2021-05-12 11:28:40 +02001073 devstack_services:
1074 # Disable OVN services
1075 br-ex-tcpdump: false
1076 br-int-flows: false
1077 ovn-controller: false
1078 ovn-northd: false
1079 ovs-vswitchd: false
1080 ovsdb-server: false
1081 q-ovn-metadata-agent: false
1082 # Enable Neutron services that are not used by OVN
1083 q-agt: true
1084 q-dhcp: true
1085 q-l3: true
1086 q-meta: true
1087 q-metering: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001088 tempest_test_regex: ^neutron_tempest_plugin\.sfc
1089 devstack_plugins:
1090 networking-sfc: https://opendev.org/openstack/networking-sfc
1091 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin
1092 network_api_extensions_sfc:
1093 - flow_classifier
1094 - sfc
1095 devstack_localrc:
Slawek Kaplonskifea6b0b2023-01-04 10:16:20 +01001096 # TODO(slaweq): check why traceroute output is different in Cirros >
1097 # 0.6.1 which is causing failures of the networking-sfc jobs
Rodolfo Alonso Hernandez9aa8eb42023-10-14 23:29:58 +00001098 CIRROS_VERSION: 0.5.2
1099 DEFAULT_IMAGE_NAME: cirros-0.5.2-x86_64-uec
1100 DEFAULT_IMAGE_FILE_NAME: cirros-0.5.2-x86_64-uec.tar.gz
elajkat3d7420a2021-05-12 11:28:40 +02001101 Q_AGENT: openvswitch
1102 Q_ML2_TENANT_NETWORK_TYPE: vxlan
1103 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001104 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_sfc) | join(',') }}"
1105 # TODO(bcafarel): tests still fail from time to time in parallel
1106 # https://bugs.launchpad.net/neutron/+bug/1851500
1107 # https://bugs.launchpad.net/networking-sfc/+bug/1660366
1108 tempest_concurrency: 1
yatinkarel007c22f2021-12-10 15:15:45 +05301109 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301110 - ^\.pylintrc$
yatinkarel007c22f2021-12-10 15:15:45 +05301111 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001112 - ^lower-constraints.txt$
yatinkarel007c22f2021-12-10 15:15:45 +05301113 - ^releasenotes/.*$
1114 - ^doc/.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301115 - ^setup.cfg$
1116 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001117 - ^.*\.sample$
yatinkarel007c22f2021-12-10 15:15:45 +05301118 - ^neutron/locale/.*$
1119 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001120 - ^neutron/tests/fullstack/.*$
1121 - ^neutron/tests/functional/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301122 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001123 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001124 - ^neutron_tempest_plugin/scenario/admin/.*$
1125 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301126 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|tap_as_a_service|vpnaas).*$
1127 - ^neutron_tempest_plugin/services/bgp/.*$
1128 - ^tools/.*$
1129 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301130 - ^plugin.spec$
yatinkarel007c22f2021-12-10 15:15:45 +05301131 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301132 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301133 - ^playbooks/.*dvr-multinode.*$
1134 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301135 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301136 - ^playbooks/.*linuxbridge.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301137 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001138 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001139 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001140 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001141
1142- job:
1143 name: neutron-tempest-plugin-bgpvpn-bagpipe
1144 parent: neutron-tempest-plugin-base
1145 required-projects:
1146 - openstack/networking-bagpipe
1147 - openstack/networking-bgpvpn
elajkat55b1e652025-05-26 17:57:34 +02001148 timeout: 10800
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001149 vars:
elajkat3d7420a2021-05-12 11:28:40 +02001150 devstack_services:
1151 # Disable OVN services
1152 br-ex-tcpdump: false
1153 br-int-flows: false
1154 ovn-controller: false
1155 ovn-northd: false
1156 ovs-vswitchd: false
1157 ovsdb-server: false
1158 q-ovn-metadata-agent: false
1159 # Enable Neutron services that are not used by OVN
1160 q-agt: true
1161 q-dhcp: true
1162 q-l3: true
1163 q-meta: true
1164 q-metering: true
yatinkarelb8e69d32022-09-13 17:48:00 +05301165 tempest_concurrency: 4
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001166 tempest_test_regex: ^neutron_tempest_plugin\.bgpvpn
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001167 network_api_extensions_bgpvpn:
1168 - bgpvpn
1169 - bgpvpn-routes-control
1170 devstack_localrc:
elajkat3d7420a2021-05-12 11:28:40 +02001171 Q_AGENT: openvswitch
1172 Q_ML2_TENANT_NETWORK_TYPE: vxlan
1173 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001174 NETWORKING_BGPVPN_DRIVER: "BGPVPN:BaGPipe:networking_bgpvpn.neutron.services.service_drivers.bagpipe.bagpipe_v2.BaGPipeBGPVPNDriver:default"
1175 BAGPIPE_DATAPLANE_DRIVER_IPVPN: "ovs"
1176 BAGPIPE_BGP_PEERS: "-"
Slawek Kaplonski8988a012022-04-07 10:50:44 +02001177 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_bgpvpn) | join(',') }}"
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001178 devstack_plugins:
1179 networking-bgpvpn: https://git.openstack.org/openstack/networking-bgpvpn
1180 networking-bagpipe: https://git.openstack.org/openstack/networking-bagpipe
yatinkarel007c22f2021-12-10 15:15:45 +05301181 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301182 - ^\.pylintrc$
yatinkarel007c22f2021-12-10 15:15:45 +05301183 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001184 - ^lower-constraints.txt$
yatinkarel007c22f2021-12-10 15:15:45 +05301185 - ^releasenotes/.*$
1186 - ^doc/.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301187 - ^setup.cfg$
1188 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001189 - ^.*\.sample$
yatinkarel007c22f2021-12-10 15:15:45 +05301190 - ^neutron/locale/.*$
1191 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001192 - ^neutron/tests/fullstack/.*$
1193 - ^neutron/tests/functional/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301194 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001195 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001196 - ^neutron_tempest_plugin/scenario/admin/.*$
1197 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301198 - ^neutron_tempest_plugin/(fwaas|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
1199 - ^neutron_tempest_plugin/services/bgp/.*$
1200 - ^tools/.*$
1201 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301202 - ^plugin.spec$
yatinkarel007c22f2021-12-10 15:15:45 +05301203 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301204 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301205 - ^playbooks/.*dvr-multinode.*$
1206 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301207 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301208 - ^playbooks/.*linuxbridge.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301209 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001210 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001211 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001212 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001213
1214- job:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001215 name: neutron-tempest-plugin-dynamic-routing
1216 parent: neutron-tempest-plugin-base
1217 description: |
1218 Perform setup common to all Neutron dynamic routing tempest tests
1219 required-projects:
1220 - openstack/neutron
1221 - openstack/neutron-dynamic-routing
1222 - openstack/os-ken
1223 - openstack/tempest
1224 pre-run: playbooks/dynamic-routing-pre-run.yaml
1225 vars:
1226 devstack_plugins:
1227 neutron-dynamic-routing: https://opendev.org/openstack/neutron-dynamic-routing
1228 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001229 network_api_extensions_bgp:
1230 - bgp
1231 - bgp_dragent_scheduler
1232 - bgp_4byte_asn
1233 devstack_localrc:
1234 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_bgp) | join(',') }}"
1235 devstack_services:
1236 neutron-dr: true
1237 neutron-dr-agent: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001238 tempest_concurrency: 1
1239 tempest_test_regex: ^neutron_tempest_plugin\.neutron_dynamic_routing
yatinkarel007c22f2021-12-10 15:15:45 +05301240 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301241 - ^\.pylintrc$
yatinkarel007c22f2021-12-10 15:15:45 +05301242 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001243 - ^lower-constraints.txt$
yatinkarel007c22f2021-12-10 15:15:45 +05301244 - ^releasenotes/.*$
1245 - ^doc/.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301246 - ^setup.cfg$
1247 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001248 - ^.*\.sample$
yatinkarel007c22f2021-12-10 15:15:45 +05301249 - ^neutron/locale/.*$
1250 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001251 - ^neutron/tests/fullstack/.*$
1252 - ^neutron/tests/functional/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301253 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001254 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001255 - ^neutron_tempest_plugin/scenario/admin/.*$
1256 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301257 - ^neutron_tempest_plugin/(bgpvpn|fwaas|sfc|tap_as_a_service|vpnaas).*$
1258 - ^tools/.*$
1259 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301260 - ^plugin.spec$
yatinkarel007c22f2021-12-10 15:15:45 +05301261 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301262 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301263 - ^playbooks/.*dvr-multinode.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301264 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301265 - ^playbooks/.*linuxbridge.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301266 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001267 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001268 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001269 - ^zuul.d/base-nested-switch.yaml
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001270
1271- job:
Slawek Kaplonskie32b2e12025-04-17 16:07:35 +02001272 name: neutron-tempest-plugin-fwaas-ovn
1273 parent: neutron-tempest-plugin-ovn
zhouhenglc446cc592022-02-09 10:19:06 +08001274 timeout: 10800
1275 required-projects:
zhouhenglc446cc592022-02-09 10:19:06 +08001276 - openstack/neutron-fwaas
1277 - openstack/neutron
1278 - openstack/neutron-tempest-plugin
1279 - openstack/tempest
1280 vars:
Slawek Kaplonski8988a012022-04-07 10:50:44 +02001281 tempest_concurrency: 4
zhouhenglc446cc592022-02-09 10:19:06 +08001282 tempest_test_regex: ^neutron_tempest_plugin\.fwaas
1283 devstack_plugins:
1284 neutron-fwaas: https://opendev.org/openstack/neutron-fwaas.git
zhouhenglc446cc592022-02-09 10:19:06 +08001285 network_api_extensions_fwaas:
1286 - fwaas_v2
1287 devstack_localrc:
1288 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_fwaas) | join(',') }}"
Slawek Kaplonskie32b2e12025-04-17 16:07:35 +02001289 devstack_local_conf:
1290 test-config:
1291 $TEMPEST_CONFIG:
1292 fwaas:
1293 driver: ovn
1294 irrelevant-files: &fwaas_irrelevant_files
yatinkarel3ff83002022-09-27 10:55:55 +05301295 - ^\.pylintrc$
yatinkarel91821d22022-05-19 11:11:50 +05301296 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001297 - ^lower-constraints.txt$
yatinkarel91821d22022-05-19 11:11:50 +05301298 - ^releasenotes/.*$
1299 - ^doc/.*$
yatinkarel91821d22022-05-19 11:11:50 +05301300 - ^setup.cfg$
1301 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001302 - ^.*\.sample$
yatinkarel91821d22022-05-19 11:11:50 +05301303 - ^neutron/locale/.*$
1304 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001305 - ^neutron/tests/fullstack/.*$
1306 - ^neutron/tests/functional/.*$
yatinkarel91821d22022-05-19 11:11:50 +05301307 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001308 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001309 - ^neutron_tempest_plugin/scenario/admin/.*$
1310 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel91821d22022-05-19 11:11:50 +05301311 - ^neutron_tempest_plugin/(bgpvpn|neutron_dynamic_routing|sfc|tap_as_a_service|vpnaas).*$
1312 - ^neutron_tempest_plugin/services/bgp/.*$
1313 - ^tools/.*$
1314 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301315 - ^plugin.spec$
yatinkarel91821d22022-05-19 11:11:50 +05301316 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301317 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301318 - ^playbooks/.*dvr-multinode.*$
1319 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301320 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301321 - ^playbooks/.*linuxbridge.*$
yatinkarel91821d22022-05-19 11:11:50 +05301322 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001323 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001324 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001325 - ^zuul.d/base-nested-switch.yaml
zhouhenglc446cc592022-02-09 10:19:06 +08001326
1327- job:
Slawek Kaplonskie32b2e12025-04-17 16:07:35 +02001328 name: neutron-tempest-plugin-fwaas-openvswitch
1329 parent: neutron-tempest-plugin-openvswitch
1330 required-projects:
1331 - openstack/neutron-fwaas
1332 - openstack/neutron
1333 - openstack/neutron-tempest-plugin
1334 - openstack/tempest
1335 vars:
1336 tempest_concurrency: 4
1337 tempest_test_regex: ^neutron_tempest_plugin\.fwaas
1338 devstack_plugins:
1339 neutron-fwaas: https://opendev.org/openstack/neutron-fwaas.git
1340 network_api_extensions_fwaas:
1341 - fwaas_v2
1342 devstack_localrc:
1343 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_fwaas) | join(',') }}"
1344 devstack_services:
1345 # Neutron services
1346 q-agt: true
1347 q-dhcp: true
1348 q-meta: true
1349 q-metering: true
1350 q-l3: true
1351 neutron-log: false
1352 devstack_local_conf:
1353 test-config:
1354 $TEMPEST_CONFIG:
1355 fwaas:
1356 driver: openvswitch
1357 irrelevant-files: *fwaas_irrelevant_files
1358
Slawek Kaplonskie32b2e12025-04-17 16:07:35 +02001359- job:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001360 name: neutron-tempest-plugin-vpnaas
1361 parent: neutron-tempest-plugin-base
Rodolfo Alonso Hernandezb6e254e2025-03-21 08:55:16 +00001362 timeout: 5400
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001363 required-projects:
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001364 - openstack/neutron
1365 - openstack/neutron-vpnaas
1366 - openstack/neutron-tempest-plugin
1367 - openstack/tempest
1368 vars:
yatinkarelb8e69d32022-09-13 17:48:00 +05301369 tempest_concurrency: 4
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001370 tempest_test_regex: ^neutron_tempest_plugin\.vpnaas
1371 devstack_plugins:
1372 neutron-vpnaas: https://opendev.org/openstack/neutron-vpnaas.git
1373 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin.git
1374 network_api_extensions_common: *api_extensions
1375 network_api_extensions_vpnaas:
1376 - vpnaas
1377 devstack_localrc:
1378 IPSEC_PACKAGE: strongswan
1379 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_vpnaas) | join(',') }}"
elajkat3a98dae2021-09-17 17:25:27 +02001380 Q_AGENT: openvswitch
1381 Q_ML2_TENANT_NETWORK_TYPE: vxlan
1382 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
1383 devstack_services:
1384 # Disable OVN services
1385 br-ex-tcpdump: false
1386 br-int-flows: false
1387 ovn-controller: false
1388 ovn-northd: false
1389 ovs-vswitchd: false
1390 ovsdb-server: false
1391 q-ovn-metadata-agent: false
1392 # Neutron services
1393 q-agt: true
1394 q-dhcp: true
1395 q-meta: true
1396 q-metering: true
1397 q-l3: true
yatinkarel007c22f2021-12-10 15:15:45 +05301398 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301399 - ^\.pylintrc$
yatinkarel007c22f2021-12-10 15:15:45 +05301400 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001401 - ^lower-constraints.txt$
yatinkarel007c22f2021-12-10 15:15:45 +05301402 - ^releasenotes/.*$
1403 - ^doc/.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301404 - ^setup.cfg$
1405 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001406 - ^.*\.sample$
yatinkarel007c22f2021-12-10 15:15:45 +05301407 - ^neutron/locale/.*$
1408 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001409 - ^neutron/tests/fullstack/.*$
1410 - ^neutron/tests/functional/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301411 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001412 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001413 - ^neutron_tempest_plugin/scenario/admin/.*$
1414 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301415 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service).*$
1416 - ^neutron_tempest_plugin/services/bgp/.*$
1417 - ^tools/.*$
1418 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301419 - ^plugin.spec$
yatinkarel007c22f2021-12-10 15:15:45 +05301420 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301421 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301422 - ^playbooks/.*dvr-multinode.*$
1423 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301424 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301425 - ^playbooks/.*linuxbridge.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301426 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001427 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001428 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001429 - ^zuul.d/base-nested-switch.yaml
elajkat4abd0682021-08-06 16:05:23 +02001430
1431- job:
Bodo Petermannaf70af32022-06-21 13:48:42 +02001432 name: neutron-tempest-plugin-vpnaas-ovn
1433 parent: neutron-tempest-plugin-base
Rodolfo Alonso Hernandezb6e254e2025-03-21 08:55:16 +00001434 timeout: 5400
Bodo Petermannaf70af32022-06-21 13:48:42 +02001435 required-projects:
1436 - openstack/neutron
1437 - openstack/neutron-vpnaas
1438 - openstack/neutron-tempest-plugin
1439 - openstack/tempest
1440 vars:
1441 tempest_concurrency: 4
1442 tempest_test_regex: ^neutron_tempest_plugin\.vpnaas
1443 devstack_plugins:
1444 neutron-vpnaas: https://opendev.org/openstack/neutron-vpnaas.git
1445 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin.git
1446 network_api_extensions_common: *api_extensions
1447 network_api_extensions_vpnaas:
1448 - vpnaas
1449 devstack_localrc:
1450 IPSEC_PACKAGE: strongswan
1451 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_vpnaas) | join(',') }}"
elajkate4c6c4f2025-02-11 10:20:16 +01001452 Q_ML2_PLUGIN_MECHANISM_DRIVERS: ovn
Bodo Petermannaf70af32022-06-21 13:48:42 +02001453 devstack_services:
1454 q-ovn-vpn-agent: true
1455 devstack_local_conf:
1456 test-config:
1457 $TEMPEST_CONFIG:
1458 neutron_vpnaas_plugin_options:
1459 skip_6in4_tests: true
1460 skip_6in6_tests: true
1461
1462 irrelevant-files:
1463 - ^\.pylintrc$
1464 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001465 - ^lower-constraints.txt$
Bodo Petermannaf70af32022-06-21 13:48:42 +02001466 - ^releasenotes/.*$
1467 - ^doc/.*$
Bodo Petermannaf70af32022-06-21 13:48:42 +02001468 - ^setup.cfg$
1469 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001470 - ^.*\.sample$
Bodo Petermannaf70af32022-06-21 13:48:42 +02001471 - ^neutron/locale/.*$
1472 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001473 - ^neutron/tests/fullstack/.*$
1474 - ^neutron/tests/functional/.*$
Bodo Petermannaf70af32022-06-21 13:48:42 +02001475 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001476 - ^neutron_tempest_plugin/api/admin/test_.*$
Bodo Petermannaf70af32022-06-21 13:48:42 +02001477 - ^neutron_tempest_plugin/scenario/admin/.*$
1478 - ^neutron_tempest_plugin/scenario/test_.*$
1479 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|tap_as_a_service).*$
1480 - ^neutron_tempest_plugin/services/bgp/.*$
1481 - ^tools/.*$
1482 - ^tox.ini$
1483 - ^plugin.spec$
1484 - ^rally-jobs/.*$
1485 - ^roles/.*functional.*$
1486 - ^playbooks/.*dvr-multinode.*$
1487 - ^playbooks/.*dynamic-routing.*$
1488 - ^playbooks/.*functional.*$
1489 - ^playbooks/.*linuxbridge.*$
1490 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001491 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001492 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001493 - ^zuul.d/base-nested-switch.yaml
Bodo Petermannaf70af32022-06-21 13:48:42 +02001494
1495- job:
elajkat4abd0682021-08-06 16:05:23 +02001496 name: neutron-tempest-plugin-tap-as-a-service
1497 parent: neutron-tempest-plugin-base
1498 description: |
1499 Perform setup common to all tap-as-a-service tempest tests
1500 roles:
1501 - zuul: openstack/devstack
1502 required-projects:
elajkat4abd0682021-08-06 16:05:23 +02001503 - openstack/neutron
1504 - openstack/neutron-tempest-plugin
1505 - openstack/tap-as-a-service
1506 - openstack/tempest
1507 vars:
yatinkarelb8e69d32022-09-13 17:48:00 +05301508 tempest_concurrency: 4
elajkat4abd0682021-08-06 16:05:23 +02001509 tempest_test_regex: ^neutron_tempest_plugin\.tap_as_a_service
1510 tox_envlist: all
elajkat4abd0682021-08-06 16:05:23 +02001511 network_api_extensions_tempest:
1512 - taas
1513 - taas-vlan-filter
1514 devstack_localrc:
1515 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_tempest) | join(',') }}"
elajkat4abd0682021-08-06 16:05:23 +02001516 BUILD_TIMEOUT: 784
1517 Q_AGENT: openvswitch
elajkat1f275e42021-10-15 12:47:55 +02001518 Q_ML2_TENANT_NETWORK_TYPE: vxlan,vlan
elajkat4abd0682021-08-06 16:05:23 +02001519 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
1520 devstack_local_conf:
1521 post-config:
1522 /$NEUTRON_CORE_PLUGIN_CONF:
1523 AGENT:
elajkat1f275e42021-10-15 12:47:55 +02001524 tunnel_types: vxlan
1525 ml2_type_vlan:
1526 network_vlan_ranges: public
elajkat4abd0682021-08-06 16:05:23 +02001527 test-config:
1528 $TEMPEST_CONFIG:
elajkat1f275e42021-10-15 12:47:55 +02001529 neutron_plugin_options:
1530 image_is_advanced: true
1531 advanced_image_flavor_ref: d1
1532 taas:
elajkat4abd0682021-08-06 16:05:23 +02001533 provider_physical_network: public
1534 provider_segmentation_id: 100
1535 image_feature_enabled:
1536 api_v2: true
1537 devstack_plugins:
1538 neutron: git://opendev.org/openstack/neutron.git
1539 neutron-tempest-plugin: https://opendev.org/openstack/neutron-tempest-plugin.git
1540 tap-as-a-service: git://opendev.org/openstack/tap-as-a-service.git
1541 devstack_services:
1542 # Disable OVN services
1543 ovn-controller: false
1544 ovn-northd: false
1545 ovs-vswitchd: false
1546 ovsdb-server: false
1547 q-ovn-metadata-agent: false
1548 # Enable Neutron services that are not used by OVN
1549 q-agt: true
1550 q-dhcp: true
1551 q-l3: true
1552 q-meta: true
1553 q-metering: true
1554 br-ex-tcpdump: true
1555 br-int-flows: true
1556 base: false
1557 key: true
1558 mysql: true
1559 rabbit: true
1560 g-api: true
elajkat4abd0682021-08-06 16:05:23 +02001561 n-api: true
1562 n-cond: true
1563 n-cpu: true
1564 n-crt: true
1565 n-sch: true
1566 placement-api: true
1567 n-api-meta: true
1568 q-svc: true
Takashi Kajinamiffcc0172024-01-23 12:56:01 +09001569 neutron: true
elajkat4abd0682021-08-06 16:05:23 +02001570 taas: true
1571 taas_openvswitch_agent: true
1572 tempest: true
1573 dstat: true
yatinkarel007c22f2021-12-10 15:15:45 +05301574 irrelevant-files:
yatinkarel3ff83002022-09-27 10:55:55 +05301575 - ^\.pylintrc$
elajkat4abd0682021-08-06 16:05:23 +02001576 - ^(test-|)requirements.txt$
Brian Haley973995e2025-03-26 13:21:41 -04001577 - ^lower-constraints.txt$
elajkat4abd0682021-08-06 16:05:23 +02001578 - ^releasenotes/.*$
1579 - ^doc/.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301580 - ^setup.cfg$
elajkat4abd0682021-08-06 16:05:23 +02001581 - ^.*\.rst$
Brian Haley973995e2025-03-26 13:21:41 -04001582 - ^.*\.sample$
yatinkarel007c22f2021-12-10 15:15:45 +05301583 - ^neutron/locale/.*$
1584 - ^neutron/tests/unit/.*$
Brian Haley973995e2025-03-26 13:21:41 -04001585 - ^neutron/tests/fullstack/.*$
1586 - ^neutron/tests/functional/.*$
yatinkarel9d85f292022-01-27 17:26:57 +05301587 - ^neutron_tempest_plugin/api/test_.*$
Rodolfo Alonso Hernandez4ffa1e62024-11-22 16:10:05 +00001588 - ^neutron_tempest_plugin/api/admin/test_.*$
Slawek Kaplonski4330ca02023-04-20 10:56:51 +02001589 - ^neutron_tempest_plugin/scenario/admin/.*$
1590 - ^neutron_tempest_plugin/scenario/test_.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301591 - ^neutron_tempest_plugin/(bgpvpn|fwaas|neutron_dynamic_routing|sfc|vpnaas).*$
1592 - ^neutron_tempest_plugin/services/bgp/.*$
elajkat4abd0682021-08-06 16:05:23 +02001593 - ^tools/.*$
1594 - ^tox.ini$
yatinkarel1ecc1e52023-03-28 12:01:02 +05301595 - ^plugin.spec$
yatinkarel007c22f2021-12-10 15:15:45 +05301596 - ^rally-jobs/.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301597 - ^roles/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301598 - ^playbooks/.*dvr-multinode.*$
1599 - ^playbooks/.*dynamic-routing.*$
yatinkarelaecc32a2022-05-31 11:17:40 +05301600 - ^playbooks/.*functional.*$
yatinkarel55f1f922023-10-06 18:51:31 +05301601 - ^playbooks/.*linuxbridge.*$
yatinkarel007c22f2021-12-10 15:15:45 +05301602 - ^vagrant/.*$
Brian Haley671fdd32024-06-04 15:30:06 -04001603 # Ignore everything except for zuul.d/project.yaml
Brian Haley973995e2025-03-26 13:21:41 -04001604 - ^zuul.d/.*_jobs\.yaml$
Brian Haley671fdd32024-06-04 15:30:06 -04001605 - ^zuul.d/base-nested-switch.yaml