Merge "Sync 'validations/ceph-dependencies-installed.yaml' with the new role" into stable/rocky

This commit is contained in:
Zuul 2020-02-04 11:36:48 +00:00 committed by Gerrit Code Review
commit 1d1958931a
1 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,39 @@
---
- hosts: overcloud
vars:
metadata:
name: Check if Ceph dependencies are installed
description: >
Prints a message if a ceph dependency is missed
groups:
- pre-deployment
fail_without_deps: true
tripleo_delegate_to: "{{ groups['overcloud'] | default([]) }}"
packages:
- lvm2
tasks:
- name: Gather the package facts
package_facts:
manager: auto
- name: Warn about missing dependencies
warn:
msg: "If planning to use Ceph, it is necessary to check {{ item[0] }} is installed!"
when:
- "'{{ item[0] }}' not in ansible_facts.packages"
- not fail_without_deps|default(false)|bool
delegate_to: "{{ item[1] }}"
with_nested:
- "{{ packages }}"
- "{{ tripleo_delegate_to }}"
- name: Fail if a ceph dependency is missing
fail:
msg: "If planning to use Ceph, it is necessary to install {{ item[0] }} package"
when:
- "'{{ item[0] }}' not in ansible_facts.packages"
- fail_without_deps|default(false)|bool
delegate_to: "{{ item[1] }}"
with_nested:
- "{{ packages }}"
- "{{ tripleo_delegate_to }}"