Skip to content

Commit

Permalink
fix: increase default cpuRequest for askpass (#892)
Browse files Browse the repository at this point in the history
The askpass sidecar is failing regularly on autopilot due to timing out
before the request can be served. This seems to be an issue of
insufficient CPU to serve the request within the 1s timeout. The new
value seems to pass consistently from experimentation. Intermediate
values of 20m and 30m were tested but still flaky.
  • Loading branch information
sdowell authored Sep 22, 2023
1 parent 0e9216f commit af72406
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func ReconcilerContainerResourceDefaults() map[string]v1beta1.ContainerResources
},
reconcilermanager.GCENodeAskpassSidecar: {
ContainerName: reconcilermanager.GCENodeAskpassSidecar,
CPURequest: resource.MustParse("10m"),
CPURequest: resource.MustParse("50m"),
MemoryRequest: resource.MustParse("20Mi"),
},
metrics.OtelAgentName: {
Expand Down

0 comments on commit af72406

Please sign in to comment.