From 1bf00bcbd64a8e3506eebbd246bb23aee49716f9 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Tue, 21 Jul 2020 01:26:44 +0200 Subject: Create new server test_reboot_server_hard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It sometimes fail in all gates [1] This hack could highlight if it's a timeout issue or race conditions between all tempest tests. [1] http://artifacts.opnfv.org/functest/E5AZMH89OOK6/functest-opnfv-functest-smoke-cntt-hunter-tempest_full_cntt-run-142/tempest_full_cntt/tempest-report.html Change-Id: I8d03aa10c3d822dacb983e5ca019f79e1c582c9e Signed-off-by: Cédric Ollivier (cherry picked from commit c29cdcb448cf0d61f4c48acb939d5a943c138a48) --- docker/core/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'docker/core/Dockerfile') diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index e58d43d35..1077ba2a6 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -7,6 +7,7 @@ COPY Accept-custom-registered-endpoints.patch /tmp/Accept-custom-registered-endp COPY Fixes-race-condition-in-test_add_remove_fixed_ip.patch /tmp/Fixes-race-condition-in-test_add_remove_fixed_ip.patch COPY object-storage-fix-and-cleanup-header-checks.patch /tmp/object-storage-fix-and-cleanup-header-checks.patch COPY Switch-to-threading.Thread-for-Rally-tasks.patch /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch +COPY Create-new-server-test_reboot_server_hard.patch /tmp/Create-new-server-test_reboot_server_hard.patch RUN apk --no-cache add --update \ python3 libffi openssl libjpeg-turbo py3-pip bash \ grep sed wget ca-certificates git openssh-client qemu-img iputils coreutils mailcap \ @@ -51,10 +52,12 @@ RUN apk --no-cache add --update \ patch -p1 < /tmp/Accept-custom-registered-endpoints.patch && \ patch -p1 < /tmp/Fixes-race-condition-in-test_add_remove_fixed_ip.patch && \ patch -p1 < /tmp/object-storage-fix-and-cleanup-header-checks.patch && \ + patch -p1 < /tmp/Create-new-server-test_reboot_server_hard.patch && \ git commit -a -m "Backport critical bugfixes" && \ rm ~/.gitconfig) && \ sed -i -E /#egg=tempest/d /src/functest/upper-constraints.txt && \ rm /tmp/Accept-custom-registered-endpoints.patch \ /tmp/Fixes-race-condition-in-test_add_remove_fixed_ip.patch \ - /tmp/object-storage-fix-and-cleanup-header-checks.patch && \ + /tmp/object-storage-fix-and-cleanup-header-checks.patch \ + /tmp/Create-new-server-test_reboot_server_hard.patch && \ apk del .build-deps -- cgit 1.2.3-korg