From cd9f3cfdad73ca729472008d4898de64d389c8fc Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 2 Jul 2019 15:04:55 -0700 Subject: [PATCH] Apply service-bridge.yaml in run_all.sh Prior to https://review.opendev.org/#/c/656871/ this code was executed by run_all.sh in every pass but seems to have been missed as part of 656871's base.yaml split up. Add service-bridge.yaml to run_all.sh to get these updates applying to bridge again. In particular things like clouds.yaml updates are missing otherwise. Note I've not merged bridge.yaml and service-bridge.yaml as it appears we want all of the service stuff to happen after base.yaml but bridge.yaml needs to happen before. I think this is why they were split in the first place. Change-Id: I0a7ce1a65cd19459bbaf244b94a23ddde360da1a --- run_all.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/run_all.sh b/run_all.sh index dba438a5ce..a155d44aaf 100755 --- a/run_all.sh +++ b/run_all.sh @@ -82,12 +82,17 @@ start_timer timeout -k 2m 10m ansible-playbook ${ANSIBLE_PLAYBOOKS}/bridge.yaml send_timer bridge + # Run the base playbook everywhere start_timer timeout -k 2m 120m ansible-playbook -f 50 ${ANSIBLE_PLAYBOOKS}/base.yaml send_timer base # Service playbooks +start_timer +timeout -k 2m 30m ansible-playbook -f 50 ${ANSIBLE_PLAYBOOKS}/service-bridge.yaml +send_timer service-bridge + start_timer timeout -k 2m 30m ansible-playbook -f 50 ${ANSIBLE_PLAYBOOKS}/service-gitea-lb.yaml send_timer gitea-lb