mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	e2e_node: fix node-kubelet-benchmark test
e2e_node tests trigger OOM events on COS versions > 73-11636-0-0 possibly because of this change in the COS v.73-11636-0-0: Made containerd run as a standalone systemd service OOM killer usually kills cadvisor and e2e_node.test processes causing node-kubelet-benchmark failures. Decreasing amount of pods from 105 to 90 frees enough memory for the test to succeed.
This commit is contained in:
		@@ -126,7 +126,7 @@ var _ = framework.KubeDescribe("Density [Serial] [Slow]", func() {
 | 
			
		||||
				interval: 0 * time.Millisecond,
 | 
			
		||||
			},
 | 
			
		||||
			{
 | 
			
		||||
				podsNr:   105,
 | 
			
		||||
				podsNr:   90,
 | 
			
		||||
				interval: 0 * time.Millisecond,
 | 
			
		||||
			},
 | 
			
		||||
			{
 | 
			
		||||
@@ -138,7 +138,7 @@ var _ = framework.KubeDescribe("Density [Serial] [Slow]", func() {
 | 
			
		||||
				interval: 100 * time.Millisecond,
 | 
			
		||||
			},
 | 
			
		||||
			{
 | 
			
		||||
				podsNr:   105,
 | 
			
		||||
				podsNr:   90,
 | 
			
		||||
				interval: 100 * time.Millisecond,
 | 
			
		||||
			},
 | 
			
		||||
			{
 | 
			
		||||
@@ -150,7 +150,7 @@ var _ = framework.KubeDescribe("Density [Serial] [Slow]", func() {
 | 
			
		||||
				interval: 300 * time.Millisecond,
 | 
			
		||||
			},
 | 
			
		||||
			{
 | 
			
		||||
				podsNr:   105,
 | 
			
		||||
				podsNr:   90,
 | 
			
		||||
				interval: 300 * time.Millisecond,
 | 
			
		||||
			},
 | 
			
		||||
		}
 | 
			
		||||
@@ -176,17 +176,17 @@ var _ = framework.KubeDescribe("Density [Serial] [Slow]", func() {
 | 
			
		||||
	ginkgo.Context("create a batch of pods with higher API QPS", func() {
 | 
			
		||||
		dTests := []densityTest{
 | 
			
		||||
			{
 | 
			
		||||
				podsNr:      105,
 | 
			
		||||
				podsNr:      90,
 | 
			
		||||
				interval:    0 * time.Millisecond,
 | 
			
		||||
				APIQPSLimit: 60,
 | 
			
		||||
			},
 | 
			
		||||
			{
 | 
			
		||||
				podsNr:      105,
 | 
			
		||||
				podsNr:      90,
 | 
			
		||||
				interval:    100 * time.Millisecond,
 | 
			
		||||
				APIQPSLimit: 60,
 | 
			
		||||
			},
 | 
			
		||||
			{
 | 
			
		||||
				podsNr:      105,
 | 
			
		||||
				podsNr:      90,
 | 
			
		||||
				interval:    300 * time.Millisecond,
 | 
			
		||||
				APIQPSLimit: 60,
 | 
			
		||||
			},
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user