mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	Merge pull request #121834 from vaibhav2107/eviction-update
Added Imagefs inodes in default Eviction Hard
This commit is contained in:
		@@ -21,8 +21,9 @@ package eviction
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// DefaultEvictionHard includes default options for hard eviction.
 | 
					// DefaultEvictionHard includes default options for hard eviction.
 | 
				
			||||||
var DefaultEvictionHard = map[string]string{
 | 
					var DefaultEvictionHard = map[string]string{
 | 
				
			||||||
	"memory.available":  "100Mi",
 | 
						"memory.available":   "100Mi",
 | 
				
			||||||
	"nodefs.available":  "10%",
 | 
						"nodefs.available":   "10%",
 | 
				
			||||||
	"nodefs.inodesFree": "5%",
 | 
						"nodefs.inodesFree":  "5%",
 | 
				
			||||||
	"imagefs.available": "15%",
 | 
						"imagefs.available":  "15%",
 | 
				
			||||||
 | 
						"imagefs.inodesFree": "5%",
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user