diff --git a/test/k8s-integration/driver.go b/test/k8s-integration/driver.go index 72a458c48..28ac51186 100644 --- a/test/k8s-integration/driver.go +++ b/test/k8s-integration/driver.go @@ -64,7 +64,7 @@ func installDriver(goPath, pkgDir, stagingImage, stagingVersion, deployOverlayNa } // TODO (#139): wait for driver to be running - time.Sleep(10 * time.Second) + time.Sleep(time.Minute) statusCmd := exec.Command("kubectl", "describe", "pods", "-n", "default") err = runCommand("Checking driver pods", statusCmd) if err != nil { diff --git a/test/k8s-integration/main.go b/test/k8s-integration/main.go index 4c73b29c0..ad83dfd14 100644 --- a/test/k8s-integration/main.go +++ b/test/k8s-integration/main.go @@ -210,6 +210,10 @@ func handle() error { if err != nil { return fmt.Errorf("failed to build Kubernetes: %v", err) } + err = buildKubernetes(testDir, "ginkgo") + if err != nil { + return fmt.Errorf("failed to build Gingko: %v", err) + } } else { testDir = k8sDir }