Skip to content

Commit

Permalink
Externalize KF_TAG variable to dedicated file outside of the makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
atheo89 committed Nov 18, 2024
1 parent dfe9aaf commit d0f6d50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/odh-notebook-controller/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@

include makefile-vars.mk

# Image URL to use all building/pushing image targets
IMG ?= quay.io/opendatahub/odh-notebook-controller
TAG ?= $(shell git describe --tags --always)

KF_IMG ?= quay.io/opendatahub/kubeflow-notebook-controller
KF_TAG ?= main-363bcdb
KF_TAG ?= $(KF_TAG)

CONTAINER_ENGINE ?= podman

Expand Down
1 change: 1 addition & 0 deletions components/odh-notebook-controller/makefile-vars.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
KF_TAG ?= main-363bcdb

0 comments on commit d0f6d50

Please sign in to comment.