Skip to content

Commit 76fa47d

Browse files
anishasthanaFiona-Waters
authored andcommitted
Fix mcad tag reference for CRDs
Upstream is no longer publishing release branches of the form `release-vX.Y.Z` Instead, it is publishing tags of the form `vX.Y.Z`, this commit makes it so Signed-off-by: Anish Asthana <[email protected]>
1 parent 50252a6 commit 76fa47d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ MCAD_VERSION ?= v1.32.0
1919
# MCAD_REF, MCAD_REPO and MCAD_CRD define the reference to MCAD CRD resources
2020
MCAD_REF ?= release-${MCAD_VERSION}
2121
MCAD_REPO ?= github.com/project-codeflare/multi-cluster-app-dispatcher
22-
MCAD_CRD ?= ${MCAD_REPO}/config/crd?ref=${MCAD_REF}
22+
# Upstream MCAD is currently only creating release tags of the form `vX.Y.Z` (i.e the version)
23+
# The image is still published using the MCAD_REF format (i.e release-vX.Y.Z)
24+
MCAD_CRD ?= ${MCAD_REPO}/config/crd?ref=${MCAD_VERSION}
2325

2426
# KUBERAY_VERSION defines the default version of the KubeRay operator (used for testing)
2527
KUBERAY_VERSION ?= v0.5.0

0 commit comments

Comments
 (0)