[CI] Drop redundant if condition in the LVM job playbook

Was left over from a JJB template --> ZuulV3 conversion.

TrivialFix

Change-Id: I0bfdf91dfec397c0fd81e18a29f97ff4c0183205
This commit is contained in:
Goutham Pacha Ravi 2019-01-30 09:35:04 -08:00
parent 852fc786e7
commit 7d397278b3

View File

@ -52,18 +52,16 @@
# Basic services needed for minimal job # Basic services needed for minimal job
OVERRIDE_ENABLED_SERVICES=key,mysql,rabbit,tempest OVERRIDE_ENABLED_SERVICES=key,mysql,rabbit,tempest
if [ "lvm" == "lvm" ]; then # Enable glance for scenario tests
# Enable glance for scenario tests OVERRIDE_ENABLED_SERVICES+=,g-api,g-reg
OVERRIDE_ENABLED_SERVICES+=,g-api,g-reg # Enable nova for scenario tests
# Enable nova for scenario tests OVERRIDE_ENABLED_SERVICES+=,n-api,n-cpu,n-cond,n-sch,n-crt,n-cauth,n-obj
OVERRIDE_ENABLED_SERVICES+=,n-api,n-cpu,n-cond,n-sch,n-crt,n-cauth,n-obj # Enable neutron for scenario tests
# Enable neutron for scenario tests OVERRIDE_ENABLED_SERVICES+=,q-svc,q-dhcp,q-meta,q-l3,q-agt
OVERRIDE_ENABLED_SERVICES+=,q-svc,q-dhcp,q-meta,q-l3,q-agt
# Enable mandatory placement services for nova starting with ocata # Enable mandatory placement services for nova starting with ocata
if [[ "stable/newton" != $ZUUL_BRANCH ]]; then if [[ "stable/newton" != $ZUUL_BRANCH ]]; then
OVERRIDE_ENABLED_SERVICES+=,placement-api,placement-client OVERRIDE_ENABLED_SERVICES+=,placement-api,placement-client
fi
fi fi
export OVERRIDE_ENABLED_SERVICES export OVERRIDE_ENABLED_SERVICES