From ed2aae6d17aec1b719c44ec7a6b1a7d928274659 Mon Sep 17 00:00:00 2001 From: Zoltan Kiss Date: Fri, 4 Oct 2019 16:33:13 +0100 Subject: [PATCH] format --- buildSrc/src/main/groovy/net/corda/testing/KubesTest.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildSrc/src/main/groovy/net/corda/testing/KubesTest.groovy b/buildSrc/src/main/groovy/net/corda/testing/KubesTest.groovy index c799c9f407..2cfc1b0984 100644 --- a/buildSrc/src/main/groovy/net/corda/testing/KubesTest.groovy +++ b/buildSrc/src/main/groovy/net/corda/testing/KubesTest.groovy @@ -252,7 +252,7 @@ class KubesTest extends DefaultTask { .addNewVolume() .withName("poddata") - .withNewHostPath().withPath(podData.path).withType("Directory").endHostPath() + .withNewHostPath().withType("Directory").withPath(podData.path).endHostPath() .endVolume() .addNewContainer() @@ -271,7 +271,7 @@ class KubesTest extends DefaultTask { .addToRequests("memory", new Quantity("${memoryGbPerFork}Gi")) .endResources() .addNewVolumeMount().withName("gradlecache").withMountPath("/tmp/gradle").endVolumeMount() - .addNewVolumeMount().withName("poddata").withMountPath("/poddata").endVolumeMount() + .addNewVolumeMount().withName("poddata").withMountPath("/shared-data").endVolumeMount() .endContainer() .withImagePullSecrets(new LocalObjectReference("regcred"))