mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-05-13 14:59:31 +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 {
|
node_config {
|
||||||
machine_type = var.node_pool_machine_type
|
machine_type = var.node_pool_machine_type
|
||||||
labels = var.node_pool_labels
|
disk_size_gb = 20
|
||||||
|
labels = var.node_pool_labels
|
||||||
|
|
||||||
oauth_scopes = [
|
oauth_scopes = [
|
||||||
"https://www.googleapis.com/auth/cloud-platform",
|
"https://www.googleapis.com/auth/cloud-platform",
|
||||||
@ -45,9 +46,10 @@ resource "google_container_cluster" "this" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
node_config {
|
node_config {
|
||||||
machine_type = var.tests_pool_machine_type
|
machine_type = var.tests_pool_machine_type
|
||||||
spot = true
|
disk_size_gb = 20
|
||||||
labels = var.tests_pool_labels
|
spot = true
|
||||||
|
labels = var.tests_pool_labels
|
||||||
|
|
||||||
oauth_scopes = [
|
oauth_scopes = [
|
||||||
"https://www.googleapis.com/auth/cloud-platform",
|
"https://www.googleapis.com/auth/cloud-platform",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user