Adding testing-manifests to the test tar ball

This commit is contained in:
Maisem Ali
2016-02-09 14:09:26 -08:00
parent 1168df93f6
commit 4dfdb154fb
9 changed files with 5 additions and 6 deletions

View File

@@ -170,7 +170,7 @@ var _ = Describe("Kubectl client", func() {
var podPath string
BeforeEach(func() {
podPath = filepath.Join(testContext.RepoRoot, "examples/readiness-probe-pod")
podPath = filepath.Join(testContext.RepoRoot, "test", "e2e", "testing-manifests", "kubectl", "pod-with-readiness-probe.yaml")
By(fmt.Sprintf("creating the pod from %v", podPath))
runKubectlOrDie("create", "-f", podPath, fmt.Sprintf("--namespace=%v", ns))
checkPodsRunningReady(c, ns, []string{simplePodName}, podStartTimeout)