From bd4168ee1d30a9b1367e31b824cabaeb217677c7 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 | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/README.md b/docs/README.md index 13f68ebb15..7f0f256f8d 100644 --- a/docs/README.md +++ b/docs/README.md @@ -129,7 +129,20 @@ 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 PRE_PROVISIONED_RW_VOLUME_IDS="vol-..1=1Gi" +export PRE_PROVISIONED_READ_ONLY_VOLUME_IDS="vol-..2=1Gi" +export PRE_PROVISIONED_RECLAIM_POLICY_VOLUME_IDS="vol-..3=1Gi" +export ALLOWED_TOPOLOGIES_ZONES="us-west-2a" +``` + +Replacing `vol-..#` with valid Volume IDs and `us-west-2a` with the Availability Zone(s) where the test cluster is running. + ``` +export KUBECONFIG=~/.kube/config make test-e2e ```