Skip to content
Snippets Groups Projects
Commit 70ebf95c authored by Michal Nasiadka's avatar Michal Nasiadka
Browse files

CI: Pin docker to <7 in setup_gate.sh

Change-Id: I46c05a54171cbf43a51594998561db94af7d17e6
parent 7a29abb5
No related branches found
No related tags found
No related merge requests found
......@@ -123,10 +123,14 @@ EOF
sudo $CONTAINER_ENGINE run -d --net=host -e REGISTRY_HTTP_ADDR=0.0.0.0:4000 --restart=always -v /opt/kolla_registry/:/var/lib/registry --name registry registry:2
python3 -m venv ~/kolla-venv
. ~/kolla-venv/bin/activate
pip install "${KOLLA_SRC_DIR}" ${CONTAINER_ENGINE} rich
python3 -m venv ~/kolla-venv
source ~/kolla-venv/bin/activate
if [[ "$CONTAINER_ENGINE" == "docker" ]]; then
pip install "${KOLLA_SRC_DIR}" "docker<7"
else
pip install "${KOLLA_SRC_DIR}" "podman"
fi
sudo ~/kolla-venv/bin/kolla-build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment