Add run-services-mode option, and start e2e services in a separate

process.
This commit is contained in:
Random-Liu
2016-08-04 16:51:11 -07:00
parent 89651077b1
commit 3910a66bb5
6 changed files with 310 additions and 172 deletions

View File

@@ -22,12 +22,6 @@ import (
var kubeletAddress = flag.String("kubelet-address", "http://127.0.0.1:10255", "Host and port of the kubelet")
var disableKubenet = flag.Bool("disable-kubenet", false, "If true, start kubelet without kubenet")
var buildServices = flag.Bool("build-services", true, "If true, build local executables")
var startServices = flag.Bool("start-services", true, "If true, start local node services")
var stopServices = flag.Bool("stop-services", true, "If true, stop local node services after running tests")
type SharedContext struct {
NodeName string
PodConfigPath string
}