mirror of https://github.com/ceph/ceph-ansible.git
lvm: fix condition when selecting which scenario to run
devices and lvm_volumes will always be defined, so we need to instead check it's length before deciding to run the scenario. This fixes the failure here: https://2.jenkins.ceph.com/job/ceph-ansible-prs-luminous-bluestore_lvm_osds/86/consoleFull#1667273050b5dd38fa-a56e-4233-a5ca-584604e56e3a Signed-off-by: Andrew Schoen <aschoen@redhat.com>pull/3026/head
parent
e84f11e99e
commit
6423ab4ad3
|
@ -54,7 +54,7 @@
|
|||
include: scenarios/lvm.yml
|
||||
when:
|
||||
- osd_scenario == 'lvm'
|
||||
- lvm_volumes is defined
|
||||
- lvm_volumes|length > 0
|
||||
- not containerized_deployment
|
||||
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
||||
static: False
|
||||
|
@ -63,7 +63,7 @@
|
|||
include: scenarios/lvm-batch.yml
|
||||
when:
|
||||
- osd_scenario == 'lvm'
|
||||
- devices is defined
|
||||
- devices|length > 0
|
||||
- not containerized_deployment
|
||||
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
||||
static: False
|
||||
|
|
Loading…
Reference in New Issue