Juan Pablo Lopez 7e40c9ff35 Adding backup-and-restore validation group
- editing playbook to add backup-and-restore as group:
  * check-cpu.yaml
  * service-status.yaml
  * validate-selinux.yaml

Depends-on: I6167f65837ba5e96243b20a3661008d1805eedd5
Change-Id: I9428a63327b6b628f9552b6c5ee7f91c8b972508
2021-04-15 13:29:13 +00:00
2021-03-03 14:21:09 +01:00
2020-06-24 11:58:39 +08:00
2021-01-28 09:28:52 +01:00
2020-03-06 11:32:14 +01:00
2021-04-06 15:34:18 +02:00
2020-03-10 15:41:26 +01:00
2020-03-05 10:44:48 +01:00
2021-04-07 11:06:32 +00:00

Validations-common

image

A collection of Ansible roles and playbooks to detect and report potential issues during deployments.

The validations will help detect issues early in the deployment process and prevent field engineers from wasting time on misconfiguration or hardware issues in their environments.

Installation

There are several different ways to install validations-common. However it is recommended to both install and use the package inside python virtual environment.

At the command line using pip.

$ pip install validations-common

Or, if you have virtualenvwrapper installed.

$ mkvirtualenv validations-common
$ pip install validations-common

Installation with package manager

Alternativelly it is possible to install validations-common using package manager.

Such as yum...

$ yum install validations-common

or the more modern dnf.

$ dnf install validations-common

Usage

Once the validations-common project has been installed, navigate to the chosen share path, usually /usr/share/ansible to access the installed roles, playbooks, and libraries.

While the validations-common can be run by itself, it nonetheless depends on Ansible and validations-libs. Therefore it isn't recommended to use only validations-common.

The validations included with validations-common are intended to be demonstrations, capable of running on most setups. But they are not meant for production environment.

Validations Callbacks

http_json callback

The callback http_json sends Validations logs and information to an HTTP server as a JSON format in order to get caught and analysed with external tools for log parsing (as Fluentd or others).

This callback inherits from validation_json the format of the logging remains the same as the other logger that the Validation Framework is using by default.

To enable this callback, you need to add it to the callback whitelist. Then you need to export your http server url and port:

export HTTP_JSON_SERVER=http://localhost
export HTTP_JSON_PORT=8989

The callback will post JSON log to the URL provided. This repository has a simple HTTP server for testing purpose under:

tools/http_server.py

The default host and port are localhost and 8989, feel free to adjust those values to your needs.

Description
RETIRED, A collection of generic ansible playbooks for the Validation Framework
Readme 4.9 MiB