Skip to content

Commit

Permalink
Update README with more detail to run E2E
Browse files Browse the repository at this point in the history
  • Loading branch information
dkoshkin committed Jan 7, 2019
1 parent 9c0b80b commit ef64f01
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,21 @@ 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_RETAIN_VOLUME_IDS="vol-..3=1Gi"
export PRE_PROVISIONED_RECLAIM_POLICY_DELETE_VOLUME_IDS="vol-..4=1Gi" # the EBS volume(s) will be deleted
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
```

Expand Down

0 comments on commit ef64f01

Please sign in to comment.