Skip to content
Merged
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
17 changes: 13 additions & 4 deletions gke/standard/zonal/no-channel-to-release-channel/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ resource "google_container_cluster" "no_upgrade" {
}
maintenance_exclusion {
exclusion_name = "no_upgrades_exclusion"
start_time = "2025-02-11T23:16:39Z"
# NOTE: Pick an interval for your exclusion with an end_time in the future
# otherwise the exclusion will have no effect.
# This example assumes that the exclusion is set on 2025-02-11.
start_time = "2025-02-11T23:16:39Z"
# NO_UPGRADES exclusions are limited to 30 days.
end_time = "2025-03-11T23:16:39Z"
exclusion_options {
Expand Down Expand Up @@ -112,8 +115,11 @@ resource "google_container_cluster" "rc_regular" {
}
maintenance_exclusion {
exclusion_name = "no_upgrades_exclusion"
start_time = "2025-02-11T23:16:39Z"
end_time = "2025-03-11T23:16:39Z"
# NOTE: Pick an interval for your exclusion with an end_time in the future
# otherwise the exclusion will have no effect.
# This example assumes that the exclusion is set on 2025-02-11.
start_time = "2025-02-11T23:16:39Z"
end_time = "2025-03-11T23:16:39Z"
exclusion_options {
scope = "NO_UPGRADES"
}
Expand Down Expand Up @@ -160,7 +166,10 @@ resource "google_container_cluster" "no_minor_or_node_upgrade" {
}
maintenance_exclusion {
exclusion_name = "no_minor_or_node_upgrades_exclusion"
start_time = "2025-02-11T23:16:39Z"
# NOTE: Pick an interval for your exclusion with an end_time in the future
# otherwise the exclusion will have no effect.
# This example assumes that the exclusion is set on 2025-02-11.
start_time = "2025-02-11T23:16:39Z"
# This the end of standard support for 1.31.
end_time = "2025-12-22T00:00:00Z"
exclusion_options {
Expand Down