diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index 3cf09330b..526d65800 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -4,6 +4,18 @@ pipeline { environment { AWS_REGION = "us-east-2" AWS_BUCKET = "imagebuilder-jenkins-testing-use2" + // Colorful Ansible always looks nicer. + ANSIBLE_FORCE_COLOR="True" + // Time each task and display stdout as YAML (easier to read). + ANSIBLE_LOAD_CALLBACK_PLUGINS="True" + ANSIBLE_CALLBACK_WHITELIST="profile_tasks" + ANSIBLE_STDOUT_CALLBACK="yaml" + // Don't display those ugly purple deprecation warnings. + ANSIBLE_DEPRECATION_WARNINGS="False" + // Our host keys are constantly changing. + ANSIBLE_HOST_KEY_CHECKING="False" + // Enable ssh pipelining for faster deployments to remote nodes. + ANSIBLE_PIPELINING="True" } options {