File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,9 @@ PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
38
38
# The path to the E2E manifest file. It can be overridden by setting the
39
39
# E2E_MANIFEST_PATH environment variable. Note that HF_TOKEN must be set when using the GPU-based manifest.
40
40
E2E_MANIFEST_PATH ?= config/manifests/vllm/sim-deployment.yaml
41
+ # E2E_IMAGE specifies the image to be used when running e2e tests using make test-e2e.
42
+ # it defaults to current image tag, but can be overwritten to test specific tags, releases, etc.
43
+ E2E_IMAGE ?= $(IMAGE_TAG )
41
44
# E2E_USE_KIND is a flag used in test-e2e target. when set to true it will load the e2e image into the kind cluster.
42
45
# it is possible though to run e2e tests against clusters other than kind. in such a case, it is the user's responsibility to load
43
46
# the image into the cluster.
@@ -142,7 +145,7 @@ test-integration: ## Run integration tests.
142
145
143
146
.PHONY : test-e2e
144
147
test-e2e : # # Run end-to-end tests against an existing Kubernetes cluster.
145
- MANIFEST_PATH=$(PROJECT_DIR ) /$(E2E_MANIFEST_PATH ) E2E_IMAGE=$(IMAGE_TAG ) USE_KIND=$(E2E_USE_KIND ) ./hack/test-e2e.sh
148
+ MANIFEST_PATH=$(PROJECT_DIR ) /$(E2E_MANIFEST_PATH ) E2E_IMAGE=$(E2E_IMAGE ) USE_KIND=$(E2E_USE_KIND ) ./hack/test-e2e.sh
146
149
147
150
.PHONY : lint
148
151
lint : golangci-lint # # Run golangci-lint linter
You can’t perform that action at this time.
0 commit comments