1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Update MAINTAINERS file.

This commit is contained in:
Max Neunhoeffer 2019-04-08 11:04:30 +02:00
parent 337997d428
commit 3a84fc2f66
No known key found for this signature in database
GPG key ID: 89A912AD5E343E1E

View file

@ -2,10 +2,20 @@
## Running tests
To run the entire test set, run:
To run the entire test set, first set the following environment variables:
- `DOCKERNAMESPACE` to your docker hub account
- `VERBOSE` to `1` (default is empty)
- `LONG` to `1` (default is empty, which skips lots of tests)
- `ARANGODB` to the name of a community image you want to test,
default is `arangodb/arangodb:latest`
- `ENTERPRISEIMAGE` to the name of an enterprise image, you want to
test, if not set, some tests are skipped
- `ARANGO_LICENSE_KEY` to the enterpise license key
- `KUBECONFIG` to the path to some k8s configuration with
credentials, this indicates which cluster to use
```bash
export DOCKERNAMESPACE=<your docker hub account>
make clean
make build
make run-tests
@ -16,6 +26,14 @@ make run-tests
To prepare for a release, do the following:
- Make sure all tests are OK.
- To run a complete set of tests, do the following:
Then do
~~~
make run-tests
~~~
- Update the CHANGELOG manually, since the automatic CHANGELOG
generation is switched off (did not work in many cases).