blob: 1063efa4609681e8d8e68e4e1611121c398c2aa5 [file] [log] [blame]
Chandan Kumara564cf32017-11-16 16:09:38 +05301- job:
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +02002 name: neutron-tempest-plugin
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +01003 parent: devstack-tempest
4 abstract: true
5 description: |
Doug Hellmann12685c62018-08-29 17:37:50 -04006 Perform setup common to all Neutron tempest tests
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +01007 roles:
8 - zuul: openstack-dev/devstack
9 required-projects:
10 - openstack-infra/devstack-gate
11 - openstack/neutron
12 - openstack/neutron-tempest-plugin
13 - openstack/tempest
14 vars:
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +010015 tempest_concurrency: 4
16 tox_envlist: all
17 devstack_localrc:
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +020018 TEMPEST_PLUGINS: /opt/stack/neutron-tempest-plugin
Hongbin Lu54f55922018-07-12 19:05:39 +000019 NETWORK_API_EXTENSIONS: address-scope,agent,allowed-address-pairs,auto-allocated-topology,availability_zone,binding,default-subnetpools,dhcp_agent_scheduler,dns-domain-ports,dns-integration,dvr,empty-string-filtering,ext-gw-mode,external-net,extra_dhcp_opt,extraroute,filter-validation,fip-port-details,flavors,ip-substring-filtering,l3-flavors,l3-ha,l3_agent_scheduler,logging,metering,multi-provider,net-mtu,net-mtu-writable,network-ip-availability,network_availability_zone,pagination,port-security,project-id,provider,qos,qos-fip,quotas,quota_details,rbac-policies,router,router_availability_zone,security-group,port-mac-address-regenerate,port-security-groups-filtering,segment,service-type,sorting,standard-attr-description,standard-attr-revisions,standard-attr-segment,standard-attr-timestamp,standard-attr-tag,subnet_allocation,trunk,trunk-details
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +010020 devstack_plugins:
21 neutron: git://git.openstack.org/openstack/neutron.git
22 neutron-tempest-plugin: git://git.openstack.org/openstack/neutron-tempest-plugin.git
23 devstack_services:
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +020024 tls-proxy: false
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +010025 tempest: true
26 neutron-dns: true
27 neutron-qos: true
28 neutron-segments: true
29 neutron-trunk: true
30 devstack_local_conf:
31 post-config:
32 $NEUTRON_CONF:
33 QUOTAS:
34 quota_router: 100
35 quota_floatingip: 500
36 quota_security_group: 100
37 quota_security_group_rule: 1000
38 # NOTE(slaweq): We can get rid of this hardcoded absolute path when
39 # devstack-tempest job will be switched to use lib/neutron instead of
40 # lib/neutron-legacy
Doug Hellmann12685c62018-08-29 17:37:50 -040041 /$NEUTRON_CORE_PLUGIN_CONF:
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +010042 ml2:
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +020043 type_drivers: flat,geneve,vlan,gre,local,vxlan
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +010044 ml2_type_vlan:
45 network_vlan_ranges: foo:1:10
46 ml2_type_vxlan:
47 vni_ranges: 1:2000
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +020048 ml2_type_gre:
49 tunnel_id_ranges: 1:1000
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +010050 $NEUTRON_L3_CONF:
51 agent:
52 availability_zone: nova
53 $NEUTRON_DHCP_CONF:
54 agent:
55 availability_zone: nova
Doug Hellmann12685c62018-08-29 17:37:50 -040056 /etc/neutron/api-paste.ini:
57 composite:neutronapi_v2_0:
58 use: call:neutron.auth:pipeline_factory
59 noauth: cors request_id catch_errors osprofiler extensions neutronapiapp_v2_0
60 keystone: cors request_id catch_errors osprofiler authtoken keystonecontext extensions neutronapiapp_v2_0
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +010061 test-config:
62 $TEMPEST_CONFIG:
63 neutron_plugin_options:
64 provider_vlans: foo,
65 agent_availability_zone: nova
66 image_is_advanced: true
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +020067 available_type_drivers: flat,geneve,vlan,gre,local,vxlan
Hongbin Lue2089622018-08-14 15:32:46 +000068 irrelevant-files: &tempest-irrelevant-files
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +010069 - ^(test-|)requirements.txt$
70 - ^releasenotes/.*$
71 - ^doc/.*$
72 - ^setup.cfg$
73 - ^.*\.rst$
74 - ^neutron/locale/.*$
75 - ^neutron/tests/unit/.*$
76 - ^tools/.*$
77 - ^tox.ini$
78
79- job:
Chandan Kumara564cf32017-11-16 16:09:38 +053080 name: neutron-tempest-plugin-api
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +020081 parent: neutron-tempest-plugin
82 vars:
83 tempest_test_regex: ^neutron_tempest_plugin\.api
84 devstack_services:
85 neutron-log: true
86 devstack_local_conf:
87 post-config:
88 # NOTE(slaweq): We can get rid of this hardcoded absolute path when
89 # devstack-tempest job will be switched to use lib/neutron instead of
90 # lib/neutron-legacy
Doug Hellmann12685c62018-08-29 17:37:50 -040091 /$NEUTRON_CORE_PLUGIN_CONF:
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +020092 AGENT:
93 tunnel_types: gre,vxlan
94 network_log:
95 local_output_log_base: /tmp/test_log.log
Chandan Kumara564cf32017-11-16 16:09:38 +053096
97- job:
Hongbin Lu9522a7e2018-04-18 19:18:43 +000098 name: neutron-tempest-plugin-api-queens
99 parent: neutron-tempest-plugin-api
100 override-checkout: stable/queens
101 vars:
102 branch_override: stable/queens
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +0200103 devstack_localrc:
104 # TODO(slaweq): find a way to put this list of extensions in
105 # neutron repository and keep it different per branch,
106 # then it could be removed from here
Doug Hellmann12685c62018-08-29 17:37:50 -0400107 NETWORK_API_EXTENSIONS: address-scope,agent,allowed-address-pairs,auto-allocated-topology,availability_zone,binding,default-subnetpools,dhcp_agent_scheduler,dns-domain-ports,dns-integration,dvr,ext-gw-mode,external-net,extra_dhcp_opt,extraroute,flavors,ip-substring-filtering,l3-flavors,l3-ha,l3_agent_scheduler,logging,metering,multi-provider,net-mtu,net-mtu-writable,network-ip-availability,network_availability_zone,pagination,port-security,project-id,provider,qos,quotas,quota_details,rbac-policies,router,router_availability_zone,security-group,segment,service-type,sorting,standard-attr-description,standard-attr-revisions,standard-attr-timestamp,standard-attr-tag,subnet_allocation,tag,tag-ext,trunk,trunk-details
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +0200108
109- job:
Hongbin Lub600bea2018-08-23 02:49:48 +0000110 name: neutron-tempest-plugin-api-rocky
111 parent: neutron-tempest-plugin-api
112 override-checkout: stable/rocky
113 vars:
114 branch_override: stable/rocky
115 devstack_localrc:
116 # TODO(slaweq): find a way to put this list of extensions in
117 # neutron repository and keep it different per branch,
118 # then it could be removed from here
119 NETWORK_API_EXTENSIONS: address-scope,agent,allowed-address-pairs,auto-allocated-topology,availability_zone,binding,default-subnetpools,dhcp_agent_scheduler,dns-domain-ports,dns-integration,dvr,empty-string-filtering,ext-gw-mode,external-net,extra_dhcp_opt,extraroute,fip-port-details,flavors,ip-substring-filtering,l3-flavors,l3-ha,l3_agent_scheduler,logging,metering,multi-provider,net-mtu,net-mtu-writable,network-ip-availability,network_availability_zone,pagination,port-security,project-id,provider,qos,qos-fip,quotas,quota_details,rbac-policies,router,router_availability_zone,security-group,port-mac-address-regenerate,port-security-groups-filtering,segment,service-type,sorting,standard-attr-description,standard-attr-revisions,standard-attr-segment,standard-attr-timestamp,standard-attr-tag,subnet_allocation,trunk,trunk-details
120
121- job:
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +0200122 name: neutron-tempest-plugin-scenario
123 parent: neutron-tempest-plugin
124 abstract: true
125 description: |
Doug Hellmann12685c62018-08-29 17:37:50 -0400126 Perform setup common to all tempest scenario test jobs.
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +0200127 vars:
128 tempest_test_regex: ^neutron_tempest_plugin\.scenario
129 devstack_localrc:
Doug Hellmann12685c62018-08-29 17:37:50 -0400130 PHYSICAL_NETWORK: default
131 DOWNLOAD_DEFAULT_IMAGES: false
132 IMAGE_URLS: http://cloud-images.ubuntu.com/releases/16.04/release-20180622/ubuntu-16.04-server-cloudimg-amd64-disk1.img,
133 DEFAULT_INSTANCE_TYPE: ds512M
134 DEFAULT_INSTANCE_USER: ubuntu
135 BUILD_TIMEOUT: 784
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +0200136 devstack_services:
137 cinder: true
Hongbin Lu9522a7e2018-04-18 19:18:43 +0000138
139- job:
Chandan Kumara564cf32017-11-16 16:09:38 +0530140 name: neutron-tempest-plugin-scenario-linuxbridge
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +0100141 parent: neutron-tempest-plugin-scenario
Chandan Kumara564cf32017-11-16 16:09:38 +0530142 timeout: 10000
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +0100143 vars:
144 devstack_localrc:
Doug Hellmann12685c62018-08-29 17:37:50 -0400145 Q_AGENT: linuxbridge
Hongbin Lu54f55922018-07-12 19:05:39 +0000146 NETWORK_API_EXTENSIONS: address-scope,agent,allowed-address-pairs,auto-allocated-topology,availability_zone,binding,default-subnetpools,dhcp_agent_scheduler,dns-domain-ports,dns-integration,ext-gw-mode,external-net,extra_dhcp_opt,extraroute,filter-validation,fip-port-details,flavors,ip-substring-filtering,l3-flavors,l3-ha,l3_agent_scheduler,logging,metering,multi-provider,net-mtu,net-mtu-writable,network-ip-availability,network_availability_zone,pagination,port-security,project-id,provider,qos,qos-fip,quotas,quota_details,rbac-policies,router,router_availability_zone,security-group,port-security-groups-filtering,segment,service-type,sorting,standard-attr-description,standard-attr-revisions,standard-attr-timestamp,standard-attr-tag,subnet_allocation,tag,tag-ext,trunk,trunk-details
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +0100147 devstack_local_conf:
148 post-config:
149 $NEUTRON_CONF:
150 DEFAULT:
151 enable_dvr: false
152 AGENT:
153 debug_iptables_rules: true
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +0200154 # NOTE(slaweq): We can get rid of this hardcoded absolute path when
155 # devstack-tempest job will be switched to use lib/neutron instead of
156 # lib/neutron-legacy
Doug Hellmann12685c62018-08-29 17:37:50 -0400157 /$NEUTRON_CORE_PLUGIN_CONF:
Sławek Kapłońskidf70bc82018-05-15 17:39:08 +0200158 ml2:
159 type_drivers: flat,vlan,local,vxlan
160 test-config:
161 $TEMPEST_CONFIG:
162 neutron_plugin_options:
163 available_type_drivers: flat,vlan,local,vxlan
Chandan Kumara564cf32017-11-16 16:09:38 +0530164
165- job:
Hongbin Lu9522a7e2018-04-18 19:18:43 +0000166 name: neutron-tempest-plugin-scenario-linuxbridge-queens
167 parent: neutron-tempest-plugin-scenario-linuxbridge
168 override-checkout: stable/queens
169 vars:
170 branch_override: stable/queens
Hongbin Lu965b03d2018-04-25 22:32:30 +0000171 devstack_localrc:
Doug Hellmann12685c62018-08-29 17:37:50 -0400172 NETWORK_API_EXTENSIONS: address-scope,agent,allowed-address-pairs,auto-allocated-topology,availability_zone,binding,default-subnetpools,dhcp_agent_scheduler,dns-integration,ext-gw-mode,external-net,extra_dhcp_opt,extraroute,flavors,ip-substring-filtering,l3-flavors,l3-ha,l3_agent_scheduler,logging,metering,multi-provider,net-mtu,net-mtu-writable,network-ip-availability,network_availability_zone,pagination,port-security,project-id,provider,qos,qos-fip,quotas,quota_details,rbac-policies,router,router_availability_zone,security-group,port-security-groups-filtering,segment,service-type,sorting,standard-attr-description,standard-attr-revisions,standard-attr-timestamp,standard-attr-tag,subnet_allocation,tag,tag-ext,trunk,trunk-details
Hongbin Lu9522a7e2018-04-18 19:18:43 +0000173
174- job:
Hongbin Lub600bea2018-08-23 02:49:48 +0000175 name: neutron-tempest-plugin-scenario-linuxbridge-rocky
176 parent: neutron-tempest-plugin-scenario-linuxbridge
177 override-checkout: stable/rocky
178 vars:
179 branch_override: stable/rocky
180 devstack_localrc:
181 NETWORK_API_EXTENSIONS: address-scope,agent,allowed-address-pairs,auto-allocated-topology,availability_zone,binding,default-subnetpools,dhcp_agent_scheduler,dns-domain-ports,dns-integration,ext-gw-mode,external-net,extra_dhcp_opt,extraroute,fip-port-details,flavors,ip-substring-filtering,l3-flavors,l3-ha,l3_agent_scheduler,logging,metering,multi-provider,net-mtu,net-mtu-writable,network-ip-availability,network_availability_zone,pagination,port-security,project-id,provider,qos,qos-fip,quotas,quota_details,rbac-policies,router,router_availability_zone,security-group,port-security-groups-filtering,segment,service-type,sorting,standard-attr-description,standard-attr-revisions,standard-attr-timestamp,standard-attr-tag,subnet_allocation,tag,tag-ext,trunk,trunk-details
182
183- job:
Chandan Kumara564cf32017-11-16 16:09:38 +0530184 name: neutron-tempest-plugin-dvr-multinode-scenario
Slawek Kaplonskif31e3ee2018-06-15 19:48:07 +0200185 parent: tempest-multinode-full
186 description: |
187 Perform setup for Neutron tempest tests in multinode with DVR scenario
188 roles:
189 - zuul: openstack-dev/devstack
Chandan Kumara564cf32017-11-16 16:09:38 +0530190 required-projects:
191 - openstack-infra/devstack-gate
192 - openstack/neutron
193 - openstack/neutron-tempest-plugin
194 - openstack/tempest
Slawek Kaplonskif31e3ee2018-06-15 19:48:07 +0200195 pre-run: playbooks/dvr-multinode-scenario-pre-run.yaml
Chandan Kumara564cf32017-11-16 16:09:38 +0530196 voting: false
Slawek Kaplonskif31e3ee2018-06-15 19:48:07 +0200197 vars:
198 tempest_concurrency: 4
199 tox_envlist: all
200 tempest_test_regex: ^neutron_tempest_plugin\.scenario
201 devstack_localrc:
202 TEMPEST_PLUGINS: /opt/stack/neutron-tempest-plugin
203 NETWORK_API_EXTENSIONS: "address-scope,agent,allowed-address-pairs,auto-allocated-topology,availability_zone,binding,default-subnetpools,dhcp_agent_scheduler,dns-integration,dvr,empty-string-filtering,ext-gw-mode,external-net,extra_dhcp_opt,extraroute,fip-port-details,flavors,ip-substring-filtering,l3-flavors,l3-ha,l3_agent_scheduler,logging,metering,multi-provider,net-mtu,net-mtu-writable,network-ip-availability,network_availability_zone,pagination,port-security,project-id,provider,qos,qos-fip,quotas,quota_details,rbac-policies,router,router_availability_zone,security-group,port-security-groups-filtering,segment,service-type,sorting,standard-attr-description,standard-attr-revisions,standard-attr-segment,standard-attr-timestamp,standard-attr-tag,subnet_allocation,trunk,trunk-details"
204 PHYSICAL_NETWORK: default
205 DOWNLOAD_DEFAULT_IMAGES: false
206 IMAGE_URLS: http://cloud-images.ubuntu.com/releases/16.04/release-20180622/ubuntu-16.04-server-cloudimg-amd64-disk1.img,
207 DEFAULT_INSTANCE_TYPE: ds512M
208 DEFAULT_INSTANCE_USER: ubuntu
209 BUILD_TIMEOUT: 784
210 devstack_plugins:
211 neutron: git://git.openstack.org/openstack/neutron.git
212 neutron-tempest-plugin: git://git.openstack.org/openstack/neutron-tempest-plugin.git
213 devstack_services:
214 tls-proxy: false
215 tempest: true
216 neutron-dns: true
217 neutron-qos: true
218 neutron-segments: true
219 neutron-trunk: true
220 neutron-log: true
221 cinder: true
222 devstack_local_conf:
223 post-config:
224 $NEUTRON_CONF:
225 quotas:
226 quota_router: 100
227 quota_floatingip: 500
228 quota_security_group: 100
229 quota_security_group_rule: 1000
230 DEFAULT:
231 router_distributed: True
232 # NOTE(slaweq): We can get rid of this hardcoded absolute path when
233 # devstack-tempest job will be switched to use lib/neutron instead of
234 # lib/neutron-legacy
235 "/$NEUTRON_CORE_PLUGIN_CONF":
236 ml2:
237 type_drivers: flat,geneve,vlan,gre,local,vxlan
238 mechanism_drivers: openvswitch,l2population
239 ml2_type_vlan:
240 network_vlan_ranges: foo:1:10
241 ml2_type_vxlan:
242 vni_ranges: 1:2000
243 ml2_type_gre:
244 tunnel_id_ranges: 1:1000
245 agent:
246 enable_distributed_routing: True
247 l2_population: True
248 tunnel_types: vxlan,gre
249 ovs:
250 tunnel_bridge: br-tun
251 bridge_mappings: public:br-ex
252 $NEUTRON_L3_CONF:
253 DEFAULT:
254 agent_mode: dvr_snat
255 agent:
256 availability_zone: nova
257 $NEUTRON_DHCP_CONF:
258 agent:
259 availability_zone: nova
260 "/etc/neutron/api-paste.ini":
261 "composite:neutronapi_v2_0":
262 use: "call:neutron.auth:pipeline_factory"
263 noauth: "cors request_id catch_errors osprofiler extensions neutronapiapp_v2_0"
264 keystone: "cors request_id catch_errors osprofiler authtoken keystonecontext extensions neutronapiapp_v2_0"
265 test-config:
266 $TEMPEST_CONFIG:
267 neutron_plugin_options:
268 provider_vlans: foo,
269 agent_availability_zone: nova
270 image_is_advanced: true
271 available_type_drivers: flat,geneve,vlan,gre,local,vxlan
272 l3_agent_mode: dvr_snat
273 group-vars:
274 subnode:
275 devstack_services:
276 tls-proxy: false
277 q-agt: true
278 q-l3: true
279 q-meta: true
280 neutron-qos: true
281 neutron-trunk: true
282 neutron-log: true
283 devstack_local_conf:
284 post-config:
285 $NEUTRON_CONF:
286 DEFAULT:
287 router_distributed: True
288 # NOTE(slaweq): We can get rid of this hardcoded absolute path when
289 # devstack-tempest job will be switched to use lib/neutron instead of
290 # lib/neutron-legacy
291 "/$NEUTRON_CORE_PLUGIN_CONF":
292 agent:
293 enable_distributed_routing: True
294 l2_population: True
295 tunnel_types: vxlan,gre
296 ovs:
297 tunnel_bridge: br-tun
298 bridge_mappings: public:br-ex
299 $NEUTRON_L3_CONF:
300 DEFAULT:
301 agent_mode: dvr_snat
302 agent:
303 availability_zone: nova
304 irrelevant-files: *tempest-irrelevant-files
Chandan Kumara564cf32017-11-16 16:09:38 +0530305
Jens Harbott860b46a2017-11-15 21:23:15 +0000306- job:
Hongbin Lu9522a7e2018-04-18 19:18:43 +0000307 name: neutron-tempest-plugin-dvr-multinode-scenario-queens
308 parent: neutron-tempest-plugin-dvr-multinode-scenario
309 override-checkout: stable/queens
310 vars:
311 branch_override: stable/queens
312
313- job:
Hongbin Lub600bea2018-08-23 02:49:48 +0000314 name: neutron-tempest-plugin-dvr-multinode-scenario-rocky
315 parent: neutron-tempest-plugin-dvr-multinode-scenario
316 override-checkout: stable/rocky
317 vars:
318 branch_override: stable/rocky
319
320- job:
Jens Harbott860b46a2017-11-15 21:23:15 +0000321 name: neutron-tempest-plugin-designate-scenario
Sławek Kapłoński36cc7ec2018-03-14 10:17:48 +0100322 parent: neutron-tempest-plugin-scenario
Jens Harbott860b46a2017-11-15 21:23:15 +0000323 description: Neutron designate integration scenario
324 required-projects:
325 - openstack/designate
326 - openstack/designate-dashboard
327 - openstack/designate-tempest-plugin
Jens Harbott860b46a2017-11-15 21:23:15 +0000328 timeout: 3600
Jens Harbott860b46a2017-11-15 21:23:15 +0000329 vars:
330 devstack_localrc:
Doug Hellmann12685c62018-08-29 17:37:50 -0400331 TEMPEST_PLUGINS: '"/opt/stack/designate-tempest-plugin /opt/stack/neutron-tempest-plugin"'
Jens Harbott860b46a2017-11-15 21:23:15 +0000332 DESIGNATE_BACKEND_DRIVER: bind9
333 devstack_plugins:
334 designate: git://git.openstack.org/openstack/designate.git
Jens Harbott860b46a2017-11-15 21:23:15 +0000335 devstack_services:
James E. Blair24195802018-01-24 16:46:38 -0800336 cinder: false
337 designate: true
James E. Blair24195802018-01-24 16:46:38 -0800338 tempest_test_regex: ^neutron_tempest_plugin\.scenario\.test_dns_integration
Hongbin Lue2089622018-08-14 15:32:46 +0000339 irrelevant-files: *tempest-irrelevant-files
Jens Harbott860b46a2017-11-15 21:23:15 +0000340
Hongbin Lu9522a7e2018-04-18 19:18:43 +0000341- job:
342 name: neutron-tempest-plugin-designate-scenario-queens
343 parent: neutron-tempest-plugin-designate-scenario
344 override-checkout: stable/queens
345 vars:
346 branch_override: stable/queens
347
Hongbin Lub600bea2018-08-23 02:49:48 +0000348- job:
349 name: neutron-tempest-plugin-designate-scenario-rocky
350 parent: neutron-tempest-plugin-designate-scenario
351 override-checkout: stable/rocky
352 vars:
353 branch_override: stable/rocky
354
Chandan Kumara564cf32017-11-16 16:09:38 +0530355- project-template:
356 name: neutron-tempest-plugin-jobs
357 check:
358 jobs:
359 - neutron-tempest-plugin-api
Jens Harbott860b46a2017-11-15 21:23:15 +0000360 - neutron-tempest-plugin-designate-scenario
Chandan Kumara564cf32017-11-16 16:09:38 +0530361 - neutron-tempest-plugin-dvr-multinode-scenario
362 - neutron-tempest-plugin-scenario-linuxbridge
Chandan Kumar17f53802018-03-14 18:15:47 +0530363 - build-openstack-sphinx-docs
Chandan Kumara564cf32017-11-16 16:09:38 +0530364 gate:
365 jobs:
366 - neutron-tempest-plugin-api
Sławek Kapłońskifbc4d612018-05-08 23:22:41 +0200367 - neutron-tempest-plugin-scenario-linuxbridge
Chandan Kumar17f53802018-03-14 18:15:47 +0530368 - build-openstack-sphinx-docs
Chandan Kumara564cf32017-11-16 16:09:38 +0530369
Hongbin Lu9522a7e2018-04-18 19:18:43 +0000370- project-template:
Slawek Kaplonski0ec5acf2018-06-15 22:26:24 +0200371 name: neutron-tempest-plugin-jobs-queens
Hongbin Lu9522a7e2018-04-18 19:18:43 +0000372 check:
373 jobs:
374 - neutron-tempest-plugin-api-queens
375 - neutron-tempest-plugin-designate-scenario-queens
376 - neutron-tempest-plugin-dvr-multinode-scenario-queens
377 - neutron-tempest-plugin-scenario-linuxbridge-queens
378 gate:
379 jobs:
380 - neutron-tempest-plugin-api-queens
381
Hongbin Lub600bea2018-08-23 02:49:48 +0000382- project-template:
383 name: neutron-tempest-plugin-jobs-rocky
384 check:
385 jobs:
386 - neutron-tempest-plugin-api-rocky
387 - neutron-tempest-plugin-designate-scenario-rocky
388 - neutron-tempest-plugin-dvr-multinode-scenario-rocky
389 - neutron-tempest-plugin-scenario-linuxbridge-rocky
390 gate:
391 jobs:
392 - neutron-tempest-plugin-api-rocky
393
Chandan Kumara564cf32017-11-16 16:09:38 +0530394- project:
Chandan Kumara564cf32017-11-16 16:09:38 +0530395 templates:
396 - neutron-tempest-plugin-jobs
Slawek Kaplonski0ec5acf2018-06-15 22:26:24 +0200397 - neutron-tempest-plugin-jobs-queens
Hongbin Lub600bea2018-08-23 02:49:48 +0000398 - neutron-tempest-plugin-jobs-rocky
Doug Hellmann12685c62018-08-29 17:37:50 -0400399 - check-requirements
400 - tempest-plugin-jobs
Brian Haley2cbb10e2018-09-13 09:20:03 -0600401 - release-notes-jobs-python3