Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ The node_pools variable takes the following parameters:
| local_ssd_encryption_mode | specifies the method used for encrypting the local SSDs attached to the node. Valid values are: "STANDARD_ENCRYPTION" and "EPHEMERAL_KEY_ENCRYPTION" | | Optional |
| max_run_duration | The runtime of each node in the node pool in seconds, terminated by 's'. Example: "3600s". | null | Optional |
| flex_start | Enables Flex Start provisioning model for the node pool | null | Optional |
| respect_pdb_during_node_pool_deletion | Whether to respect Pod Disruption Budgets during node pool deletion. | null | Optional |

## windows_node_pools variable

Expand Down
1 change: 1 addition & 0 deletions autogen/main/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ The node_pools variable takes the following parameters:
| local_ssd_encryption_mode | specifies the method used for encrypting the local SSDs attached to the node. Valid values are: "STANDARD_ENCRYPTION" and "EPHEMERAL_KEY_ENCRYPTION" | | Optional |
| max_run_duration | The runtime of each node in the node pool in seconds, terminated by 's'. Example: "3600s". | null | Optional |
| flex_start | Enables Flex Start provisioning model for the node pool | null | Optional |
| respect_pdb_during_node_pool_deletion | Whether to respect Pod Disruption Budgets during node pool deletion. | null | Optional |

## windows_node_pools variable

Expand Down
7 changes: 7 additions & 0 deletions autogen/main/cluster.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -1068,6 +1068,13 @@ resource "google_container_node_pool" "windows_pools" {
}
}

dynamic "node_drain_config" {
for_each = lookup(each.value, "respect_pdb_during_node_pool_deletion", null) != null ? [each.value] : []
content {
respect_pdb_during_node_pool_deletion = lookup(each.value, "respect_pdb_during_node_pool_deletion", null)
}
}

management {
auto_repair = lookup(each.value, "auto_repair", true)
auto_upgrade = lookup(each.value, "auto_upgrade", local.default_auto_upgrade)
Expand Down
12 changes: 6 additions & 6 deletions autogen/main/versions.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -24,33 +24,33 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
{% elif beta_cluster and autopilot_cluster %}
required_providers {
google = {
source = "hashicorp/google"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
{% elif autopilot_cluster %}
required_providers {
google = {
source = "hashicorp/google"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
{% else %}
required_providers {
google = {
source = "hashicorp/google"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
{% endif %}
kubernetes = {
Expand Down
14 changes: 14 additions & 0 deletions cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,13 @@ resource "google_container_node_pool" "pools" {
}
}

dynamic "node_drain_config" {
for_each = lookup(each.value, "respect_pdb_during_node_pool_deletion", null) != null ? [each.value] : []
content {
respect_pdb_during_node_pool_deletion = lookup(each.value, "respect_pdb_during_node_pool_deletion", null)
}
}

management {
auto_repair = lookup(each.value, "auto_repair", true)
auto_upgrade = lookup(each.value, "auto_upgrade", local.default_auto_upgrade)
Expand Down Expand Up @@ -1157,6 +1164,13 @@ resource "google_container_node_pool" "windows_pools" {
}
}

dynamic "node_drain_config" {
for_each = lookup(each.value, "respect_pdb_during_node_pool_deletion", null) != null ? [each.value] : []
content {
respect_pdb_during_node_pool_deletion = lookup(each.value, "respect_pdb_during_node_pool_deletion", null)
}
}

management {
auto_repair = lookup(each.value, "auto_repair", true)
auto_upgrade = lookup(each.value, "auto_upgrade", local.default_auto_upgrade)
Expand Down
2 changes: 1 addition & 1 deletion metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ spec:
- roles/editor
providerVersions:
- source: hashicorp/google
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/kubernetes
version: ">= 2.10, < 4"
- source: hashicorp/random
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-autopilot-private-cluster/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -609,9 +609,9 @@ spec:
- roles/editor
providerVersions:
- source: hashicorp/google
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/google-beta
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/kubernetes
version: ">= 2.10, < 4"
- source: hashicorp/random
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-autopilot-private-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-autopilot-public-cluster/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -583,9 +583,9 @@ spec:
- roles/editor
providerVersions:
- source: hashicorp/google
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/google-beta
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/kubernetes
version: ">= 2.10, < 4"
- source: hashicorp/random
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-autopilot-public-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
1 change: 1 addition & 0 deletions modules/beta-private-cluster-update-variant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ The node_pools variable takes the following parameters:
| local_ssd_encryption_mode | specifies the method used for encrypting the local SSDs attached to the node. Valid values are: "STANDARD_ENCRYPTION" and "EPHEMERAL_KEY_ENCRYPTION" | | Optional |
| max_run_duration | The runtime of each node in the node pool in seconds, terminated by 's'. Example: "3600s". | null | Optional |
| flex_start | Enables Flex Start provisioning model for the node pool | null | Optional |
| respect_pdb_during_node_pool_deletion | Whether to respect Pod Disruption Budgets during node pool deletion. | null | Optional |

## windows_node_pools variable

Expand Down
14 changes: 14 additions & 0 deletions modules/beta-private-cluster-update-variant/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -921,6 +921,13 @@ resource "google_container_node_pool" "pools" {
}
}

dynamic "node_drain_config" {
for_each = lookup(each.value, "respect_pdb_during_node_pool_deletion", null) != null ? [each.value] : []
content {
respect_pdb_during_node_pool_deletion = lookup(each.value, "respect_pdb_during_node_pool_deletion", null)
}
}

management {
auto_repair = lookup(each.value, "auto_repair", true)
auto_upgrade = lookup(each.value, "auto_upgrade", local.default_auto_upgrade)
Expand Down Expand Up @@ -1315,6 +1322,13 @@ resource "google_container_node_pool" "windows_pools" {
}
}

dynamic "node_drain_config" {
for_each = lookup(each.value, "respect_pdb_during_node_pool_deletion", null) != null ? [each.value] : []
content {
respect_pdb_during_node_pool_deletion = lookup(each.value, "respect_pdb_during_node_pool_deletion", null)
}
}

management {
auto_repair = lookup(each.value, "auto_repair", true)
auto_upgrade = lookup(each.value, "auto_upgrade", local.default_auto_upgrade)
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-private-cluster-update-variant/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -904,9 +904,9 @@ spec:
- roles/editor
providerVersions:
- source: hashicorp/google
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/google-beta
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/kubernetes
version: ">= 2.10, < 4"
- source: hashicorp/random
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-private-cluster-update-variant/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
1 change: 1 addition & 0 deletions modules/beta-private-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,7 @@ The node_pools variable takes the following parameters:
| local_ssd_encryption_mode | specifies the method used for encrypting the local SSDs attached to the node. Valid values are: "STANDARD_ENCRYPTION" and "EPHEMERAL_KEY_ENCRYPTION" | | Optional |
| max_run_duration | The runtime of each node in the node pool in seconds, terminated by 's'. Example: "3600s". | null | Optional |
| flex_start | Enables Flex Start provisioning model for the node pool | null | Optional |
| respect_pdb_during_node_pool_deletion | Whether to respect Pod Disruption Budgets during node pool deletion. | null | Optional |

## windows_node_pools variable

Expand Down
14 changes: 14 additions & 0 deletions modules/beta-private-cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -835,6 +835,13 @@ resource "google_container_node_pool" "pools" {
}
}

dynamic "node_drain_config" {
for_each = lookup(each.value, "respect_pdb_during_node_pool_deletion", null) != null ? [each.value] : []
content {
respect_pdb_during_node_pool_deletion = lookup(each.value, "respect_pdb_during_node_pool_deletion", null)
}
}

management {
auto_repair = lookup(each.value, "auto_repair", true)
auto_upgrade = lookup(each.value, "auto_upgrade", local.default_auto_upgrade)
Expand Down Expand Up @@ -1228,6 +1235,13 @@ resource "google_container_node_pool" "windows_pools" {
}
}

dynamic "node_drain_config" {
for_each = lookup(each.value, "respect_pdb_during_node_pool_deletion", null) != null ? [each.value] : []
content {
respect_pdb_during_node_pool_deletion = lookup(each.value, "respect_pdb_during_node_pool_deletion", null)
}
}

management {
auto_repair = lookup(each.value, "auto_repair", true)
auto_upgrade = lookup(each.value, "auto_upgrade", local.default_auto_upgrade)
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-private-cluster/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -904,9 +904,9 @@ spec:
- roles/editor
providerVersions:
- source: hashicorp/google
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/google-beta
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/kubernetes
version: ">= 2.10, < 4"
- source: hashicorp/random
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-private-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
1 change: 1 addition & 0 deletions modules/beta-public-cluster-update-variant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,7 @@ The node_pools variable takes the following parameters:
| local_ssd_encryption_mode | specifies the method used for encrypting the local SSDs attached to the node. Valid values are: "STANDARD_ENCRYPTION" and "EPHEMERAL_KEY_ENCRYPTION" | | Optional |
| max_run_duration | The runtime of each node in the node pool in seconds, terminated by 's'. Example: "3600s". | null | Optional |
| flex_start | Enables Flex Start provisioning model for the node pool | null | Optional |
| respect_pdb_during_node_pool_deletion | Whether to respect Pod Disruption Budgets during node pool deletion. | null | Optional |

## windows_node_pools variable

Expand Down
14 changes: 14 additions & 0 deletions modules/beta-public-cluster-update-variant/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,13 @@ resource "google_container_node_pool" "pools" {
}
}

dynamic "node_drain_config" {
for_each = lookup(each.value, "respect_pdb_during_node_pool_deletion", null) != null ? [each.value] : []
content {
respect_pdb_during_node_pool_deletion = lookup(each.value, "respect_pdb_during_node_pool_deletion", null)
}
}

management {
auto_repair = lookup(each.value, "auto_repair", true)
auto_upgrade = lookup(each.value, "auto_upgrade", local.default_auto_upgrade)
Expand Down Expand Up @@ -1293,6 +1300,13 @@ resource "google_container_node_pool" "windows_pools" {
}
}

dynamic "node_drain_config" {
for_each = lookup(each.value, "respect_pdb_during_node_pool_deletion", null) != null ? [each.value] : []
content {
respect_pdb_during_node_pool_deletion = lookup(each.value, "respect_pdb_during_node_pool_deletion", null)
}
}

management {
auto_repair = lookup(each.value, "auto_repair", true)
auto_upgrade = lookup(each.value, "auto_upgrade", local.default_auto_upgrade)
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-public-cluster-update-variant/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -878,9 +878,9 @@ spec:
- roles/editor
providerVersions:
- source: hashicorp/google
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/google-beta
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/kubernetes
version: ">= 2.10, < 4"
- source: hashicorp/random
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-public-cluster-update-variant/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 7.10.0, < 8"
version = ">= 7.17.0, < 8"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
1 change: 1 addition & 0 deletions modules/beta-public-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,7 @@ The node_pools variable takes the following parameters:
| local_ssd_encryption_mode | specifies the method used for encrypting the local SSDs attached to the node. Valid values are: "STANDARD_ENCRYPTION" and "EPHEMERAL_KEY_ENCRYPTION" | | Optional |
| max_run_duration | The runtime of each node in the node pool in seconds, terminated by 's'. Example: "3600s". | null | Optional |
| flex_start | Enables Flex Start provisioning model for the node pool | null | Optional |
| respect_pdb_during_node_pool_deletion | Whether to respect Pod Disruption Budgets during node pool deletion. | null | Optional |

## windows_node_pools variable

Expand Down
14 changes: 14 additions & 0 deletions modules/beta-public-cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,13 @@ resource "google_container_node_pool" "pools" {
}
}

dynamic "node_drain_config" {
for_each = lookup(each.value, "respect_pdb_during_node_pool_deletion", null) != null ? [each.value] : []
content {
respect_pdb_during_node_pool_deletion = lookup(each.value, "respect_pdb_during_node_pool_deletion", null)
}
}

management {
auto_repair = lookup(each.value, "auto_repair", true)
auto_upgrade = lookup(each.value, "auto_upgrade", local.default_auto_upgrade)
Expand Down Expand Up @@ -1206,6 +1213,13 @@ resource "google_container_node_pool" "windows_pools" {
}
}

dynamic "node_drain_config" {
for_each = lookup(each.value, "respect_pdb_during_node_pool_deletion", null) != null ? [each.value] : []
content {
respect_pdb_during_node_pool_deletion = lookup(each.value, "respect_pdb_during_node_pool_deletion", null)
}
}

management {
auto_repair = lookup(each.value, "auto_repair", true)
auto_upgrade = lookup(each.value, "auto_upgrade", local.default_auto_upgrade)
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-public-cluster/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -878,9 +878,9 @@ spec:
- roles/editor
providerVersions:
- source: hashicorp/google
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/google-beta
version: ">= 7.10.0, < 8"
version: ">= 7.17.0, < 8"
- source: hashicorp/kubernetes
version: ">= 2.10, < 4"
- source: hashicorp/random
Expand Down
Loading