summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKubernetes Prow Robot <k8s-ci-robot@users.noreply.github.com>2020-06-08 16:47:19 -0700
committerGitHub <noreply@github.com>2020-06-08 16:47:19 -0700
commit912dfd3d838692ff5b1f0b1f3824fdc86ed58bbd (patch)
tree83dcb3b2bcf023d798e8230a565177019dc25a65
parentffc3831dbdd2365e1998d7a96e024a3a5f303686 (diff)
parent777dfe5ea6705c30378d0063d59e5958d6240f30 (diff)
Merge pull request #4836 from elmiko/update-kubetest-install-doc
update kubetest installation instructions in the developer e2e testin…
-rw-r--r--contributors/devel/sig-testing/e2e-tests.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/contributors/devel/sig-testing/e2e-tests.md b/contributors/devel/sig-testing/e2e-tests.md
index 68227d30..25144d11 100644
--- a/contributors/devel/sig-testing/e2e-tests.md
+++ b/contributors/devel/sig-testing/e2e-tests.md
@@ -59,10 +59,9 @@ should also read [Writing Good e2e Tests](writing-good-e2e-tests.md)
There are a variety of ways to run e2e tests, but we aim to decrease the number
of ways to run e2e tests to a canonical way: `kubetest`.
-You can install `kubetest` as follows (If you face a download issue, please see issue [#14712](https://github.com/kubernetes/test-infra/issues/14712#issuecomment-541560441)):
-```sh
-go get -u k8s.io/test-infra/kubetest
-```
+For information on installing `kubetest`, please see the
+[installation section](https://github.com/kubernetes/test-infra/tree/master/kubetest#installation) of the
+[Kubetest project documentation](https://github.com/kubernetes/test-infra/tree/master/kubetest).
You can run an end-to-end test which will bring up a master and nodes, perform
some tests, and then tear everything down. Make sure you have followed the