Merge pull request #32005 from vishh/fix-e2e-node-logs

Automatic merge from submit-queue

Increase logging level for e2e node services

Without this change, the apiserver logs are non existent for node e2e tests.
pull/6/head
Kubernetes Submit Queue 2016-09-02 15:44:11 -07:00 committed by GitHub
commit 83035a52ce
1 changed files with 1 additions and 0 deletions

View File

@ -88,6 +88,7 @@ func (e *E2EServices) Start() error {
"--manifest-path", framework.TestContext.ManifestPath, "--manifest-path", framework.TestContext.ManifestPath,
"--eviction-hard", framework.TestContext.EvictionHard, "--eviction-hard", framework.TestContext.EvictionHard,
"--logtostderr", "--logtostderr",
"--vmodule=*=4",
) )
e.services = newServer("services", startCmd, nil, nil, getHealthCheckURLs(), servicesLogFile, false) e.services = newServer("services", startCmd, nil, nil, getHealthCheckURLs(), servicesLogFile, false)
return e.services.start() return e.services.start()