blob: c293e7aafbe0a38bec80a96cd67980c096d1a185 [file] [log] [blame]
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +02001- job:
2 name: neutron-tempest-plugin-api-queens
3 nodeset: openstack-single-node-xenial
4 parent: neutron-tempest-plugin-api
5 override-checkout: stable/queens
6 required-projects:
7 - openstack/devstack-gate
8 - openstack/neutron
9 - name: openstack/neutron-tempest-plugin
10 override-checkout: 0.3.0
11 - openstack/tempest
12 vars:
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +010013 devstack_services:
14 # Disable OVN services
15 br-ex-tcpdump: false
16 br-int-flows: false
17 ovn-controller: false
18 ovn-northd: false
19 ovs-vswitchd: false
20 ovsdb-server: false
21 q-ovn-metadata-agent: false
22 # Neutron services
23 q-agt: true
24 q-dhcp: true
25 q-l3: true
26 q-meta: true
27 q-metering: true
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020028 branch_override: stable/queens
29 # 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 - ext-gw-mode
44 - external-net
45 - extra_dhcp_opt
46 - extraroute
47 - flavors
48 - ip-substring-filtering
49 - l3-flavors
50 - l3-ha
51 - l3_agent_scheduler
52 - logging
53 - metering
54 - multi-provider
55 - net-mtu
56 - net-mtu-writable
57 - network-ip-availability
58 - network_availability_zone
59 - pagination
60 - port-security
61 - project-id
62 - provider
63 - qos
64 - qos-fip
65 - quotas
66 - quota_details
67 - rbac-policies
68 - router
69 - router_availability_zone
70 - security-group
71 - segment
72 - service-type
73 - sorting
74 - standard-attr-description
75 - standard-attr-revisions
76 - standard-attr-timestamp
77 - standard-attr-tag
78 - subnet_allocation
79 - trunk
80 - trunk-details
81 network_api_extensions_tempest:
82 - dvr
elajkat8bbd7432020-11-04 16:41:34 +010083 network_available_features: &available_features
84 -
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020085 devstack_localrc:
Slawek Kaplonskide203632020-11-05 14:34:10 +010086 NEUTRON_DEPLOY_MOD_WSGI: false
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020087 USE_PYTHON3: false
Slawek Kaplonskib1222e92020-10-15 11:35:35 +020088 CIRROS_VERSION: 0.3.5
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +020089 NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_tempest) | join(',') }}"
90 TEMPEST_PLUGINS: /opt/stack/neutron-tempest-plugin
Lucas Alvares Gomes743c3b22020-09-02 14:40:22 +010091 Q_AGENT: openvswitch
92 Q_ML2_TENANT_NETWORK_TYPE: vxlan
93 Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
94 ML2_L3_PLUGIN: router
95 devstack_local_conf:
96 post-config:
97 # NOTE(slaweq): We can get rid of this hardcoded absolute path when
98 # devstack-tempest job will be switched to use lib/neutron instead of
99 # lib/neutron-legacy
100 /$NEUTRON_CORE_PLUGIN_CONF:
101 AGENT:
102 tunnel_types: gre,vxlan
103 ml2:
104 type_drivers: flat,geneve,vlan,gre,local,vxlan
105 test-config:
106 $TEMPEST_CONFIG:
107 neutron_plugin_options:
108 available_type_drivers: flat,geneve,vlan,gre,local,vxlan
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200109
110
111
112- job:
113 name: neutron-tempest-plugin-scenario-openvswitch-queens
114 parent: neutron-tempest-plugin-scenario-openvswitch
115 nodeset: openstack-single-node-xenial
116 override-checkout: stable/queens
117 required-projects:
118 - openstack/devstack-gate
119 - openstack/neutron
120 - name: openstack/neutron-tempest-plugin
121 override-checkout: 0.3.0
122 - openstack/tempest
123 vars:
124 branch_override: stable/queens
125 network_api_extensions: *api_extensions
elajkat8bbd7432020-11-04 16:41:34 +0100126 network_available_features: *available_features
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200127 # TODO(slaweq): remove trunks subport_connectivity test from blacklist
128 # when bug https://bugs.launchpad.net/neutron/+bug/1838760 will be fixed
129 # NOTE(bcafarel): remove DNS test as queens pinned version does not have
130 # fix for https://bugs.launchpad.net/neutron/+bug/1826419
131 tempest_black_regex: "\
132 (^neutron_tempest_plugin.scenario.test_trunk.TrunkTest.test_subport_connectivity)|\
133 (^neutron_tempest_plugin.scenario.test_internal_dns.InternalDNSTest.test_dns_domain_and_name)"
134 devstack_localrc:
135 USE_PYTHON3: false
Slawek Kaplonskib1222e92020-10-15 11:35:35 +0200136 CIRROS_VERSION: 0.3.5
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200137 NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}"
138 TEMPEST_PLUGINS: /opt/stack/neutron-tempest-plugin
139
140- job:
141 name: neutron-tempest-plugin-scenario-linuxbridge-queens
Slawek Kaplonskib1222e92020-10-15 11:35:35 +0200142 parent: neutron-tempest-plugin-scenario
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200143 nodeset: openstack-single-node-xenial
Slawek Kaplonskib1222e92020-10-15 11:35:35 +0200144 timeout: 10000
145 roles:
146 - zuul: openstack/neutron
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200147 override-checkout: stable/queens
148 required-projects:
149 - openstack/devstack-gate
150 - openstack/neutron
151 - name: openstack/neutron-tempest-plugin
152 override-checkout: 0.3.0
153 - openstack/tempest
154 vars:
155 branch_override: stable/queens
156 network_api_extensions: *api_extensions
elajkat8bbd7432020-11-04 16:41:34 +0100157 network_available_features: *available_features
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200158 # NOTE(bcafarel): remove DNS test as queens pinned version does not have
159 # fix for https://bugs.launchpad.net/neutron/+bug/1826419
160 tempest_black_regex: "\
161 (^neutron_tempest_plugin.scenario.test_internal_dns.InternalDNSTest.test_dns_domain_and_name)"
162 devstack_localrc:
163 USE_PYTHON3: false
Slawek Kaplonskib1222e92020-10-15 11:35:35 +0200164 CIRROS_VERSION: 0.3.5
165 Q_AGENT: linuxbridge
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200166 NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}"
167 TEMPEST_PLUGINS: /opt/stack/neutron-tempest-plugin
168 devstack_local_conf:
Slawek Kaplonskib1222e92020-10-15 11:35:35 +0200169 post-config:
170 $NEUTRON_CONF:
171 DEFAULT:
172 enable_dvr: false
173 AGENT:
174 debug_iptables_rules: true
175 # NOTE(slaweq): We can get rid of this hardcoded absolute path when
176 # devstack-tempest job will be switched to use lib/neutron instead of
177 # lib/neutron-legacy
178 /$NEUTRON_CORE_PLUGIN_CONF:
179 ml2:
180 type_drivers: flat,vlan,local,vxlan
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200181 test-config:
182 # NOTE: ignores linux bridge's trunk delete on bound port test
Slawek Kaplonskib1222e92020-10-15 11:35:35 +0200183 # for rocky branch (as https://review.opendev.org/#/c/605589/
184 # fix will not apply for rocky branch)
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200185 $TEMPEST_CONFIG:
186 neutron_plugin_options:
Slawek Kaplonskib1222e92020-10-15 11:35:35 +0200187 available_type_drivers: flat,vlan,local,vxlan
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200188 q_agent: None
189
190- job:
191 name: neutron-tempest-plugin-dvr-multinode-scenario-queens
192 parent: neutron-tempest-plugin-dvr-multinode-scenario
193 nodeset: openstack-two-node-xenial
194 override-checkout: stable/queens
195 required-projects:
196 - openstack/devstack-gate
197 - openstack/neutron
198 - name: openstack/neutron-tempest-plugin
199 override-checkout: 0.3.0
200 - openstack/tempest
201 vars:
202 branch_override: stable/queens
203 network_api_extensions_common: *api_extensions
204 # TODO(slaweq): remove trunks subport_connectivity test from blacklist
205 # when bug https://bugs.launchpad.net/neutron/+bug/1838760 will be fixed
206 # NOTE(bcafarel): remove DNS test as queens pinned version does not have
207 # fix for https://bugs.launchpad.net/neutron/+bug/1826419
208 tempest_black_regex: "\
209 (^neutron_tempest_plugin.scenario.test_trunk.TrunkTest.test_subport_connectivity)|\
210 (^neutron_tempest_plugin.scenario.test_internal_dns.InternalDNSTest.test_dns_domain_and_name)"
211 devstack_localrc:
212 USE_PYTHON3: false
Slawek Kaplonskib1222e92020-10-15 11:35:35 +0200213 CIRROS_VERSION: 0.3.5
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200214 TEMPEST_PLUGINS: /opt/stack/neutron-tempest-plugin
215
216- job:
217 name: neutron-tempest-plugin-designate-scenario-queens
218 parent: neutron-tempest-plugin-designate-scenario
219 nodeset: openstack-single-node-xenial
220 override-checkout: stable/queens
221 required-projects:
222 - openstack/devstack-gate
223 - openstack/neutron
224 - name: openstack/neutron-tempest-plugin
225 override-checkout: 0.3.0
226 - name: openstack/designate-tempest-plugin
227 override-checkout: 0.7.0
228 - openstack/tempest
229 vars:
230 branch_override: stable/queens
231 network_api_extensions_common: *api_extensions
232 # NOTE(bcafarel): remove DNS test as queens pinned version does not have
233 # fix for https://bugs.launchpad.net/neutron/+bug/1826419
234 tempest_black_regex: "\
235 (^neutron_tempest_plugin.scenario.test_internal_dns.InternalDNSTest.test_dns_domain_and_name)"
236 devstack_localrc:
237 USE_PYTHON3: false
Slawek Kaplonskib1222e92020-10-15 11:35:35 +0200238 CIRROS_VERSION: 0.3.5
Slawek Kaplonski40ec8e52020-05-20 13:07:44 +0200239 TEMPEST_PLUGINS: '"/opt/stack/designate-tempest-plugin /opt/stack/neutron-tempest-plugin"'