From 41b44dde85d8a4e6070511a723fa874c7e49876e Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Wed, 10 Jul 2019 17:19:29 -0400 Subject: [PATCH] ceph-infra: Open prometheus port The Prometheus porrt 9090 isn't open in the firewall configuration. Also the dashboard task on the grafana node was not required because it's already present on the mgr node. Signed-off-by: Dimitri Savineau --- roles/ceph-infra/tasks/configure_firewall.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/ceph-infra/tasks/configure_firewall.yml b/roles/ceph-infra/tasks/configure_firewall.yml index 6a5b855c1..f358180d0 100644 --- a/roles/ceph-infra/tasks/configure_firewall.yml +++ b/roles/ceph-infra/tasks/configure_firewall.yml @@ -194,9 +194,9 @@ immediate: true state: enabled - - name: open dashboard port + - name: open prometheus port firewalld: - port: "{{ dashboard_port }}/tcp" + port: "9090/tcp" zone: "{{ ceph_dashboard_firewall_zone }}" permanent: true immediate: true -- 2.39.5