From 895ee22f34ebe0de86161028daa48acf713bedec Mon Sep 17 00:00:00 2001 From: Jakub Kadlcik Date: Wed, 19 Mar 2025 23:46:07 +0100 Subject: [PATCH] logdetective: configure podman to use iptables --- roles/logdetective/tasks/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/roles/logdetective/tasks/main.yml b/roles/logdetective/tasks/main.yml index f4311d2983..15cab1dee6 100644 --- a/roles/logdetective/tasks/main.yml +++ b/roles/logdetective/tasks/main.yml @@ -13,6 +13,16 @@ - wget - gcc-c++ +# For some reason, Podman containers cannot reach internet on F41 +# It is somehow related to the iptables vs nftables change +# See https://fedoraproject.org/wiki/Changes/NetavarkNftablesDefault +- name: Configure podman network + community.general.ini_file: + path: /etc/containers/containers.conf.d/50-netavark-nftables.conf + section: network + option: firewall_driver + value: "iptables" + - name: Download the cuda repofile ansible.builtin.get_url: url: https://developer.download.nvidia.com/compute/cuda/repos/fedora41/x86_64/cuda-fedora41.repo