e68c7f36d6
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 common) This patch is also part of the Validation Metadata Evolution for the Validations Framework. Change-Id: Ie6b3a42a09292eadd4233b180132140052d89f09 Signed-off-by: Gael Chamoulaud (Strider) <gchamoul@redhat.com>
23 lines
454 B
YAML
23 lines
454 B
YAML
---
|
|
- hosts: localhost
|
|
gather_facts: false
|
|
vars:
|
|
metadata:
|
|
name: Verify if the server fits the CPU core requirements
|
|
description: >
|
|
Make sure that the server has enough CPU cores.
|
|
groups:
|
|
- prep
|
|
- backup-and-restore
|
|
- pre-introspection
|
|
categories:
|
|
- system
|
|
- cpu
|
|
- core
|
|
- os
|
|
products:
|
|
- common
|
|
minimal_cpu_count: 8
|
|
roles:
|
|
- check_cpu
|