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.

Depends-On: Id20ee6bf069f53739f7a5ea7983edf2fc9b445d2
Change-Id: I16e7eb081640332ac69ee0b32d3d871fab40d447
Related-Bug: 1882387
(cherry picked from commit 35821c44df)
This commit is contained in:
Giulio Fidente 2020-07-01 16:18:16 +02:00 committed by Francesco Pantano
parent 0bc2cad4ee
commit f97940e6ad
No known key found for this signature in database
GPG Key ID: 799868C47301D458
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