do not overwrite local ./manifests during test run

This commit is contained in:
Sergey Dudoladov 2020-08-28 09:44:05 +02:00
parent 420881bf45
commit 93973f0127
2 changed files with 4 additions and 3 deletions

View File

@ -47,5 +47,5 @@ tools:
# install pinned version of 'kind'
GO111MODULE=on go get sigs.k8s.io/kind@v0.5.1
e2etest: tools
e2etest: tools copy clean
./run.sh

View File

@ -23,7 +23,6 @@ function pull_images(){
e2e_test_image="registry.opensource.zalan.do/acid/postgres-operator-e2e-tests-runner:latest"
docker pull ${e2e_test_image}
#e2e_test_image=$(docker images --filter=reference="registry.opensource.zalan.do/acid/postgres-operator-e2e-tests" --format "{{.Repository}}:{{.Tag}}" | head -1)
}
function start_kind(){
@ -52,9 +51,11 @@ function set_kind_api_server_ip(){
function run_tests(){
# tests modify files in ./manifests, so we mount a copy of this directory done by the e2e Makefile
docker run --rm \
--mount type=bind,source="$(readlink -f ${kubeconfig_path})",target=/root/.kube/config \
--mount type=bind,source="$(readlink -f ../manifests)",target=/manifests \
--mount type=bind,source="$(readlink -f manifests)",target=/manifests \
--mount type=bind,source="$(readlink -f tests)",target=/tests \
--mount type=bind,source="$(readlink -f exec.sh)",target=/exec.sh \
-e OPERATOR_IMAGE="${operator_image}" "${e2e_test_image}"