Merge "Limit deploy health checks to paunch managed ones"

This commit is contained in:
Zuul 2018-07-20 00:28:09 +00:00 committed by Gerrit Code Review
commit 0a0476aa89

@ -227,7 +227,7 @@
- name: "Check for unhealthy containers after step {{step}}"
shell: |
counter=0
while [ $(docker ps -f health=starting -q | wc -l) -gt 0 ] && [ $count -lt 10 ]; do
while [ $(docker ps -f health=starting -f label="managed_by=paunch" -q | wc -l) -gt 0 ] && [ $count -lt 10 ]; do
sleep 6
count=$[count+1]
done