Skip to content

Commit

Permalink
TestFleet* bump memory a bit to hopefully avoid test failures (#8021)
Browse files Browse the repository at this point in the history
  • Loading branch information
pebrc authored Aug 22, 2024
1 parent e9c6a25 commit b58c101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/test/agent/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@ func (b Builder) MoreResourcesForIssue4730() Builder {
return b.WithResources(
corev1.ResourceRequirements{
Limits: map[corev1.ResourceName]resource.Quantity{
corev1.ResourceMemory: resource.MustParse("512Mi"),
corev1.ResourceMemory: resource.MustParse("640Mi"),
corev1.ResourceCPU: resource.MustParse("200m"),
},
Requests: map[corev1.ResourceName]resource.Quantity{
corev1.ResourceMemory: resource.MustParse("512Mi"),
corev1.ResourceMemory: resource.MustParse("640Mi"),
corev1.ResourceCPU: resource.MustParse("200m"),
},
},
Expand Down

0 comments on commit b58c101

Please sign in to comment.