
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>
26 lines
520 B
YAML
26 lines
520 B
YAML
---
|
|
- hosts: all
|
|
gather_facts: false
|
|
vars:
|
|
metadata:
|
|
name: Ensure services state
|
|
description: >
|
|
Detect services status on the target host and fails if we find
|
|
a failed service.
|
|
groups:
|
|
- prep
|
|
- backup-and-restore
|
|
- pre-deployment
|
|
- pre-upgrade
|
|
- post-deployment
|
|
- post-upgrade
|
|
categories:
|
|
- systemd
|
|
- container
|
|
- docker
|
|
- podman
|
|
products:
|
|
- common
|
|
roles:
|
|
- service_status
|