Make Get OSD stat percentage compatible with both Luminous and Nautilus

On upgrade we might be using the newer validations against a Luminous
cluster, hence the check needs to work in both cases.

Change-Id: I16e7eb081640332ac69ee0b32d3d871fab40d447
Related-Bug: 1882387
This commit is contained in:
Giulio Fidente 2020-07-01 16:18:16 +02:00
parent 18608d156c
commit 35821c44df
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@
block:
- name: set jq osd percentage filter
set_fact:
jq_osd_percentage_filter: '( (.osdmap.num_in_osds) / (.osdmap.num_osds) ) * 100'
jq_osd_percentage_filter: '( (try .osdmap.num_in_osds + try .num_in_osds) / (try .osdmap.num_osds + try .num_osds)) * 100'
- name: Get OSD stat percentage
become: true