Skip to content

Commit 00b7c83

Browse files
committed
chore: add default namespace to makefile
This is the namespace we'll use for tekton deploys to test deploy the kubernetes dev environment. Signed-off-by: Shane Utt <[email protected]>
1 parent dfdcc0b commit 00b7c83

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

+4-2
Original file line numberDiff line numberDiff line change
@@ -645,9 +645,11 @@ check-alias: check-container-tool
645645
echo "✅ Alias is likely to work: alias $(PROJECT_NAME)='$(CONTAINER_TOOL) exec -it $(PROJECT_NAME)-container /app/$(PROJECT_NAME)'"; \
646646
fi
647647

648+
# This is being used for tekton builds in the CI/CD pipeline, to provide a
649+
# default namespace to do a test deployment of the Kubernetes dev environment.
648650
.PHONY: print-namespace
649-
print-namespace: ## Print the current namespace
650-
@echo "$(NAMESPACE)"
651+
print-namespace:
652+
@echo "inference-router"
651653

652654
.PHONY: print-project-name
653655
print-project-name: ## Print the current project name

0 commit comments

Comments
 (0)