Skip to content

Commit d172dc0

Browse files
shaneuttvMaroon
authored andcommitted
fix: broken vars in makefile target
Signed-off-by: Shane Utt <shaneutt@linux.com>
1 parent b839675 commit d172dc0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

+6-6
Original file line numberDiff line numberDiff line change
@@ -764,15 +764,15 @@ environment.dev.kubernetes: check-kubectl check-kustomize check-envsubst
764764
ifndef NAMESPACE
765765
$(error "Error: NAMESPACE is required but not set)
766766
endif
767-
export NAMESPACE=${NAMESPACE}
767+
export NAMESPACE=$(NAMESPACE)
768768
ifndef REGISTRY_SECRET
769769
$(error "Error: REGISTRY_SECRET is required but not set)
770770
endif
771-
export REGISTRY_SECRET=${REGISTRY_SECRET}
772-
export VLLM_SIM_IMAGE=${VLLM_SIM_IMAGE}
773-
export VLLM_SIM_TAG=${VLLM_SIM_TAG}
774-
export EPP_IMAGE=${EPP_IMAGE}
775-
export EPP_TAG=${EPP_TAG}
771+
export REGISTRY_SECRET=$(REGISTRY_SECRET)
772+
export VLLM_SIM_IMAGE=$(VLLM_SIM_IMAGE)
773+
export VLLM_SIM_TAG=$(VLLM_SIM_TAG)
774+
export EPP_IMAGE=$(EPP_IMAGE)
775+
export EPP_TAG=$(EPP_TAG)
776776
@echo "INFO: Creating namespace (if needed) and setting context to $(NAMESPACE)..."
777777
kubectl create namespace $(NAMESPACE) 2>/dev/null || true
778778
kubectl config set-context --current --namespace=$(NAMESPACE)

0 commit comments

Comments
 (0)