I’m trying to define a maintenance window, during ...
# google-cloud
b
I’m trying to define a maintenance window, during the creation of a GKE cluster using Pulumi 2.25.2. I’ve defined the following snippet code:
Copy code
const cluster = new gcp.container.Cluster(
  "cluster",
  {
    [...]
    maintenancePolicy: {
      recurringWindow: {
        startTime: "07:00",
        endTime: "15:00",
        recurrence: "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH",
      },
    },
  },
);