0c16334a2c
This change updates the lxc-container-create role to build lxc containers using the download template. The build supports ubuntu 14.04/16.04 and RedHat/CentOS 7 using the multi-distro framework. This change is incorporating updates built into the lxc_hosts role. Once merged this should unblock all work geared toward multi-distro support and testing. The testing structure has been updated to match what is being done in other roles. A new file was created "manual-tests.rc" which assists in manual testing by exporting the needed environment variables to run the role tests without requiring everything to run through tox which has undesirable side-effects when running tests that span multiple roles. Change-Id: Iee304dd026e0865e0444259d2132122233d90f5f Depends-On: Ie13be2322d28178760481c59805101d6aeef4f36 Co-Authored-By: Jesse Pretorius <jesse.pretorius@rackspace.co.uk> Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
23 lines
1.0 KiB
Plaintext
23 lines
1.0 KiB
Plaintext
export VIRTUAL_ENV=$(pwd)
|
|
export ANSIBLE_HOST_KEY_CHECKING=False
|
|
export ANSIBLE_SSH_CONTROL_PATH=/tmp/%%h-%%r
|
|
|
|
# TODO (odyssey4me) These are only here as they are non-standard folder
|
|
# names for Ansible 1.9.x. We are using the standard folder names for
|
|
# Ansible v2.x. We can remove this when we move to Ansible 2.x.
|
|
export ANSIBLE_ACTION_PLUGINS=${HOME}/.ansible/plugins/action
|
|
export ANSIBLE_CALLBACK_PLUGINS=${HOME}/.ansible/plugins/callback
|
|
export ANSIBLE_FILTER_PLUGINS=${HOME}/.ansible/plugins/filter
|
|
export ANSIBLE_LOOKUP_PLUGINS=${HOME}/.ansible/plugins/lookup
|
|
|
|
# This is required as the default is the current path or a path specified
|
|
# in ansible.cfg
|
|
export ANSIBLE_LIBRARY=${HOME}/.ansible/plugins/library
|
|
|
|
# This is required as the default is '/etc/ansible/roles' or a path
|
|
# specified in ansible.cfg
|
|
export ANSIBLE_ROLES_PATH=${HOME}/.ansible/roles:$(pwd)/..
|
|
|
|
echo "Run manual functional tests by executing the following:"
|
|
echo "# ./.tox/functional/bin/ansible-playbook -i tests/inventory tests/test.yml -e \"rolename=$(pwd)\""
|