Increaes GCB VM disk space to avoid build failure

Default VM disk size is 200 for Cloud Build, we need at least 300 to build all services.
This commit is contained in:
Olivier Cervello 2018-08-20 12:17:54 -05:00 committed by GitHub
parent a7a3bb7e03
commit 0d6e54f812
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -17,8 +17,6 @@ kind: Config
build:
tagPolicy:
gitCommit: {}
googleCloudBuild:
diskSizeGb: 300
artifacts:
- imageName: gcr.io/microservices-demo-app/emailservice
workspace: src/emailservice
@ -44,3 +42,9 @@ deploy:
kubectl:
manifests:
- ./kubernetes-manifests/**.yaml
profiles:
- name: gcb
build:
googleCloudBuild:
diskSizeGb: 300
machineType: "N1_HIGHCPU_32"