Remove verbose Ansible logging (use ARA instead)

Currently all role playbook executions use very verbose
logging in order to help with diagnosing problems in
their execution.

ARA provides the most useful information available in
the verbose log output, so instead of trawling very
large logs we should instead use ARA's easier to navigate
output.

Change-Id: Idea3c01f27b72c73fdbaf5ff96c24421f4d3fa28
This commit is contained in:
Jesse Pretorius 2017-05-09 11:20:25 +01:00
parent 327d134632
commit 91df4bb564
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ export ROLE_NAME=${ROLE_NAME:-''}
export ANSIBLE_CALLBACK_WHITELIST="profile_tasks"
export ANSIBLE_OVERRIDES=${ANSIBLE_OVERRIDES:-$WORKING_DIR/tests/$ROLE_NAME-overrides.yml}
export ANSIBLE_PARAMETERS=${ANSIBLE_PARAMETERS:-"-vvv"}
export ANSIBLE_PARAMETERS=${ANSIBLE_PARAMETERS:-""}
export TEST_PLAYBOOK=${TEST_PLAYBOOK:-$WORKING_DIR/tests/test.yml}
export TEST_CHECK_MODE=${TEST_CHECK_MODE:-false}
export TEST_IDEMPOTENCE=${TEST_IDEMPOTENCE:-false}