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
27 lines
677 B
YAML
27 lines
677 B
YAML
---
|
|
- hosts: "{{ controller_rolename | default('Controller') }}"
|
|
gather_facts: false
|
|
vars:
|
|
metadata:
|
|
name: Neutron Sanity Check
|
|
description: |
|
|
Run `neutron-sanity-check` on the controller nodes to find out
|
|
potential issues with Neutron's configuration.
|
|
|
|
The tool expects all the configuration files that are passed
|
|
to the Neutron services.
|
|
groups:
|
|
- backup-and-restore
|
|
- post-deployment
|
|
categories:
|
|
- networking
|
|
- neutron
|
|
- overcloud
|
|
- controller
|
|
- undercloud-config
|
|
- container
|
|
products:
|
|
- tripleo
|
|
roles:
|
|
- neutron_sanity_check
|