vendor updates

This commit is contained in:
Serguei Bezverkhi
2018-03-06 17:33:18 -05:00
parent 4b3ebc171b
commit e9033989a0
5854 changed files with 248382 additions and 119809 deletions

View File

@ -8,8 +8,7 @@ load(
go_binary(
name = "local",
importpath = "k8s.io/kubernetes/test/e2e_node/runner/local",
library = ":go_default_library",
embed = [":go_default_library"],
)
go_library(

View File

@ -8,8 +8,7 @@ load(
go_binary(
name = "remote",
importpath = "k8s.io/kubernetes/test/e2e_node/runner/remote",
library = ":go_default_library",
embed = [":go_default_library"],
)
go_library(

View File

@ -147,7 +147,7 @@ type GCEImage struct {
Project string `json:"project"`
Metadata string `json:"metadata"`
ImageRegex string `json:"image_regex, omitempty"`
// Defaults to using only the latest image. Acceptible values are [0, # of images that match the regex).
// Defaults to using only the latest image. Acceptable values are [0, # of images that match the regex).
// If the number of existing previous images is lesser than what is desired, the test will use that is available.
PreviousImages int `json:"previous_images, omitempty"`
@ -178,6 +178,8 @@ func main() {
switch *testSuite {
case "conformance":
suite = remote.InitConformanceRemote()
case "cadvisor":
suite = remote.InitCAdvisorE2ERemote()
// TODO: Add subcommand for node soaking, node conformance, cri validation.
case "default":
// Use node e2e suite by default if no subcommand is specified.
@ -354,6 +356,7 @@ func main() {
if !exitOk {
fmt.Printf("Failure: %d errors encountered.\n", errCount)
callGubernator(*gubernator)
arc.deleteArchive()
os.Exit(1)
}
callGubernator(*gubernator)