Skip to content

Commit 4f20aae

Browse files
elevranvMaroon
authored andcommitted
Minor fixes to enable image building matching GIE
- CONTAINER_TOOL setting commented out until can be fixed correctly (Ref kubernetes-sigs#7) - image name was missing `epp` as last element in tag Signed-off-by: Etai Lev Ran <[email protected]>
1 parent 741d518 commit 4f20aae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -396,11 +396,11 @@ SHELL := /usr/bin/env bash
396396
PROJECT_NAME ?= gateway-api-inference-extension
397397
DEV_VERSION ?= 0.0.1
398398
PROD_VERSION ?= 0.0.0
399-
IMAGE_TAG_BASE ?= quay.io/vllm-d/$(PROJECT_NAME)
399+
IMAGE_TAG_BASE ?= quay.io/vllm-d/$(PROJECT_NAME)/epp
400400
IMG = $(IMAGE_TAG_BASE):$(DEV_VERSION)
401401
NAMESPACE ?= hc4ai-operator
402402

403-
CONTAINER_TOOL := $(shell command -v docker >/dev/null 2>&1 && echo docker || command -v podman >/dev/null 2>&1 && echo podman || echo "")
403+
# CONTAINER_TOOL := $(shell command -v docker >/dev/null 2>&1 && echo docker || command -v podman >/dev/null 2>&1 && echo podman || echo "")
404404
BUILDER := $(shell command -v buildah >/dev/null 2>&1 && echo buildah || echo $(CONTAINER_TOOL))
405405
PLATFORMS ?= linux/amd64 # linux/arm64 # linux/s390x,linux/ppc64le
406406

0 commit comments

Comments
 (0)