Files
tripleo-validations/playbooks/ceph-dependencies-installed.yaml
Cédric Jeanneret 1a4991daf3 Updated "overcloud" to "allovercloud" group
Apparently this is the new term to access all the overcloud nodes.

Change-Id: I07fd17501ea66d229549fcf4031ae4126b055906
2020-08-06 17:20:13 +02:00

19 lines
459 B
YAML

---
- hosts: allovercloud
vars:
metadata:
name: Check if Ceph dependencies are installed
description: >
Prints a message if a ceph dependency is missed
groups:
- pre-deployment
- pre-ceph
fail_without_deps: true
tripleo_delegate_to: "{{ groups['allovercloud'] | default([]) }}"
packages:
- lvm2
tasks:
- include_role:
name: ceph
tasks_from: "ceph-dependencies-installed"