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
28 lines
678 B
YAML
28 lines
678 B
YAML
---
|
|
- hosts: allovercloud
|
|
vars:
|
|
metadata:
|
|
name: Confirm that overcloud nodes are setup correctly
|
|
description: |
|
|
Checks that overcloud nodes are registered with IdM
|
|
and that all certs being tracked by certmonger are in the
|
|
MONITORING state.
|
|
groups:
|
|
- post-deployment
|
|
categories:
|
|
- security
|
|
- tls-everywhere
|
|
- identity
|
|
- dns
|
|
- kerberos
|
|
products:
|
|
- tripleo
|
|
- freeipa
|
|
tasks:
|
|
- include_role:
|
|
name: tls_everywhere
|
|
tasks_from: common.yaml
|
|
- include_role:
|
|
name: tls_everywhere
|
|
tasks_from: overcloud-post-deployment.yaml
|