Skip to content

Commit

Permalink
gce driver: increase disk size to 60G
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy Razon committed Jul 20, 2023
1 parent 41be350 commit 83c231f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/driver-gce/src/driver/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ const client = ({
},
machineType,
disks: [{
diskSizeGb: 10,
diskSizeGb: 60,
type: 'pd-standard',
boot: true,
autoDelete: true,
initializeParams: {
sourceImage: image.selfLink,
diskSizeGb: 10,
diskSizeGb: 60,
},
}],
metadata: {
Expand Down

0 comments on commit 83c231f

Please sign in to comment.