oVirt is a project that aims to provide a distributed / clustered virtualization solution for a huge scale. If for some reason you don't want to use the ovirt-node images provided by ovirt.org, you can install any EL8 (or EL9 for that matter) host to be a hypervisor and add them to the cluster as needed. In order to have it working as expected, there are a few things that have to be taken care of. First, add some repositories to the host: [root@ovirtnode01 ~]# cat >/etc/yum.repos.d/CentOS-Stream-Extras.repo <<'EOF' [cs8-extras] name=CentOS Stream $releasever - Extras mirrorlist=http://mirrorlist.centos.org/?release=8-stream&arch=$basearch&repo=extras&infra=$infra #baseurl=http://mirror.centos.org/$contentdir/8-stream/extras/$basearch/os/ gpgcheck=1 enabled=1 gpgkey=https://www.centos.org/keys/RPM-GPG-KEY-CentOS-Official EOF [root@ovirtnode01 ~]# cat >/etc/yum.repos.d/CentOS-Stream-Extras-common.repo <<'EOF' ...