added eviction minimum reclaim flags to test flags, and changed gce default config for eviction-hard to match what tests are using

This commit is contained in:
David Ashpole
2016-11-18 08:48:40 -08:00
parent 15bbd11bbf
commit 10f73bde27
3 changed files with 3 additions and 2 deletions

View File

@@ -123,6 +123,7 @@ func (e *E2EServices) startKubelet() (*server, error) {
// by kubelet-flags.
"--feature-gates", framework.TestContext.FeatureGates,
"--eviction-hard", "memory.available<250Mi,nodefs.available<10%,nodefs.inodesFree<5%", // The hard eviction thresholds.
"--eviction-minimum-reclaim", "nodefs.available=5%,nodefs.inodesFree=5%", // The minimum reclaimed resources after eviction.
"--v", LOG_VERBOSITY_LEVEL, "--logtostderr",
)
// Enable kubenet by default.