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.
This commit is contained in:
parent
fad711b2db
commit
a7a3bb7e03
1 changed files with 2 additions and 0 deletions
|
@ -17,6 +17,8 @@ kind: Config
|
||||||
build:
|
build:
|
||||||
tagPolicy:
|
tagPolicy:
|
||||||
gitCommit: {}
|
gitCommit: {}
|
||||||
|
googleCloudBuild:
|
||||||
|
diskSizeGb: 300
|
||||||
artifacts:
|
artifacts:
|
||||||
- imageName: gcr.io/microservices-demo-app/emailservice
|
- imageName: gcr.io/microservices-demo-app/emailservice
|
||||||
workspace: src/emailservice
|
workspace: src/emailservice
|
||||||
|
|
Loading…
Reference in a new issue