Skip to content

Commit

Permalink
Configure the resources to ensure the tests run in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Joao Pereira <[email protected]>
  • Loading branch information
Danny Joyce committed Jul 18, 2019
1 parent ed145c5 commit 11256f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/execute_build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ func testCreateImage(t *testing.T, when spec.G, it spec.S) {
cacheSize := resource.MustParse("1Gi")
expectedResources := v1.ResourceRequirements{
Limits: v1.ResourceList{
v1.ResourceCPU: resource.MustParse("2"),
v1.ResourceCPU: resource.MustParse("100m"),
v1.ResourceMemory: resource.MustParse("1G"),
},
Requests: v1.ResourceList{
v1.ResourceCPU: resource.MustParse("1"),
v1.ResourceCPU: resource.MustParse("50m"),
v1.ResourceMemory: resource.MustParse("512M"),
},
}
Expand Down

0 comments on commit 11256f3

Please sign in to comment.