From b158125dad1114599446f779e6e613b09e456631 Mon Sep 17 00:00:00 2001 From: Yu-Ju Hong Date: Mon, 27 Nov 2017 09:24:29 -0800 Subject: [PATCH] e2e: test containers projected volume updates should not exit The mounttest container should be running until the test determines to give up (i.e., time out) and kill it. It should not exit prematurely by itself. Bump the `--retry-timeout` to a much higher value. --- test/e2e/common/projected.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/common/projected.go b/test/e2e/common/projected.go index 10193466735..decb9595930 100644 --- a/test/e2e/common/projected.go +++ b/test/e2e/common/projected.go @@ -1517,7 +1517,7 @@ func projectedDownwardAPIVolumePodForUpdateTest(name string, labels, annotations { Name: "client-container", Image: mountImage, - Command: []string{"/mounttest", "--break_on_expected_content=false", "--retry_time=120", "--file_content_in_loop=" + filePath}, + Command: []string{"/mounttest", "--break_on_expected_content=false", "--retry_time=1200", "--file_content_in_loop=" + filePath}, VolumeMounts: []v1.VolumeMount{ { Name: "podinfo",