Thanks for the heads up! I just set it up using the latest amd_64 template (20191013) and everything seems to be working!
TASK ERROR: unable to create CT unsupported centos release
sed -i 's/ < 8) {/ < 9) {/' /usr/share/perl5/PVE/LXC/Setup/CentOS.pm
systemctl restart pveproxy pvedaemon
if you're getting an error while creating a new container similar to this:
Code:TASK ERROR: unable to create CT unsupported centos release
you probably need to perform a little change on this file: /usr/share/perl5/PVE/LXC/Setup/CentOS.pm
something like this should be enough:
Code:sed -i 's/ < 8) {/ < 9) {/' /usr/share/perl5/PVE/LXC/Setup/CentOS.pm
and then restart related services:
Code:systemctl restart pveproxy pvedaemon
by the way, I've tested this one: https://uk.images.linuxcontainers.org/images/centos/8/amd64/cloud/20191015_07:08/rootfs.tar.xz
and everything seems fine by now. I'll try to report back if I found any issues.
What version of proxmox? what is the minimal version required to support?i just tried with the template you provided, had no issues.
I had met this question too. I download official centos 8 template, it told me that TASK ERROR: unable to create CT 104 - unsupported centos release 'CentOS Linux release 8.0.1905 (Core) 'this shouldn't be necessary. the release number of the template is still 8. (8.0.1905 but we only capture the first digit here for checking)
i just tried with the template you provided, had no issues.
What version of proxmox? what is the minimal version required to support?
see my answer, you need pve-container >= 3.0-7 for it to work.I had met this question too. I download official centos 8 template, it told me that TASK ERROR: unable to create CT 104 - unsupported centos release 'CentOS Linux release 8.0.1905 (Core) '
How can I update pve-container. My version is proxmox-ve: 6.0-2 and pve-container: 3.0-3if i'm not mistaken, it should be pve-container >= 3.0-7
see my answer, you need pve-container >= 3.0-7 for it to work.
How can I update pve-container. My version is proxmox-ve: 6.0-2 and pve-container: 3.0-3
apt update && apt full-upgrade
will update whole system.apt update && apt install pve-container
and it should get the latest versionI can confirm this solved it for meif you're getting an error while creating a new container similar to this:
Code:TASK ERROR: unable to create CT unsupported centos release
you probably need to perform a little change on this file: /usr/share/perl5/PVE/LXC/Setup/CentOS.pm
something like this should be enough:
Code:sed -i 's/ < 8) {/ < 9) {/' /usr/share/perl5/PVE/LXC/Setup/CentOS.pm
and then restart related services:
Code:systemctl restart pveproxy pvedaemon
by the way, I've tested this one: https://uk.images.linuxcontainers.org/images/centos/8/amd64/cloud/20191015_07:08/rootfs.tar.xz
and everything seems fine by now. I'll try to report back if I found any issues.
I can confirm this solved it for me