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
33 lines
879 B
YAML
33 lines
879 B
YAML
---
|
|
- hosts: Undercloud
|
|
gather_facts: false
|
|
vars:
|
|
metadata:
|
|
name: Verify overcloud services state after running a deployment or an update
|
|
description: |
|
|
An Ansible role to verify the Overcloud services states after a deployment
|
|
or an update. It checks the API /os-services and looks for deprecated
|
|
services (nova-consoleauth) or any down services.
|
|
groups:
|
|
- post-deployment
|
|
- post-upgrade
|
|
- post-overcloud-upgrade
|
|
- post-overcloud-converge
|
|
categories:
|
|
- api
|
|
- compute
|
|
- storage
|
|
- undercloud
|
|
- overcloud
|
|
products:
|
|
- tripleo
|
|
overcloud_service_status_debug: false
|
|
overcloud_service_api:
|
|
- nova
|
|
- cinderv3
|
|
overcloud_deprecated_services:
|
|
nova:
|
|
- nova-consoleauth
|
|
roles:
|
|
- overcloud_service_status
|