File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ endif
310310 kubectl apply -f $(MANIFESTPATHDEPLOYMENTREPLICATION)
311311 kubectl apply -f $(MANIFESTPATHTEST)
312312 $(ROOTDIR)/scripts/kube_create_storage.sh $(DEPLOYMENTNAMESPACE)
313- $(ROOTDIR)/scripts/kube_create_license_key_secret.sh "$(DEPLOYMENTNAMESPACE)"
313+ $(ROOTDIR)/scripts/kube_create_license_key_secret.sh "$(DEPLOYMENTNAMESPACE)" "$(ENTERPRISELICENSE)"
314314 $(ROOTDIR)/scripts/kube_run_tests.sh $(DEPLOYMENTNAMESPACE) $(TESTIMAGE) "$(ARANGODIMAGE)" "$(ENTERPRISEIMAGE)" $(TESTTIMEOUT) $(TESTLENGTHOPTIONS)
315315
316316$(DURATIONTESTBIN ) : $(GOBUILDDIR ) $(SOURCES )
Original file line number Diff line number Diff line change 11#! /bin/sh
22
3- if [ -z $ENTERPRISELICENSE ]; then
3+ if [ -z $2 ]; then
4+ echo " No enterprise license set"
45 exit 0
56fi
67
7- LICENSE=$( echo " ${ENTERPRISELICENSE } " | base64 )
8+ LICENSE=$( echo " ${2 } " | base64 )
89NS=$1
910
1011if [ -z $NS ]; then
You can’t perform that action at this time.
0 commit comments