File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ K8S_CLUSTER_NAME ?= local ## The name used when creating/using a Kin
21
21
K8S_CLUSTER_VERSION ?= $(shell grep -m1 'FROM kindest/node' < ${DOCKERFILEPATH} | cut -d ':' -f 2 | sed -e 's/^v//' | cut -d '@' -f 1) # # The version used when creating a Kind Kubernetes cluster
22
22
K8S_TIMEOUT ?= 75s # # The timeout used when creating a Kind Kubernetes cluster
23
23
AD_SECRET ?=
24
+ PLUS_JWT ?=
24
25
PYTEST_ARGS ?=
25
26
ifeq (${REGISTRY},)
26
27
BUILD_IMAGE := $(strip $(PREFIX ) ) :$(strip $(TAG ) )
@@ -72,6 +73,7 @@ run-tests-in-kind: ## Run tests in Kind
72
73
--service=nodeport \
73
74
--node-ip=$(strip $(K8S_CLUSTER_NAME))-control-plane \
74
75
--show-ic-logs=$(SHOW_IC_LOGS) \
76
+ --plus-jwt=$(PLUS_JWT) \
75
77
$(PYTEST_ARGS)
76
78
77
79
@@ -114,6 +116,7 @@ run-tests-in-minikube: ## Run tests in Minikube
114
116
--service=nodeport \
115
117
--node-ip=minikube \
116
118
--show-ic-logs=$(SHOW_IC_LOGS) \
119
+ --plus-jwt=$(PLUS_JWT) \
117
120
$(PYTEST_ARGS)
118
121
119
122
You can’t perform that action at this time.
0 commit comments