Skip to content
Open
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
6 changes: 6 additions & 0 deletions gcp/byo-project/cloud_run.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,12 @@ module "fleet-service" {

resources = {
limits = local.fleet_resources_limits
# CPU must remain allocated outside of request processing so Fleet's
# background cron goroutines (e.g. apple_mdm_dep_profile_assigner) can
# run reliably. Without this, the throttled CPU between requests
# cancels in-flight cron work mid-tick, which can silently drop DEP
# device events. See fleetdm/fleet-terraform#242 and fleetdm/fleet#46235.
cpu_idle = false
}

env_vars = local.fleet_env_vars
Expand Down
Loading