ansible-test: Downgrade containerd for Fedora 39 (#82231)

* containerd 1.6.23 on Fedora 39 causes issue. Downgrading
  to containered to 1.6.19-2 works.
* See: https://bugzilla.redhat.com/show_bug.cgi?id=2237396

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/82232/head
Abhijeet Kasurde 6 months ago committed by GitHub
parent a45dc10b8f
commit f8cdec6324
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -950,6 +950,15 @@ class DnfBootstrapper(Bootstrapper):
# See: https://github.com/containers/netavark/issues/491
packages.append('netavark-1.0.2')
if os_release.id == 'fedora' and os_release.version_id == '39':
# In Fedora 39, the current version of containerd, 1.6.23, prevents Docker from working.
# The previously tested version, 1.6.19, did not have this issue.
# See: https://bugzilla.redhat.com/show_bug.cgi?id=2237396
run_command(
'dnf', 'install', '-y',
'https://kojipkgs.fedoraproject.org/packages/containerd/1.6.19/2.fc39/x86_64/containerd-1.6.19-2.fc39.x86_64.rpm'
)
if os_release.id == 'rhel':
# As of the release of RHEL 9.1, installing podman on RHEL 9.0 results in a non-fatal error at install time:
#

Loading…
Cancel
Save