Skip to content

Commit ebd84a5

Browse files
committed
Tuned npb is workload resources
Lowering the amount of cpu allocated to this workload will set the resources allocated to be similar to the other npb and tf workload in this tests. This will also allow to run all three workloads in a n1-standard-12 gcp instance - which has 16 cpus and 60 GB. Signed-off-by: alejandrox1 <[email protected]>
1 parent 60559bc commit ebd84a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e_node/perf/workloads/npb_is.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ func (w npbISWorkload) PodSpec() v1.PodSpec {
4444
Image: "gcr.io/kubernetes-e2e-test-images/node-perf/npb-is:1.0",
4545
Resources: v1.ResourceRequirements{
4646
Requests: v1.ResourceList{
47-
v1.ResourceName(v1.ResourceCPU): resource.MustParse("16000m"),
47+
v1.ResourceName(v1.ResourceCPU): resource.MustParse("15000m"),
4848
v1.ResourceName(v1.ResourceMemory): resource.MustParse("48Gi"),
4949
},
5050
Limits: v1.ResourceList{
51-
v1.ResourceName(v1.ResourceCPU): resource.MustParse("16000m"),
51+
v1.ResourceName(v1.ResourceCPU): resource.MustParse("15000m"),
5252
v1.ResourceName(v1.ResourceMemory): resource.MustParse("48Gi"),
5353
},
5454
},

0 commit comments

Comments
 (0)