Ceph
Ceph install Prepare the host sudo zypper in podman Install cephadm SUSE The suse’s build-in ceph is out of date, so use the curl install instead
CEPH_RELEASE=18.2.0 # replace this with the active release curl --silent --remote-name --location https://download.ceph.com/rpm-${CEPH_RELEASE}/el9/noarch/cephadm chmod +x cephadm RHEL sudo dnf install --assumeyes centos-release-ceph-reef sudo dnf install --assumeyes cephadm Bootstrap the cluster #cephadm bootstrap --mon-ip *<mon-ip>* --cluster-network *<secondary ceph network>* sudo ./cephadm bootstrap --mon-ip 10.240.1.101 --cluster-network 10.
read more