-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add article about installing RDO with Ceph
Change-Id: I277d256bc44957bcbb6ba8373bf5fe514070410e
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
title: Install with Ceph | ||
category: documentation | ||
authors: jcapitao | ||
--- | ||
|
||
# Install RDO with Ceph as storage | ||
|
||
## The Ceph releases used for each RDO release | ||
|
||
| RDO Release | Ceph Release | | ||
| ------ | ----- | | ||
| Dalmatian | Reef | | ||
| Caracal | Reef | | ||
| Bobcat | Reef | | ||
| Antelope | Quincy | | ||
| Zed | Quincy | | ||
| Yoga | Pacific | | ||
|
||
## Enable EPEL repository for Ceph Reef | ||
|
||
Since the Ceph Reef release, the [CentOS Stream Storage SIG](https://sigs.centos.org/storage/) decided to pull some dependencies from the EPEL repo instead of rebuilding and providing them itself.<br> | ||
As a result, the EPEL repository needs to be enabled on the target host in order to be able to install `centos-release-ceph-reef` sucessfully.<br> | ||
However, enabling the EPEL repository with the default parameters might conflict with the RDO repository (i.e duplicate packages with different NVR). To avoid this conflict, if you plan to install RDO OpenStack and Ceph services in the same host, you must set the EPEL repository with a lower priority and include only the packages needed, see below: | ||
|
||
```` | ||
$ sudo dnf update | ||
$ sudo dnf install 'dnf-command(config-manager)' | ||
$ sudo dnf config-manager --enable crb | ||
$ sudo dnf install epel-release | ||
$ sudo dnf config-manager --disable epel-next | ||
$ sudo dnf config-manager --disable epel-cisco-openh264 | ||
$ sudo dnf config-manager --setopt epel.priority=100 --save epel | ||
$ sudo dnf config-manager --setopt epel.includepkgs="libarrow*,parquet*,python3-asyncssh,re2,python3-grpcio,grpc*,abseil*" --save epel | ||
$ sudo dnf install centos-release-ceph-reef | ||
$ sudo dnf install ceph | ||
```` | ||
Note: installing `centos-release-ceph-reef` is not needed if `centos-releae-openstack-bobcat` is already installed (i.e it's a requirement). |