kuryr-tempest-plugin/devstack/plugin.sh
Michał Dulko 2b5d401e26 Add possibility to build with podman/buildah
In case of using cri-o as container engine we won't have docker binary
installed. Instead we should use podman (or buildah until podman's bug
is fixed). This commit implements that behavior based on value of
devstack-plugin-container's $CONTAINER_ENGINE value.

Change-Id: Ic3c7d355a455298f43e37fb2aceddfd1e7eefaf2
Implements: blueprint crio-support
2018-12-03 13:35:27 +01:00

27 lines
888 B
Bash

# install tempest plugin
function build_test_container {
pushd "${DEST}/kuryr-tempest-plugin/test_container"
# FIXME(dulek): Until https://github.com/containers/buildah/issues/1206 is
# resolved instead of podman we need to use buildah directly,
# hence this awful if clause.
if [[ ${CONTAINER_ENGINE} == 'crio' ]]; then
sudo buildah bud -t docker.io/kuryr/demo -f Dockerfile .
else
docker build -t kuryr/demo . -f Dockerfile
fi
popd
}
function install_kuryr_tempest_plugin {
setup_dev_lib "kuryr-tempest-plugin"
}
if [[ "$1" == "stack" && "$2" == "extra" ]]; then
echo_summary "Building kuryr/demo test container"
build_test_container
elif [[ "$1" == "stack" && "$2" == "test-config" ]]; then
echo_summary "Installing Kuryr Tempest Plugin"
install_kuryr_tempest_plugin
fi