53e8b80ed3
This patch add a way to choose container engine inside tool and test scripts. This is in preparation for Podman introduction but still leaves Docker as default container engine. Signed-off-by: Martin Hiner <m.hiner@partner.samsung.com> Change-Id: I395d2bdb0dfb4b325b6ad197c8893c8a0f768324
68 lines
1.7 KiB
Bash
Executable File
68 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o xtrace
|
|
set -o errexit
|
|
|
|
# Enable unbuffered output for Ansible in Jenkins.
|
|
export PYTHONUNBUFFERED=1
|
|
|
|
|
|
check_podman_failures() {
|
|
failed_containers=$(sudo podman ps -a --format "{{.Names}}" \
|
|
--filter status=created \
|
|
--filter status=paused \
|
|
--filter status=exited \
|
|
--filter status=unknown)
|
|
}
|
|
|
|
|
|
check_podman_unhealthies() {
|
|
unhealthy_containers=$(sudo podman ps -a --format "{{.Names}}" \
|
|
--filter health=unhealthy)
|
|
}
|
|
|
|
|
|
check_docker_failures() {
|
|
# All docker container's status are created, restarting, running, removing,
|
|
# paused, exited and dead. Containers without running status are treated as
|
|
# failure. removing is added in docker 1.13, just ignore it now.
|
|
# In addition to that, containers in unhealthy state (from healthchecks)
|
|
# are trated as failure.
|
|
failed_containers=$(sudo docker ps -a --format "{{.Names}}" \
|
|
--filter status=created \
|
|
--filter status=restarting \
|
|
--filter status=paused \
|
|
--filter status=exited \
|
|
--filter status=dead)
|
|
}
|
|
|
|
|
|
check_docker_unhealthies() {
|
|
unhealthy_containers=$(sudo docker ps -a --format "{{.Names}}" \
|
|
--filter health=unhealthy)
|
|
}
|
|
|
|
|
|
check_failure() {
|
|
if [ "$CONTAINER_ENGINE" = "docker" ]; then
|
|
check_docker_failures
|
|
check_docker_unhealthies
|
|
elif [ "$CONTAINER_ENGINE" = "podman" ]; then
|
|
check_podman_failures
|
|
check_podman_unhealthies
|
|
else
|
|
echo "Invalid container engine: ${CONTAINER_ENGINE}"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -n "$unhealthy_containers" ]]; then
|
|
exit 1;
|
|
fi
|
|
|
|
if [[ -n "$failed_containers" ]]; then
|
|
exit 1;
|
|
fi
|
|
}
|
|
|
|
check_failure
|