From 26496b9ae0fc19cf081b03fe150a9dcd5161cf10 Mon Sep 17 00:00:00 2001 From: Jakub Kadlcik Date: Thu, 20 Mar 2025 16:42:26 +0100 Subject: [PATCH] logdetective: allow 8080 from the outside --- roles/logdetective/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/logdetective/tasks/main.yml b/roles/logdetective/tasks/main.yml index 4bd0c6c315..be020e30ba 100644 --- a/roles/logdetective/tasks/main.yml +++ b/roles/logdetective/tasks/main.yml @@ -101,3 +101,9 @@ path: /usr/share/containers/storage.conf regexp: '^graphroot = ' line: 'graphroot = "/mnt/srv/containers_storage"' + +- name: Allow accessing 8080 from the outside + ansible.posix.firewalld: + port: 8080 + permanent: true + state: enabled