Enable dynamic kubelet configuration during tests

pull/6/head
Michael Taufen 2016-08-22 21:32:47 -07:00
parent 2413ec4494
commit e780bb5fbd
1 changed files with 1 additions and 0 deletions

View File

@ -373,6 +373,7 @@ func (es *e2eService) startKubeletServer() (*server, error) {
"--pod-cidr=10.180.0.0/24", // Assign a fixed CIDR to the node because there is no node controller.
"--eviction-hard", framework.TestContext.EvictionHard,
"--eviction-pressure-transition-period", "30s",
"--feature-gates", "DynamicKubeletConfig=true", // TODO(mtaufen): Eventually replace with a value from the framework.TestContext
)
if framework.TestContext.CgroupsPerQOS {
// TODO: enable this when the flag is stable and available in kubelet.