mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	Merge pull request #38321 from timstclair/misc-fix
Automatic merge from submit-queue (batch tested with PRs 37325, 38313, 38141, 38321, 38333) Decrease expected lower bound for misc CPU Fixes https://github.com/kubernetes/kubernetes/issues/34990 We started enforcing expectations on the `misc` system container in https://github.com/kubernetes/kubernetes/pull/37856, but the CPU usage tends to be lower than the `kueblet` & `runtime` containers (to be expected). For simplicity, I lowered the lower bound for all system containers.
This commit is contained in:
		@@ -67,7 +67,7 @@ var _ = framework.KubeDescribe("Summary API", func() {
 | 
				
			|||||||
				"StartTime": recent(maxStartAge),
 | 
									"StartTime": recent(maxStartAge),
 | 
				
			||||||
				"CPU": ptrMatchAllFields(gstruct.Fields{
 | 
									"CPU": ptrMatchAllFields(gstruct.Fields{
 | 
				
			||||||
					"Time":                 recent(maxStatsAge),
 | 
										"Time":                 recent(maxStatsAge),
 | 
				
			||||||
					"UsageNanoCores":       bounded(100000, 2E9),
 | 
										"UsageNanoCores":       bounded(10000, 2E9),
 | 
				
			||||||
					"UsageCoreNanoSeconds": bounded(10000000, 1E15),
 | 
										"UsageCoreNanoSeconds": bounded(10000000, 1E15),
 | 
				
			||||||
				}),
 | 
									}),
 | 
				
			||||||
				"Memory": ptrMatchAllFields(gstruct.Fields{
 | 
									"Memory": ptrMatchAllFields(gstruct.Fields{
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user