mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-05-12 14:29:39 +00:00
cap boot drive size to 20gb (default is 100gb) to avoid resource exhaustion
This commit is contained in:
parent
9e732b16b9
commit
5da74edda0
12
.github/release/clusters/modules/gke/main.tf
vendored
12
.github/release/clusters/modules/gke/main.tf
vendored
@ -26,8 +26,9 @@ resource "google_container_cluster" "this" {
|
||||
}
|
||||
|
||||
node_config {
|
||||
machine_type = var.node_pool_machine_type
|
||||
labels = var.node_pool_labels
|
||||
machine_type = var.node_pool_machine_type
|
||||
disk_size_gb = 20
|
||||
labels = var.node_pool_labels
|
||||
|
||||
oauth_scopes = [
|
||||
"https://www.googleapis.com/auth/cloud-platform",
|
||||
@ -45,9 +46,10 @@ resource "google_container_cluster" "this" {
|
||||
}
|
||||
|
||||
node_config {
|
||||
machine_type = var.tests_pool_machine_type
|
||||
spot = true
|
||||
labels = var.tests_pool_labels
|
||||
machine_type = var.tests_pool_machine_type
|
||||
disk_size_gb = 20
|
||||
spot = true
|
||||
labels = var.tests_pool_labels
|
||||
|
||||
oauth_scopes = [
|
||||
"https://www.googleapis.com/auth/cloud-platform",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user