A Python library for code common to TripleO CLI and TripleO UI.
You can not 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
Jenkins 12538270b7
Merge "healthchecks: start to implement container healthchecks"
6 years ago
container-images Merge "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 Remove 'ntpd' package from some image-yaml files 6 years ago
playbooks Add workbook to rotate fernet keys 6 years ago
releasenotes Merge "Derive deployment parameters for HCI" 6 years ago
scripts Replace swiftclient with openstackclient 6 years ago
tools healthchecks: start to implement container healthchecks 6 years ago
tripleo_common Merge "Don't call safe_dump if the param is already str" 6 years ago
undercloud_heat_plugins Replace six.iteritems() with .items() 6 years ago
workbooks Merge "Consume ceph-ansible vars from the execution environment" 6 years ago
.coveragerc Make coverage tests work 7 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 6 years ago
babel.cfg Initial Cookiecutter Commit. 8 years ago
requirements.txt 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