39a846ca6b
This patch adds two new metadata keys to the validation playbooks: - categories: A list of technical tags - products: A list of targeted products (here mainly TripleO) This patch is also part of the Validation Metadata Evolution for the Validations Framework. Signed-off-by: Gael Chamoulaud (Strider) <gchamoul@redhat.com> Change-Id: I80c6b0ffb07b6311f13d7a3b83031317cd0d38de
31 lines
782 B
YAML
31 lines
782 B
YAML
---
|
|
- hosts: undercloud
|
|
vars:
|
|
metadata:
|
|
name: Verify undercloud fits the disk space requirements
|
|
description: |
|
|
Make sure that the root partition on the undercloud node has enough
|
|
free space.
|
|
|
|
http://tripleo.org/install/environments/baremetal.html#minimum-system-requirements
|
|
groups:
|
|
- prep
|
|
- pre-introspection
|
|
categories:
|
|
- storage
|
|
- disk
|
|
- os
|
|
- system
|
|
products:
|
|
- tripleo
|
|
volumes:
|
|
- {mount: /var/lib/docker, min_size: 10}
|
|
- {mount: /var/lib/config-data, min_size: 3}
|
|
- {mount: /var/log, min_size: 3}
|
|
- {mount: /usr, min_size: 5}
|
|
- {mount: /var, min_size: 20}
|
|
- {mount: /, min_size: 25}
|
|
|
|
roles:
|
|
- undercloud_disk_space
|