![]() 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 | 6 years ago | |
contrib | 6 years ago | |
doc/source | 6 years ago | |
healthcheck | 6 years ago | |
heat_docker_agent | 6 years ago | |
image-yaml | 6 years ago | |
playbooks | 6 years ago | |
releasenotes | 6 years ago | |
scripts | 6 years ago | |
tools | 6 years ago | |
tripleo_common | 6 years ago | |
undercloud_heat_plugins | 6 years ago | |
workbooks | 6 years ago | |
.coveragerc | 8 years ago | |
.gitignore | 6 years ago | |
.gitreview | 8 years ago | |
.mailmap | 8 years ago | |
.testr.conf | 8 years ago | |
CONTRIBUTING.rst | 8 years ago | |
HACKING.rst | 7 years ago | |
LICENSE | 8 years ago | |
MANIFEST.in | 8 years ago | |
README.rst | 7 years ago | |
babel.cfg | 8 years ago | |
requirements.txt | 6 years ago | |
setup.cfg | 6 years ago | |
setup.py | 6 years ago | |
sudoers | 6 years ago | |
test-requirements.txt | 6 years ago | |
tox.ini | 6 years ago |
README.rst
Team and repository tags
tripleo-common
A common library for TripleO workflows.
- Free software: Apache license
- Documentation: http://docs.openstack.org/developer/tripleo-common
- Source: http://git.openstack.org/cgit/openstack/tripleo-common
- Bugs: http://bugs.launchpad.net/tripleo-common
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