Let kolla-build-image jobs choose their own label
Since we have zuul picking node labels to accomodate for possible branch specific label needs we need to whitelist the kolla image build jobs as they always have a single build_host:image_type mapping and branches don't affect that. Change-Id: I75e20a53c2091df1571eeff89cb6fd2e927e0a91
This commit is contained in:
parent
e5cc578293
commit
3c601a7e5d
@ -99,6 +99,7 @@ def set_node_options(item, job, params, default):
|
||||
centos6_re = r'^.*-centos6.*$'
|
||||
f21_re = r'^.*-f21.*$'
|
||||
tripleo_re = r'^.*-tripleo.*$'
|
||||
kolla_image_re = r'^.*-kolla-build-images-.*$'
|
||||
devstack_re = r'^.*-dsvm.*$'
|
||||
puppetunit_re = (
|
||||
r'^gate-(puppet-.*|system-config)-puppet-(lint|syntax|unit).*$')
|
||||
@ -110,6 +111,11 @@ def set_node_options(item, job, params, default):
|
||||
elif re.match(python26_re, job.name):
|
||||
# Pass because job specified label is always correct.
|
||||
pass
|
||||
# Kolla build image jobs always have the correct node label.
|
||||
# Put before distro specific overrides as they list distros in
|
||||
# the jobs names unrelated to where job should run.
|
||||
elif re.match(kolla_image_re, job.name):
|
||||
pass
|
||||
# Jobs needing centos6
|
||||
elif re.match(centos6_re, job.name):
|
||||
# Pass because job specified label is always correct.
|
||||
|
Loading…
Reference in New Issue
Block a user