Follow these steps to update CentOS 8 repositories to functional versions:
Backup the existing configuration files:
sudo cp /etc/yum.repos.d/CentOS-* /tmp/
Delete the old repository files:
sudo rm -f /etc/yum.repos.d/CentOS-*
Create a new configuration file for the AppStream repository:
sudo vi /etc/yum.repos.d/CentOS-Stream-AppStream.repo
Add the following content:
[appstream] name=CentOS Stream $releasever - AppStream baseurl=http://vault.centos.org/centos/8-stream/AppStream/$basearch/os/ gpgcheck=0 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial
Create a file for BaseOS:
sudo vi /etc/yum.repos.d/CentOS-Stream-BaseOS.repo
Add the following content:
[baseos] name=CentOS Stream $releasever - BaseOS baseurl=http://vault.centos.org/centos/8-stream/BaseOS/$basearch/os/ gpgcheck=0 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial
Clean the yum cache and regenerate it:
sudo dnf clean all sudo dnf makecache
Now you can try to update the system:
sudo dnf update