From 90d142bcb1c3d01734ebe8821f719595a4b8155b Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Mon, 31 Jul 2023 16:32:37 -0400 Subject: [PATCH] makefile: add ceph reef versions Add CEPH_VERSION values for reef and pre-reef. This will allow building and testing with ceph reef images. Signed-off-by: John Mulligan --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index 413e4d0..e94f83c 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,9 @@ endif ifeq ($(CEPH_VERSION),quincy) CEPH_TAG := v17 endif +ifeq ($(CEPH_VERSION),reef) + CEPH_TAG := v18 +endif # pre- indicates we want to consume pre-release versions of ceph from # the ceph ci. This way we can start testing on ceph versions before they hit # quay.io/ceph/ceph @@ -44,6 +47,12 @@ ifeq ($(CEPH_VERSION),pre-pacific) GO_CEPH_VERSION := pacific BUILD_TAGS := pacific,ceph_pre_pacific endif +ifeq ($(CEPH_VERSION),pre-reef) + CEPH_TAG := reef + CEPH_IMG := quay.ceph.io/ceph-ci/ceph + GO_CEPH_VERSION := reef + BUILD_TAGS := reef,ceph_pre_reef +endif ifeq ($(CEPH_VERSION),main) CEPH_TAG := main CEPH_IMG := quay.ceph.io/ceph-ci/ceph