RETIRED, A collection of generic ansible playbooks for the Validation Framework
Go to file
Jiri Podivin 43cea1a2d3 Add missing font for PDF generation
openstack-tox-docs job started to fail with the following error:

! LaTeX Error: File `tgtermes.sty' not found.
This patch adds the required font package to bindep doc profile.

Co-authored-by: Elod Illes <elod.illes@est.tech>
Co-authored-by: Takashi Kajinami <tkajinam@redhat.com>

Signed-off-by: Jiri Podivin <jpodivin@redhat.com>
Change-Id: Ibf71ef28a20e489b9f0f377e87b5803413184392
2021-07-26 16:36:42 +02:00
.config/molecule Remove workaround for tox-ansible and global molecule config 2021-05-17 09:34:32 +02:00
doc Merge "[advanced_format_512e_support] Add role documentation in sphinx" 2021-07-06 00:47:38 +00:00
playbooks fix var name in logging statement 2021-07-07 07:53:43 +02:00
releasenotes Fix pygments style 2020-06-24 11:58:39 +08:00
roles Fix the way we handle validation cli command in CI role 2021-06-25 12:40:29 +02:00
scripts [Testing Infra] Apply here the improvements done to tripleo-validations 2021-04-01 10:16:07 +02:00
tests [Testing Infra] Apply here the improvements done to tripleo-validations 2021-04-01 10:16:07 +02:00
tools File validation extended to callback_plugins, main loop optimized 2021-05-17 15:29:27 +02:00
validations_common Merge "Callback logging unification" 2021-07-13 17:18:53 +00:00
.ansible-lint Remove RoleNames ansible-lint custom rule 2021-04-30 08:29:08 +00:00
.coveragerc Cover report omits test files 2021-04-06 15:34:18 +02:00
.dockerignore Adds dockerignore to the repo 2021-05-20 05:01:28 +00:00
.gitignore .gitignore now excludes JSON molecule logs 2021-03-31 08:38:40 +02:00
.gitreview Migrate molecule jobs from centos 7 to 8 2020-03-13 12:23:25 +01:00
.pre-commit-config.yaml Bump pre-commit repositories 2021-05-05 15:47:54 +02:00
.reqcheck_override.yaml Reqcheck job for upstream validations-common 2021-05-19 15:20:08 +02:00
.stestr.conf Make the measuring code coverage test working 2021-02-08 13:25:46 +01:00
.yamllint Move Ansible components to validations_common directory 2020-03-05 14:53:02 +01:00
.zuul.yaml Merge "Coverage change job" 2021-07-02 21:07:51 +00:00
CONTRIBUTING.rst Reorganize CONTRIBUTING information 2021-06-23 16:29:48 +02:00
LICENSE Add License File 2020-03-10 15:41:26 +01:00
MANIFEST.in Initialization of validations-common 2020-03-04 15:54:39 +01:00
README.rst Reorganize CONTRIBUTING information 2021-06-23 16:29:48 +02:00
ansible-test-env.rc [Testing Infra] Apply here the improvements done to tripleo-validations 2021-04-01 10:16:07 +02:00
bindep.txt Add missing font for PDF generation 2021-07-26 16:36:42 +02:00
molecule-requirements.txt Bump molecule to 3.3.1 2021-05-27 09:36:14 +00:00
requirements.txt Licences are now listed for all requirements. 2021-05-20 09:33:32 +00:00
setup.cfg Merge "Use new CLI for functionnal tests and remove validation.py script" 2021-04-30 12:52:59 +00:00
setup.py Fix pbr installation issues 2020-03-05 10:44:48 +01:00
test-requirements.txt Tests for validation.py module and helper classes 2021-04-07 15:10:23 +02:00
tox.ini Merge "Removing the 'PIP_+' string from tox.ini" 2021-06-18 16:32:40 +00:00

README.rst

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.

$ python3 -m pip install validations-common

Or, if you have virtualenvwrapper installed.

$ mkvirtualenv validations-common
$ python3 -m pip install validations-common

Installation with package manager

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

Such as yum or dnf...

$ yum|dnf 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.

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.