- Get the deployment of a small Ceph cluster for cephadm development running again by adapting the CentOS 8 configuration.
- Do not install the non-existing/removed 'ceph' package.
Fixes: https://tracker.ceph.com/issues/55673
Signed-off-by: Volker Theile <vtheile@suse.com>
SHELL
config.vm.provision "shell", inline: <<-SHELL
+ sudo sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
+ sudo sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
sudo yum install -y yum-utils
sudo yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
sudo rpm --import 'https://download.ceph.com/keys/release.asc'
curl -L https://shaman.ceph.com/api/repos/ceph/master/latest/centos/8/repo/ | sudo tee /etc/yum.repos.d/shaman.repo
- sudo yum install -y python36 podman ceph
+ sudo yum install -y python36 podman
SHELL
end