From 784c4aef2ff5e7c242338933c906d4d54e0ac8b4 Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Sun, 24 May 2015 09:39:59 -0400 Subject: [PATCH] e2e: Specify RestartPolicy=Never in host_path test Fixes #8745 --- test/e2e/host_path.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/e2e/host_path.go b/test/e2e/host_path.go index 898761dfa89..b1ec66164f6 100644 --- a/test/e2e/host_path.go +++ b/test/e2e/host_path.go @@ -135,7 +135,8 @@ func testPodWithHostVol(path string, source *api.HostPathVolumeSource) *api.Pod }, }, }, - Volumes: mount(source), + RestartPolicy: api.RestartPolicyNever, + Volumes: mount(source), }, } }