From 7b209845d508c0876d917a9db03157abebd627af Mon Sep 17 00:00:00 2001 From: Goutham Pacha Ravi Date: Mon, 23 Oct 2023 12:26:01 -0700 Subject: [PATCH] Update default ceph image tag to remove patch version Ceph release tags adhere to a versioning scheme x.y.z [1], where: - x = major release number (e.g.: quincy is 17, reef is 18) - y = 1 or 2, where 1 is an release candidate, and 2 is a stable release - z = patch/updates We shouldn't hardcode a patch version in the default container image we're fetching in our jobs, unless absolutely necessary for some bugfix/feature that we rely on. [1] https://docs.ceph.com/en/latest/releases/general/ Related-Bug: #1989273 Change-Id: Iea541d2edefc871bcac2d965997c88462fcbe521 Signed-off-by: Goutham Pacha Ravi --- devstack/lib/cephadm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack/lib/cephadm b/devstack/lib/cephadm index d6d44f44..960d8c5d 100755 --- a/devstack/lib/cephadm +++ b/devstack/lib/cephadm @@ -29,7 +29,7 @@ DISABLE_CEPHADM_POST_DEPLOY=${DISABLE_CEPHADM_POST_DEPLOY:-False} # DEFAULT OPTIONS ATTEMPTS=30 -CONTAINER_IMAGE=${CONTAINER_IMAGE:-'quay.io/ceph/ceph:v17.2.3'} +CONTAINER_IMAGE=${CONTAINER_IMAGE:-'quay.io/ceph/ceph:v17.2'} DEVICES=() if [[ "$REMOTE_CEPH" = "False" ]]; then FSID=$(uuidgen)