Skip to content

Commit cb92bd6

Browse files
authored
[ci][8.x] Increase disk allocation (#220483)
## Summary We're around the 75g allocation limit with the VM image sizes after cache warmups. This is appears often depleted on 8.x branches, especially on PRs where non-cached packages might be introduced. This PR adds extra disk allocation for all tasks that are generating output, and at the risk of reaching over the slim free space.
1 parent 9d87e1a commit cb92bd6

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.buildkite/pipelines/on_merge.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ steps:
4040
provider: gcp
4141
machineType: n2-highcpu-8
4242
preemptible: true
43-
diskSizeGb: 75
43+
diskSizeGb: 80
4444
timeout_in_minutes: 60
4545
retry:
4646
automatic:
@@ -70,7 +70,7 @@ steps:
7070
provider: gcp
7171
machineType: n2-standard-16
7272
preemptible: true
73-
diskSizeGb: 75
73+
diskSizeGb: 80
7474
timeout_in_minutes: 60
7575
retry:
7676
automatic:
@@ -85,7 +85,7 @@ steps:
8585
provider: gcp
8686
machineType: n2-standard-32
8787
preemptible: true
88-
diskSizeGb: 75
88+
diskSizeGb: 80
8989
timeout_in_minutes: 60
9090
retry:
9191
automatic:
@@ -102,7 +102,7 @@ steps:
102102
diskType: 'hyperdisk-balanced'
103103
preemptible: true
104104
spotZones: us-central1-a,us-central1-b,us-central1-c
105-
diskSizeGb: 75
105+
diskSizeGb: 80
106106
timeout_in_minutes: 60
107107
retry:
108108
automatic:
@@ -135,7 +135,7 @@ steps:
135135
provider: gcp
136136
machineType: n2-highmem-4
137137
preemptible: true
138-
diskSizeGb: 75
138+
diskSizeGb: 80
139139
timeout_in_minutes: 80
140140
retry:
141141
automatic:

.buildkite/pipelines/pull_request/base.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ steps:
2727
agents:
2828
machineType: n2-highcpu-8
2929
preemptible: true
30-
diskSizeGb: 75
30+
diskSizeGb: 80
3131
key: quick_checks
3232
timeout_in_minutes: 60
3333
retry:
@@ -53,7 +53,7 @@ steps:
5353
agents:
5454
machineType: n2-standard-16
5555
preemptible: true
56-
diskSizeGb: 75
56+
diskSizeGb: 80
5757
key: linting
5858
timeout_in_minutes: 60
5959
retry:
@@ -66,7 +66,7 @@ steps:
6666
agents:
6767
machineType: n2-standard-32
6868
preemptible: true
69-
diskSizeGb: 75
69+
diskSizeGb: 80
7070
key: linting_with_types
7171
timeout_in_minutes: 60
7272
retry:
@@ -94,7 +94,7 @@ steps:
9494
diskType: 'hyperdisk-balanced'
9595
preemptible: true
9696
spotZones: us-central1-a,us-central1-b,us-central1-c
97-
diskSizeGb: 75
97+
diskSizeGb: 80
9898
key: check_types
9999
timeout_in_minutes: 60
100100
retry:
@@ -138,7 +138,7 @@ steps:
138138
agents:
139139
machineType: n2-highmem-4
140140
preemptible: true
141-
diskSizeGb: 75
141+
diskSizeGb: 80
142142
key: build_api_docs
143143
timeout_in_minutes: 90
144144
retry:

0 commit comments

Comments
 (0)