]
Filip Brychta resolved SWSQE-763.
---------------------------------
Resolution: Done
Updated install_kiali.sh script:
Make sure that kiali docker build is not using cache
----------------------------------------------------
Key: SWSQE-763
URL:
https://issues.jboss.org/browse/SWSQE-763
Project: Kiali QE
Issue Type: QE Task
Reporter: Filip Brychta
Assignee: Filip Brychta
Priority: Major
Labels: infrastructure
make docker-build-kiali is using docker build -t ${DOCKER_TAG} _output/docker which is
using caching. We are building kiali on build-kiali docker slave which is privileged
container so it's using docker daemon on the host. Turns out it's very unreliable
and cached layers can be used instead of actual build of kiali.
We need to make sure that it's not using caching. Maybe use dedicated VMs so it's
properly isolated when running more build jobs concurrently and always use docker build
--no-cache