FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit d0129d71 authored by Dr Rich Wareham's avatar Dr Rich Wareham
Browse files

move cluster maintenance window

To avoid GMT/BST issues, move the maintenance window from 4-8AM UTC to
1-5AM UTC.

Google requires that the window be at least 4 hours and so this is
different from the 2-5AM specified by #11.

Take the opportunity to tidy up the recurrence specification and to
choose a rounder arbitrary date for the start time.

Closes #11
parent c1a7d54a
No related branches found
No related tags found
1 merge request!11move cluster maintenance window
Pipeline #28971 passed
......@@ -75,12 +75,12 @@ resource "google_container_cluster" "cluster" {
]
}
# Stop Google from upgrading cluster nodes during the work week
# Stop Google from upgrading cluster nodes during work hours.
maintenance_policy {
recurring_window {
recurrence = "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR,SA,SU"
end_time = "2020-01-28T08:00:00Z"
start_time = "2020-01-28T04:00:00Z"
recurrence = "FREQ=DAILY"
end_time = "2000-01-01T05:00:00Z"
start_time = "2000-01-01T01:00:00Z"
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment