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 <jmulligan@redhat.com>
This commit is contained in:
John Mulligan 2023-07-31 16:32:37 -04:00 committed by mergify[bot]
parent db97336f62
commit 90d142bcb1

View File

@ -29,6 +29,9 @@ endif
ifeq ($(CEPH_VERSION),quincy)
CEPH_TAG := v17
endif
ifeq ($(CEPH_VERSION),reef)
CEPH_TAG := v18
endif
# pre-<codename> 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