From a7a3bb7e03042cca22f5b8694b505c7f39caf7ee Mon Sep 17 00:00:00 2001 From: Olivier Cervello Date: Thu, 16 Aug 2018 15:26:34 -0500 Subject: [PATCH] Update skaffold.yaml `skaffold run` will fail while building the `cartservice` with a 'No Space Left on Device Error' Increasing the disk allocated for the build (default 200GB) to get rid of this error. --- skaffold.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skaffold.yaml b/skaffold.yaml index a05d6eb..a8a88b1 100644 --- a/skaffold.yaml +++ b/skaffold.yaml @@ -17,6 +17,8 @@ kind: Config build: tagPolicy: gitCommit: {} + googleCloudBuild: + diskSizeGb: 300 artifacts: - imageName: gcr.io/microservices-demo-app/emailservice workspace: src/emailservice