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
38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
---
|
|
- hosts: undercloud
|
|
vars:
|
|
metadata:
|
|
name: Undercloud Neutron Sanity Check
|
|
description: |
|
|
Run `neutron-sanity-check` on the undercloud node to find out
|
|
potential issues with Neutron's configuration.
|
|
|
|
The tool expects all the configuration files that are passed
|
|
to the Neutron services.
|
|
|
|
groups:
|
|
- pre-introspection
|
|
categories:
|
|
- networking
|
|
- neutron
|
|
- overcloud
|
|
- controller
|
|
- undercloud-config
|
|
- container
|
|
products:
|
|
- tripleo
|
|
|
|
# The list of Neutron configuration files and directories that
|
|
# will be passed to the Neutron services. The order is important
|
|
# here: the values in later files take precedence.
|
|
configs:
|
|
- /etc/neutron/neutron.conf
|
|
- /usr/share/neutron/neutron-dist.conf
|
|
- /etc/neutron/metadata_agent.ini
|
|
- /etc/neutron/dhcp_agent.ini
|
|
- /etc/neutron/plugins/ml2/openvswitch_agent.ini
|
|
- /etc/neutron/l3_agent.ini
|
|
|
|
roles:
|
|
- neutron_sanity_check
|