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:
parent
337997d428
commit
3a84fc2f66
1 changed files with 20 additions and 2 deletions
|
@ -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).
|
||||
|
||||
|
|
Loading…
Reference in a new issue