Add progressing deadline to test app to fix e2e tets slowness

This commit is contained in:
Alexander Matyushentsev
2018-06-12 08:54:47 -07:00
parent aa4291183b
commit fed2149174

View File

@@ -24,6 +24,6 @@ local appDeployment = deployment
container
.new(params.name, params.image)
.withPorts(containerPort.new(targetPort)) + if params.command != null then { command: [ params.command ] } else {},
labels);
labels).withProgressDeadlineSeconds(5);
k.core.v1.list.new([appService, appDeployment])