
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
23 lines
585 B
YAML
23 lines
585 B
YAML
---
|
|
- hosts: undercloud
|
|
vars:
|
|
metadata:
|
|
name: Undercloud Services Debug Check
|
|
description: |
|
|
The undercloud's openstack services should _not_ have debug enabled.
|
|
This will check if debug is enabled on undercloud services.
|
|
If debug is enabled, the root filesystem can fill up quickly, and
|
|
is not a good thing.
|
|
groups:
|
|
- pre-deployment
|
|
categories:
|
|
- compute
|
|
- networking
|
|
- telemetry
|
|
- baremetal
|
|
products:
|
|
- tripleo
|
|
debug_check: "True"
|
|
roles:
|
|
- undercloud_debug
|