Skip to content

Commit 8e1e957

Browse files
authored
Merge pull request kubernetes#121304 from claudiubelu/e2e-increase-memory-limits
e2e: Increases the memory limit for downward API tests
2 parents 6c27f48 + 055e926 commit 8e1e957

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/e2e/common/storage/downwardapi_volume.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ var _ = SIGDescribe("Downward API volume", func() {
211211
pod := downwardAPIVolumeForContainerResources(podName, "/etc/podinfo/memory_limit")
212212

213213
e2epodoutput.TestContainerOutput(ctx, f, "downward API volume plugin", pod, 0, []string{
214-
fmt.Sprintf("67108864\n"),
214+
"134217728\n",
215215
})
216216
})
217217

@@ -340,7 +340,7 @@ func downwardAPIVolumeBaseContainers(name, filePath string) []v1.Container {
340340
},
341341
Limits: v1.ResourceList{
342342
v1.ResourceCPU: resource.MustParse("1250m"),
343-
v1.ResourceMemory: resource.MustParse("64Mi"),
343+
v1.ResourceMemory: resource.MustParse("128Mi"),
344344
},
345345
},
346346
VolumeMounts: []v1.VolumeMount{

test/e2e/common/storage/projected_downwardapi.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ var _ = SIGDescribe("Projected downwardAPI", func() {
211211
pod := downwardAPIVolumeForContainerResources(podName, "/etc/podinfo/memory_limit")
212212

213213
e2epodoutput.TestContainerOutput(ctx, f, "downward API volume plugin", pod, 0, []string{
214-
fmt.Sprintf("67108864\n"),
214+
"134217728\n",
215215
})
216216
})
217217

0 commit comments

Comments
 (0)