From 30baab2b12a1fbd38cc2459b9e94e817e843fc60 Mon Sep 17 00:00:00 2001 From: jlarriba Date: Tue, 26 Sep 2023 18:27:29 +0200 Subject: [PATCH] podman_containers plugin is not working consistently, so replaced by command until we can debug what is happening --- roles/edpm_telemetry/tasks/deploy_infra.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/roles/edpm_telemetry/tasks/deploy_infra.yml b/roles/edpm_telemetry/tasks/deploy_infra.yml index fcb60f7db..1bdd3a26f 100644 --- a/roles/edpm_telemetry/tasks/deploy_infra.yml +++ b/roles/edpm_telemetry/tasks/deploy_infra.yml @@ -15,13 +15,7 @@ # under the License. - name: deploy node_exporter container - containers.podman.podman_container: - image: "{{ telemetry_node_exporter_image }}" - name: node_exporter - state: present - recreate: yes - ports: - - "9100:9100" + command: "podman create --name node_exporter --publish 9100:9100 {{ telemetry_node_exporter_image }}" tags: - edpm_telemetry