Merge "Instruct container-status validation to accept 137, 142 and 143 exit code status"

This commit is contained in:
Zuul 2022-01-18 12:06:46 +00:00 committed by Gerrit Code Review
commit bfae47cb4c
1 changed files with 1 additions and 1 deletions

View File

@ -44,5 +44,5 @@
- name: Fail if we detect failed containers
fail:
msg: "Failed container detected: {{ item }}."
when: item is not match(".* Exited \(0\) .* ago")
when: item is not match(".* Exited \((0|137|142|143)\) .* ago")
loop: "{{ failed_containers.stdout_lines }}"