blob: cfca0ea0cbd372bfdb8b2fe3be4e58c1331d650c [file] [log] [blame]
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +02001- job:
2 name: neutron-tempest-plugin-api-victoria
Slawek Kaplonski8988a012022-04-07 10:50:44 +02003 parent: neutron-tempest-plugin-base
Ghanshyam Mann667d6552022-10-15 21:26:04 -05004 nodeset: openstack-single-node-focal
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +02005 override-checkout: stable/victoria
Ghanshyam Mann935e0a32022-05-26 12:26:34 -05006 required-projects: &required-projects-victoria
7 - openstack/neutron
8 - name: openstack/neutron-tempest-plugin
9 override-checkout: 1.6.0
10 - openstack/tempest
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +020011 vars:
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +010012 devstack_services:
13 # Disable OVN services
14 br-ex-tcpdump: false
15 br-int-flows: false
16 ovn-controller: false
17 ovn-northd: false
18 ovs-vswitchd: false
19 ovsdb-server: false
20 q-ovn-metadata-agent: false
21 # Neutron services
22 q-agt: true
23 q-dhcp: true
24 q-l3: true
25 q-meta: true
26 q-metering: true
yatinkarelb8e69d32022-09-13 17:48:00 +053027 tempest_concurrency: 4
Slawek Kaplonski8988a012022-04-07 10:50:44 +020028 tempest_test_regex: ^neutron_tempest_plugin\.api
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +020029 # TODO(slaweq): find a way to put this list of extensions in
30 # neutron repository and keep it different per branch,
31 # then it could be removed from here
32 network_api_extensions_common: &api_extensions
33 - address-scope
34 - agent
35 - allowed-address-pairs
36 - auto-allocated-topology
37 - availability_zone
38 - binding
39 - default-subnetpools
40 - dhcp_agent_scheduler
41 - dns-domain-ports
42 - dns-integration
43 - empty-string-filtering
44 - expose-port-forwarding-in-fip
45 - expose-l3-conntrack-helper
46 - ext-gw-mode
47 - external-net
48 - extra_dhcp_opt
49 - extraroute
50 - extraroute-atomic
51 - filter-validation
52 - fip-port-details
53 - flavors
54 - floating-ip-port-forwarding
55 - floatingip-pools
56 - ip-substring-filtering
57 - l3-conntrack-helper
58 - l3-flavors
59 - l3-ha
60 - l3_agent_scheduler
61 - logging
62 - metering
63 - multi-provider
64 - net-mtu
65 - net-mtu-writable
66 - network-ip-availability
67 - network_availability_zone
68 - network-segment-range
69 - pagination
70 - port-resource-request
71 - port-mac-address-regenerate
72 - port-security
73 - port-security-groups-filtering
74 - project-id
75 - provider
76 - qos
77 - qos-bw-minimum-ingress
78 - qos-fip
79 - quotas
80 - quota_details
81 - rbac-address-scope
82 - rbac-policies
83 - rbac-security-groups
84 - rbac-subnetpool
85 - router
86 - router-admin-state-down-before-update
87 - router_availability_zone
88 - security-group
89 - segment
90 - service-type
91 - sorting
92 - standard-attr-description
93 - standard-attr-revisions
94 - standard-attr-segment
95 - standard-attr-tag
96 - standard-attr-timestamp
97 - subnet_allocation
98 - subnet-dns-publish-fixed-ip
Slawek Kaplonskia5cdede2021-06-23 09:37:04 +020099 - subnet-service-types
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200100 - subnetpool-prefix-ops
101 - tag-ports-during-bulk-creation
102 - trunk
103 - trunk-details
104 - uplink-status-propagation
105 network_api_extensions_tempest:
106 - dvr
elajkat8bbd7432020-11-04 16:41:34 +0100107 network_available_features: &available_features
108 - ipv6_metadata
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200109 devstack_localrc:
Slawek Kaplonskide203632020-11-05 14:34:10 +0100110 NEUTRON_DEPLOY_MOD_WSGI: false
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200111 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_tempest) | join(',') }}"
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +0100112 Q_AGENT: openvswitch
113 Q_ML2_TENANT_NETWORK_TYPE: vxlan
114 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
115 ML2_L3_PLUGIN: router
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500116 # NOTE(bcafarel) guestmount binary not available on host OS
117 IMAGE_URLS: https://cloud-images.ubuntu.com/releases/bionic/release/ubuntu-18.04-server-cloudimg-amd64.img
118 ADVANCED_IMAGE_NAME: ubuntu-18.04-server-cloudimg-amd64
119 ADVANCED_INSTANCE_TYPE: ds512M
120 ADVANCED_INSTANCE_USER: ubuntu
121 CUSTOMIZE_IMAGE: false
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +0100122 devstack_local_conf:
123 post-config:
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +0100124 /$NEUTRON_CORE_PLUGIN_CONF:
125 AGENT:
126 tunnel_types: gre,vxlan
127 ml2:
128 type_drivers: flat,geneve,vlan,gre,local,vxlan
129 test-config:
130 $TEMPEST_CONFIG:
131 neutron_plugin_options:
132 available_type_drivers: flat,geneve,vlan,gre,local,vxlan
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200133
134- job:
135 name: neutron-tempest-plugin-scenario-openvswitch-victoria
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200136 parent: neutron-tempest-plugin-openvswitch
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200137 override-checkout: stable/victoria
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500138 required-projects: *required-projects-victoria
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200139 vars:
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200140 tempest_test_regex: "\
141 (^neutron_tempest_plugin.scenario)|\
142 (^tempest.api.compute.servers.test_attach_interfaces)|\
143 (^tempest.api.compute.servers.test_multiple_create)"
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200144 network_api_extensions: *api_extensions
elajkat8bbd7432020-11-04 16:41:34 +0100145 network_available_features: *available_features
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200146 devstack_localrc:
147 NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}"
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500148 # NOTE(bcafarel) guestmount binary not available on host OS
149 IMAGE_URLS: https://cloud-images.ubuntu.com/releases/bionic/release/ubuntu-18.04-server-cloudimg-amd64.img
150 ADVANCED_IMAGE_NAME: ubuntu-18.04-server-cloudimg-amd64
151 ADVANCED_INSTANCE_TYPE: ds512M
152 ADVANCED_INSTANCE_USER: ubuntu
153 CUSTOMIZE_IMAGE: false
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200154 devstack_local_conf:
155 test-config:
156 $TEMPEST_CONFIG:
elajkat8bbd7432020-11-04 16:41:34 +0100157 network-feature-enabled:
158 available_features: "{{ network_available_features | join(',') }}"
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200159 neutron_plugin_options:
160 ipv6_metadata: False
161
162- job:
163 name: neutron-tempest-plugin-scenario-openvswitch-iptables_hybrid-victoria
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200164 parent: neutron-tempest-plugin-openvswitch-iptables_hybrid
elajkata4978bc2022-03-24 19:27:20 +0100165 override-checkout: stable/victoria
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500166 required-projects: *required-projects-victoria
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200167 vars:
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200168 tempest_test_regex: "\
169 (^neutron_tempest_plugin.scenario)|\
170 (^tempest.api.compute.servers.test_attach_interfaces)|\
171 (^tempest.api.compute.servers.test_multiple_create)"
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200172 network_api_extensions: *api_extensions
elajkat8bbd7432020-11-04 16:41:34 +0100173 network_available_features: *available_features
yatinkarel3f1716f2023-03-13 13:00:34 +0530174 # TODO(akatz): remove established tcp session verification test when the
175 # bug https://bugzilla.redhat.com/show_bug.cgi?id=1965036 will be fixed
176 tempest_exclude_regex: "\
177 (^neutron_tempest_plugin.scenario.test_security_groups.NetworkSecGroupTest.test_established_tcp_session_after_re_attachinging_sg)"
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200178 devstack_localrc:
179 NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}"
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500180 # NOTE(bcafarel) guestmount binary not available on host OS
181 IMAGE_URLS: https://cloud-images.ubuntu.com/releases/bionic/release/ubuntu-18.04-server-cloudimg-amd64.img
182 ADVANCED_IMAGE_NAME: ubuntu-18.04-server-cloudimg-amd64
183 ADVANCED_INSTANCE_TYPE: ds512M
184 ADVANCED_INSTANCE_USER: ubuntu
185 CUSTOMIZE_IMAGE: false
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200186 devstack_local_conf:
187 test-config:
188 $TEMPEST_CONFIG:
elajkat8bbd7432020-11-04 16:41:34 +0100189 network-feature-enabled:
190 available_features: "{{ network_available_features | join(',') }}"
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200191 neutron_plugin_options:
192 ipv6_metadata: False
193
194- job:
195 name: neutron-tempest-plugin-scenario-linuxbridge-victoria
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200196 parent: neutron-tempest-plugin-linuxbridge
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200197 override-checkout: stable/victoria
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500198 required-projects: *required-projects-victoria
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200199 vars:
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200200 tempest_test_regex: "\
201 (^neutron_tempest_plugin.scenario)|\
202 (^tempest.api.compute.servers.test_attach_interfaces)|\
203 (^tempest.api.compute.servers.test_multiple_create)"
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200204 network_api_extensions: *api_extensions
elajkat8bbd7432020-11-04 16:41:34 +0100205 network_available_features: *available_features
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200206 devstack_localrc:
207 NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}"
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500208 # NOTE(bcafarel) guestmount binary not available on host OS
209 IMAGE_URLS: https://cloud-images.ubuntu.com/releases/bionic/release/ubuntu-18.04-server-cloudimg-amd64.img
210 ADVANCED_IMAGE_NAME: ubuntu-18.04-server-cloudimg-amd64
211 ADVANCED_INSTANCE_TYPE: ds512M
212 ADVANCED_INSTANCE_USER: ubuntu
213 CUSTOMIZE_IMAGE: false
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200214 devstack_local_conf:
215 test-config:
216 $TEMPEST_CONFIG:
elajkat8bbd7432020-11-04 16:41:34 +0100217 network-feature-enabled:
218 available_features: "{{ network_available_features | join(',') }}"
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200219 neutron_plugin_options:
220 ipv6_metadata: False
221
222- job:
223 name: neutron-tempest-plugin-scenario-ovn-victoria
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200224 parent: neutron-tempest-plugin-ovn
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200225 override-checkout: stable/victoria
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500226 required-projects: *required-projects-victoria
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200227 vars:
Slawek Kaplonski8988a012022-04-07 10:50:44 +0200228 tempest_test_regex: "\
229 (^neutron_tempest_plugin.scenario)|\
230 (^tempest.api.compute.servers.test_attach_interfaces)|\
231 (^tempest.api.compute.servers.test_multiple_create)"
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200232 network_api_extensions: *api_extensions
233 devstack_localrc:
234 NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}"
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500235 # NOTE(bcafarel) guestmount binary not available on host OS
236 IMAGE_URLS: https://cloud-images.ubuntu.com/releases/bionic/release/ubuntu-18.04-server-cloudimg-amd64.img
237 ADVANCED_IMAGE_NAME: ubuntu-18.04-server-cloudimg-amd64
238 ADVANCED_INSTANCE_TYPE: ds512M
239 ADVANCED_INSTANCE_USER: ubuntu
240 CUSTOMIZE_IMAGE: false
elajkat8bbd7432020-11-04 16:41:34 +0100241 devstack_local_conf:
242 test-config:
243 $TEMPEST_CONFIG:
244 network-feature-enabled:
245 available_features: ""
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200246
247- job:
248 name: neutron-tempest-plugin-dvr-multinode-scenario-victoria
249 parent: neutron-tempest-plugin-dvr-multinode-scenario
Ghanshyam Mann667d6552022-10-15 21:26:04 -0500250 nodeset: openstack-two-node-focal
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200251 override-checkout: stable/victoria
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500252 required-projects: *required-projects-victoria
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200253 vars:
254 network_api_extensions_common: *api_extensions
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200255
256- job:
257 name: neutron-tempest-plugin-designate-scenario-victoria
258 parent: neutron-tempest-plugin-designate-scenario
259 override-checkout: stable/victoria
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500260 required-projects:
261 - openstack/neutron
262 - name: openstack/neutron-tempest-plugin
263 override-checkout: 1.6.0
264 - openstack/tempest
265 - name: openstack/designate-tempest-plugin
266 override-checkout: 0.12.0
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200267 vars:
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200268 network_api_extensions_common: *api_extensions
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500269 devstack_localrc:
270 # NOTE(bcafarel) guestmount binary not available on host OS
271 IMAGE_URLS: https://cloud-images.ubuntu.com/releases/bionic/release/ubuntu-18.04-server-cloudimg-amd64.img
272 ADVANCED_IMAGE_NAME: ubuntu-18.04-server-cloudimg-amd64
273 ADVANCED_INSTANCE_TYPE: ds512M
274 ADVANCED_INSTANCE_USER: ubuntu
275 CUSTOMIZE_IMAGE: false
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200276
277- job:
278 name: neutron-tempest-plugin-sfc-victoria
279 parent: neutron-tempest-plugin-sfc
Ghanshyam Mann667d6552022-10-15 21:26:04 -0500280 nodeset: openstack-single-node-focal
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200281 override-checkout: stable/victoria
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500282 required-projects: *required-projects-victoria
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200283 vars:
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200284 network_api_extensions_common: *api_extensions
285
286- job:
287 name: neutron-tempest-plugin-bgpvpn-bagpipe-victoria
288 parent: neutron-tempest-plugin-bgpvpn-bagpipe
Ghanshyam Mann667d6552022-10-15 21:26:04 -0500289 nodeset: openstack-single-node-focal
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200290 override-checkout: stable/victoria
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500291 required-projects: *required-projects-victoria
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200292 vars:
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200293 network_api_extensions: *api_extensions
294
295- job:
296 name: neutron-tempest-plugin-dynamic-routing-victoria
297 parent: neutron-tempest-plugin-dynamic-routing
Ghanshyam Mann667d6552022-10-15 21:26:04 -0500298 nodeset: openstack-single-node-focal
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200299 override-checkout: stable/victoria
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500300 required-projects: *required-projects-victoria
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200301 vars:
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200302 network_api_extensions_common: *api_extensions
303
304- job:
305 name: neutron-tempest-plugin-vpnaas-victoria
306 parent: neutron-tempest-plugin-vpnaas
Ghanshyam Mann667d6552022-10-15 21:26:04 -0500307 nodeset: openstack-single-node-focal
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200308 override-checkout: stable/victoria
Ghanshyam Mann935e0a32022-05-26 12:26:34 -0500309 required-projects: *required-projects-victoria
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200310 vars:
Slawek Kaplonski7f3fd672020-10-07 22:40:36 +0200311 network_api_extensions_common: *api_extensions