From 7aacc3862a66a72f922b612ded503578a121908d Mon Sep 17 00:00:00 2001 From: Dimitri Koshkin Date: Thu, 3 Jan 2019 17:02:52 -0500 Subject: [PATCH] Update README with more detail to run E2E --- docs/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/README.md b/docs/README.md index 13f68ebb15..f335665322 100644 --- a/docs/README.md +++ b/docs/README.md @@ -129,7 +129,17 @@ make test-integration ``` To execute e2e tests, run: + +Some tests marked with `[env]` require specific environmental variables to be set, if not set these tests will be skipped. + +``` +export ALLOWED_TOPOLOGIES_ZONES="us-west-2a,us-west-2b" +``` + +Replacing `us-west-2a,us-west-2b` with the AZ(s) where your Kubernetes cluster is located. + ``` +export KUBECONFIG=~/.kube/config make test-e2e ```