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

Fixed Maintainers.md. Pass parameter properly. (#427)

This commit is contained in:
Lars Maier 2019-07-30 17:21:23 +02:00 committed by Max Neunhöffer
parent d1b2879b76
commit b192e7b0a4
3 changed files with 3 additions and 2 deletions

View file

@ -11,7 +11,7 @@ To run the entire test set, first set the following environment variables:
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
- `ENTERPRISELICENSE` to the enterpise license key
- `KUBECONFIG` to the path to some k8s configuration with
credentials, this indicates which cluster to use

View file

@ -270,7 +270,7 @@ endif
kubectl apply -f $(MANIFESTPATHTEST)
$(ROOTDIR)/scripts/kube_create_storage.sh $(DEPLOYMENTNAMESPACE)
$(ROOTDIR)/scripts/kube_create_license_key_secret.sh "$(DEPLOYMENTNAMESPACE)" '$(ENTERPRISELICENSE)'
$(ROOTDIR)/scripts/kube_run_tests.sh $(DEPLOYMENTNAMESPACE) $(TESTIMAGE) "$(ARANGODIMAGE)" '$(ENTERPRISEIMAGE)' $(TESTTIMEOUT) $(TESTLENGTHOPTIONS) $(TESTOPTIONS)
$(ROOTDIR)/scripts/kube_run_tests.sh $(DEPLOYMENTNAMESPACE) $(TESTIMAGE) "$(ARANGODIMAGE)" '$(ENTERPRISEIMAGE)' '$(TESTTIMEOUT)' '$(TESTLENGTHOPTIONS)' '$(TESTOPTIONS)'
$(DURATIONTESTBIN): $(SOURCES)
CGO_ENABLED=0 go build -installsuffix cgo -ldflags "-X main.projectVersion=$(VERSION) -X main.projectBuild=$(COMMIT)" -o $(DURATIONTESTBINNAME) $(REPOPATH)/tests/duration

View file

@ -8,6 +8,7 @@ ARANGODIMAGE=$3
ENTERPRISEIMAGE=$4
TESTTIMEOUT=$5
TESTLENGTHOPTIONS=$6
TESTOPTIONS=$7
IMAGEID=$(docker inspect ${TESTIMAGE} '--format={{index .RepoDigests 0}}')