Merge pull request #121834 from vaibhav2107/eviction-update

Added Imagefs inodes in default Eviction Hard
This commit is contained in:
Kubernetes Prow Robot 2024-01-09 21:18:16 +01:00 committed by GitHub
commit ccb1d08162
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,8 +21,9 @@ package eviction
// DefaultEvictionHard includes default options for hard eviction.
var DefaultEvictionHard = map[string]string{
"memory.available": "100Mi",
"nodefs.available": "10%",
"nodefs.inodesFree": "5%",
"imagefs.available": "15%",
"memory.available": "100Mi",
"nodefs.available": "10%",
"nodefs.inodesFree": "5%",
"imagefs.available": "15%",
"imagefs.inodesFree": "5%",
}