From d464dc1850759d8cb0a22f655174977d8564bac6 Mon Sep 17 00:00:00 2001 From: lamai93 Date: Fri, 26 Oct 2018 13:15:50 +0200 Subject: [PATCH] When doing tests, always pull the image. --- tests/test_util.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_util.go b/tests/test_util.go index 816ce9436..0a4276e78 100644 --- a/tests/test_util.go +++ b/tests/test_util.go @@ -257,6 +257,9 @@ func newDeployment(name string) *api.ArangoDeployment { ObjectMeta: metav1.ObjectMeta{ Name: strings.ToLower(name), }, + Spec: api.DeploymentSpec{ + ImagePullPolicy: util.NewPullPolicy(v1.PullAlways), + }, } // set default image to the value given in env