Skip to content

Commit b192e7b

Browse files
Lars Maierneunhoef
authored andcommitted
Fixed Maintainers.md. Pass parameter properly. (#427)
1 parent d1b2879 commit b192e7b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

MAINTAINERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To run the entire test set, first set the following environment variables:
1111
default is `arangodb/arangodb:latest`
1212
- `ENTERPRISEIMAGE` to the name of an enterprise image, you want to
1313
test, if not set, some tests are skipped
14-
- `ARANGO_LICENSE_KEY` to the enterpise license key
14+
- `ENTERPRISELICENSE` to the enterpise license key
1515
- `KUBECONFIG` to the path to some k8s configuration with
1616
credentials, this indicates which cluster to use
1717

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ endif
270270
kubectl apply -f $(MANIFESTPATHTEST)
271271
$(ROOTDIR)/scripts/kube_create_storage.sh $(DEPLOYMENTNAMESPACE)
272272
$(ROOTDIR)/scripts/kube_create_license_key_secret.sh "$(DEPLOYMENTNAMESPACE)" '$(ENTERPRISELICENSE)'
273-
$(ROOTDIR)/scripts/kube_run_tests.sh $(DEPLOYMENTNAMESPACE) $(TESTIMAGE) "$(ARANGODIMAGE)" '$(ENTERPRISEIMAGE)' $(TESTTIMEOUT) $(TESTLENGTHOPTIONS) $(TESTOPTIONS)
273+
$(ROOTDIR)/scripts/kube_run_tests.sh $(DEPLOYMENTNAMESPACE) $(TESTIMAGE) "$(ARANGODIMAGE)" '$(ENTERPRISEIMAGE)' '$(TESTTIMEOUT)' '$(TESTLENGTHOPTIONS)' '$(TESTOPTIONS)'
274274

275275
$(DURATIONTESTBIN): $(SOURCES)
276276
CGO_ENABLED=0 go build -installsuffix cgo -ldflags "-X main.projectVersion=$(VERSION) -X main.projectBuild=$(COMMIT)" -o $(DURATIONTESTBINNAME) $(REPOPATH)/tests/duration

scripts/kube_run_tests.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ ARANGODIMAGE=$3
88
ENTERPRISEIMAGE=$4
99
TESTTIMEOUT=$5
1010
TESTLENGTHOPTIONS=$6
11+
TESTOPTIONS=$7
1112

1213
IMAGEID=$(docker inspect ${TESTIMAGE} '--format={{index .RepoDigests 0}}')
1314

0 commit comments

Comments
 (0)