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
24 lines
817 B
YAML
24 lines
817 B
YAML
---
|
|
- hosts: "{{ controller_rolename | default('Controller') }}"
|
|
vars:
|
|
metadata:
|
|
name: Validate stonith devices
|
|
description: |
|
|
Verify that stonith devices are configured for your OpenStack Platform HA cluster.
|
|
We don't configure stonith device with TripleO Installer. Because the hardware
|
|
configuration may be differ in each environment and requires different fence agents.
|
|
How to configure fencing please read
|
|
https://access.redhat.com/documentation/en/red-hat-openstack-platform/8/paged/director-installation-and-usage/86-fencing-the-controller-nodes
|
|
groups:
|
|
- post-deployment
|
|
categories:
|
|
- ha
|
|
- clustering
|
|
- os
|
|
- system
|
|
products:
|
|
- tripleo
|
|
- pacemaker
|
|
roles:
|
|
- stonith_exists
|