Skip to content

Commit

Permalink
[examples/gcp-*] BGD-3479 set disk type to pd-ssd by default in gcp e…
Browse files Browse the repository at this point in the history
…xamples
  • Loading branch information
Z4ck404 committed Jul 12, 2023
1 parent fa331f6 commit a1d53c1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/gcp-from-scratch/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ resource "spotinst_ocean_gke_import" "ocean" {
controller_cluster_id = var.cluster_name
location = var.region

root_volume_type = "pd-ssd"

scheduled_task {
shutdown_hours {
is_enabled = var.enable_shutdown_hours
Expand Down
2 changes: 2 additions & 0 deletions examples/gcp-from-vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ resource "spotinst_ocean_gke_import" "ocean" {
controller_cluster_id = var.cluster_name
location = var.region

root_volume_type = "pd-ssd"

scheduled_task {
shutdown_hours {
is_enabled = var.enable_shutdown_hours
Expand Down
2 changes: 2 additions & 0 deletions examples/gcp-import-gke-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ resource "spotinst_ocean_gke_import" "ocean" {
controller_cluster_id = var.cluster_name
location = var.location

root_volume_type = "pd-ssd"

scheduled_task {
shutdown_hours {
is_enabled = var.enable_shutdown_hours
Expand Down

0 comments on commit a1d53c1

Please sign in to comment.