A Python library for code common to TripleO CLI and TripleO UI.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Lars Kellogg-Stedman 80fe68beb8 healthchecks: start to implement container healthchecks
This is the first in a series of patches that will implement
healthchecks for containerized services, conforming to the Docker
HEALTHCHECK api and to the container-healthchecks blueprint.  This
commit includes an example healtcheck (for heat-api), and modifies the
pep8 check to error out on duplicate jinja blocks in
container-images/tripleo_kolla_template_overrides.j2, since we will be
adding or modifying the _footer block for each service.

Change-Id: Id9fc19dd386e395317093d1723b836ae2807fdf0
Implements: blueprint container-healthchecks
Co-authored-by: Dan Prince <dprince@redhat.com>
Co-authored-by: Ian Main <imain@redhat.com>
6 years ago
container-images healthchecks: start to implement container healthchecks 6 years ago
contrib Rename contrib to container-images for packaging 6 years ago
doc/source Switch from oslosphinx to openstackdocstheme 6 years ago
healthcheck healthchecks: start to implement container healthchecks 6 years ago
heat_docker_agent Remove symlinks causing hiera hook to exit early 6 years ago
image-yaml Merge "Start using generic dracut-regenerate element" 6 years ago
playbooks Add workbook to rotate fernet keys 6 years ago
releasenotes Switch from oslosphinx to openstackdocstheme 6 years ago
scripts Replace swiftclient with openstackclient 6 years ago
tools healthchecks: start to implement container healthchecks 6 years ago
tripleo_common Merge "DPDK and Host derive parameters workflows" 6 years ago
undercloud_heat_plugins Replace six.iteritems() with .items() 6 years ago
workbooks DPDK and Host derive parameters workflows 6 years ago
.coveragerc Make coverage tests work 8 years ago
.gitignore Add ReNo support 6 years ago
.gitreview Added .gitreview 8 years ago
.mailmap Initial Cookiecutter Commit. 8 years ago
.testr.conf Initial Cookiecutter Commit. 8 years ago
CONTRIBUTING.rst Initial Cookiecutter Commit. 8 years ago
HACKING.rst Fix formatting in doc files 7 years ago
LICENSE Initial Cookiecutter Commit. 8 years ago
MANIFEST.in Initial Cookiecutter Commit. 8 years ago
README.rst Pin docutils version 7 years ago
babel.cfg Initial Cookiecutter Commit. 8 years ago
requirements.txt Merge "Updated from global requirements" 6 years ago
setup.cfg healthchecks: start to implement container healthchecks 6 years ago
setup.py Updated from global requirements 6 years ago
sudoers Fix race in undercloud cell_v2 host discovery 6 years ago
test-requirements.txt Updated from global requirements 6 years ago
tox.ini healthchecks: start to implement container healthchecks 6 years ago

README.rst

Team and repository tags

image

tripleo-common

A common library for TripleO workflows.

Action Development

When developing new actions, you will checkout a copy of tripleo-common to an undercloud machine and add actions as needed. To test the actions they need to be installed and selected services need to be restarted. Use the following code to accomplish these tasks. :

sudo rm -Rf /usr/lib/python2.7/site-packages/tripleo_common*
sudo python setup.py install
sudo cp /usr/share/tripleo-common/sudoers /etc/sudoers.d/tripleo-common
sudo systemctl restart openstack-mistral-executor
sudo systemctl restart openstack-mistral-engine
# this loads the actions via entrypoints
sudo mistral-db-manage populate
# make sure the new actions got loaded
mistral action-list | grep tripleo

Validations

Prerequisites

If you haven't installed the undercloud with the enable_validations set to true, you will have to prepare your undercloud to run the validations:

$ sudo pip install git+https://git.openstack.org/openstack/tripleo-validations
$ sudo yum install ansible
$ sudo useradd validations

Finally you need to generate an SSH keypair for the validation user and copy it to the overcloud's authorized_keys files:

$ mistral execution-create tripleo.validations.v1.copy_ssh_key

Running validations using the mistral workflow

Create a context.json file containing the arguments passed to the workflow:

{
  "validation_names": ["512e", "rabbitmq-limits"]
}

Run the tripleo.validations.v1.run_validations workflow with mistral client:

mistral execution-create tripleo.validations.v1.run_validations context.json

Running groups of validations

Create a context.json file containing the arguments passed to the workflow:

{
  "group_names": ["network", "post-deployment"]
}

Run the tripleo.validations.v1.run_groups workflow with mistral client:

mistral execution-create tripleo.validations.v1.run_groups context.json