Change default boot disk size to 15g for dataproc (#2911)

<!-- This change is generated by MagicModules. -->
/cc @chrisst
This commit is contained in:
The Magician 2019-01-22 16:53:36 -08:00 committed by Chris Stephens
parent f2649bcbdb
commit 62fe98fb0a
3 changed files with 15 additions and 15 deletions

View File

@ -861,7 +861,7 @@ resource "google_dataproc_cluster" "with_config_overrides" {
machine_type = "n1-standard-1"
disk_config {
boot_disk_type = "pd-ssd"
boot_disk_size_gb = 10
boot_disk_size_gb = 15
}
}
@ -920,7 +920,7 @@ resource "google_dataproc_cluster" "with_init_action" {
master_config {
machine_type = "n1-standard-1"
disk_config {
boot_disk_size_gb = 10
boot_disk_size_gb = 15
}
}
@ -947,7 +947,7 @@ resource "google_dataproc_cluster" "updatable" {
num_instances = "1"
machine_type = "n1-standard-1"
disk_config {
boot_disk_size_gb = 10
boot_disk_size_gb = 15
}
}
@ -955,14 +955,14 @@ resource "google_dataproc_cluster" "updatable" {
num_instances = "%d"
machine_type = "n1-standard-1"
disk_config {
boot_disk_size_gb = 10
boot_disk_size_gb = 15
}
}
preemptible_worker_config {
num_instances = "%d"
disk_config {
boot_disk_size_gb = 10
boot_disk_size_gb = 15
}
}
}
@ -999,7 +999,7 @@ resource "google_dataproc_cluster" "with_bucket" {
master_config {
machine_type = "n1-standard-1"
disk_config {
boot_disk_size_gb = 10
boot_disk_size_gb = 15
}
}
}
@ -1065,7 +1065,7 @@ resource "google_dataproc_cluster" "with_service_account" {
master_config {
machine_type = "n1-standard-1"
disk_config {
boot_disk_size_gb = 10
boot_disk_size_gb = 15
}
}
@ -1141,7 +1141,7 @@ resource "google_dataproc_cluster" "with_net_ref_by_name" {
master_config {
machine_type = "n1-standard-1"
disk_config {
boot_disk_size_gb = 10
boot_disk_size_gb = 15
}
}
@ -1167,7 +1167,7 @@ resource "google_dataproc_cluster" "with_net_ref_by_url" {
master_config {
machine_type = "n1-standard-1"
disk_config {
boot_disk_size_gb = 10
boot_disk_size_gb = 15
}
}

View File

@ -497,7 +497,7 @@ resource "google_dataproc_cluster" "basic" {
num_instances = 1
machine_type = "n1-standard-1"
disk_config {
boot_disk_size_gb = 10
boot_disk_size_gb = 15
}
}
}

View File

@ -43,7 +43,7 @@ resource "google_dataproc_cluster" "mycluster" {
machine_type = "n1-standard-1"
disk_config {
boot_disk_type = "pd-ssd"
boot_disk_size_gb = 10
boot_disk_size_gb = 15
}
}
@ -51,7 +51,7 @@ resource "google_dataproc_cluster" "mycluster" {
num_instances = 2
machine_type = "n1-standard-1"
disk_config {
boot_disk_size_gb = 10
boot_disk_size_gb = 15
num_local_ssds = 1
}
}
@ -240,7 +240,7 @@ The `cluster_config.master_config` block supports:
machine_type = "n1-standard-1"
disk_config {
boot_disk_type = "pd-ssd"
boot_disk_size_gb = 10
boot_disk_size_gb = 15
num_local_ssds = 1
}
}
@ -292,7 +292,7 @@ The `cluster_config.worker_config` block supports:
machine_type = "n1-standard-1"
disk_config {
boot_disk_type = "pd-standard"
boot_disk_size_gb = 10
boot_disk_size_gb = 15
num_local_ssds = 1
}
}
@ -347,7 +347,7 @@ The `cluster_config.preemptible_worker_config` block supports:
num_instances = 1
disk_config {
boot_disk_type = "pd-standard"
boot_disk_size_gb = 10
boot_disk_size_gb = 15
num_local_ssds = 1
}
}