From 83a076c2145618caf7dd22bd5286c5661191829e Mon Sep 17 00:00:00 2001 From: Victoria Martinez de la Cruz Date: Fri, 18 Jun 2021 15:17:01 +0000 Subject: [PATCH] Add CentOS8 Stream support Remove the need of using FORCE_CEPH_INSTALL=yes for CentOS8 Stream Change-Id: I76c2c3805a8f606dca69a0f12aca226680fda573 --- devstack/lib/ceph | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/devstack/lib/ceph b/devstack/lib/ceph index 815f185..5e2df71 100755 --- a/devstack/lib/ceph +++ b/devstack/lib/ceph @@ -270,11 +270,11 @@ function _undefine_virsh_secret { # check_os_support_ceph() - Check if the OS provides a decent version of Ceph function check_os_support_ceph { - if [[ ! ${DISTRO} =~ (focal|bionic|xenial|f31|f32|f33|f34) ]]; then + if [[ ! ${DISTRO} =~ (focal|bionic|xenial|f31|f32|f33|f34|rhel8) ]]; then echo "WARNING: your distro $DISTRO does not provide \ (at least) the Luminous release. \ - Please use Ubuntu Xenial, Ubuntu Bionic, Ubuntu Focal or - Fedora 31-34" + Please use Ubuntu Xenial, Ubuntu Bionic, Ubuntu Focal, Fedora 31-34, + or CentOS Stream 8." if [[ "$FORCE_CEPH_INSTALL" != "yes" ]]; then die $LINENO "If you wish to install Ceph on this distribution \ anyway run with FORCE_CEPH_INSTALL=yes, \