Merge "Optionally fail ceph-health if HEALTH_WARN"

This commit is contained in:
Zuul 2021-02-25 13:28:57 +00:00 committed by Gerrit Code Review
commit 1a9f1758d1
2 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,7 @@
fail_without_ceph_ansible: false
fail_without_deps: false
fail_on_ceph_health_err: false
fail_on_ceph_health_warn: false
osd_percentage_min: 0
ceph_ansible_repo: "centos-ceph-nautilus"
container_client: "podman"

View File

@ -53,6 +53,13 @@
- ceph_health.stdout != 'HEALTH_OK'
- not fail_on_ceph_health_err|default(true)|bool
- name: Fail if ceph health is HEALTH_WARN
fail:
msg: Ceph is in {{ ceph_health.stdout }} state.
when:
- ceph_health.stdout == 'HEALTH_WARN'
- fail_on_ceph_health_warn|default(false)|bool
- name: Fail if ceph health is HEALTH_ERR
fail:
msg: Ceph is in {{ ceph_health.stdout }} state.