From ec4d6cfbebf54ab8644a4ce976d56cfbca86887f Mon Sep 17 00:00:00 2001 From: Spencer Krum Date: Mon, 2 May 2016 18:48:38 -0700 Subject: [PATCH] Run ansible-playbook in timeout We need this in case it is oomkilled Change-Id: Ia405dd800850ad46e3e11696079012dfc34a06ea --- run_all.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/run_all.sh b/run_all.sh index 403bf5bde1..9d1cd86775 100755 --- a/run_all.sh +++ b/run_all.sh @@ -27,13 +27,16 @@ ANSIBLE_PLAYBOOKS=$SYSTEM_CONFIG/playbooks # errexit set +e +# Run all the ansible playbooks under timeout to prevent them from getting +# stuck if they are oomkilled + # First, sync the puppet repos with all the machines -ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/update_puppet.yaml +timeout -k 2m 120m ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/update_puppet.yaml # Run the git/gerrit sequence, since it's important that they all work together -ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/remote_puppet_git.yaml +timeout -k 2m 120m ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/remote_puppet_git.yaml # Run AFS changes separately so we can make sure to only do one at a time # (turns out quorum is nice to have) -ansible-playbook -f 1 ${ANSIBLE_PLAYBOOKS}/remote_puppet_afs.yaml -ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/remote_puppet_infracloud.yaml +timeout -k 2m 120m ansible-playbook -f 1 ${ANSIBLE_PLAYBOOKS}/remote_puppet_afs.yaml +timeout -k 2m 120m ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/remote_puppet_infracloud.yaml # Run everything else. We do not care if the other things worked -ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/remote_puppet_else.yaml +timeout -k 2m 120m ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/remote_puppet_else.yaml