From fff23ad3dc4d49700dc7eee57a0901d1a9de0d6c Mon Sep 17 00:00:00 2001 From: Francesco Pantano Date: Mon, 6 Sep 2021 18:31:56 +0200 Subject: [PATCH] Fix the CephDashboardNetwork default The Ceph Dashboard uses by default the Grafana network to bind the overcloud backends to the specified port. However, the CephDashboardNetwork parameter is used to define the haproxy frontend and the related vip, used to reach the Ceph backends. The purpose of this patch is to make sure the right defaults are used for TripleO deployed Ceph clusters. Change-Id: I1dd5581317462f638185c918c85c86f953ddf28f (cherry picked from commit ae139dec649a413a626549bcb5c1de794383be40) (cherry picked from commit 884d9bf2aabe8bdac831e0c63b0a2ab1653795e8) --- network/service_net_map.j2.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/service_net_map.j2.yaml b/network/service_net_map.j2.yaml index 733a578546..982c7cc710 100644 --- a/network/service_net_map.j2.yaml +++ b/network/service_net_map.j2.yaml @@ -74,7 +74,7 @@ parameters: MysqlNetwork: {{ _service_nets.get('internal_api', 'ctlplane') }} SnmpdNetwork: ctlplane CephClusterNetwork: {{ _service_nets.get('storage_mgmt', 'ctlplane') }} - CephDashboardNetwork: {{ _service_nets.get('storage', 'ctlplane') }} + CephDashboardNetwork: ctlplane CephGrafanaNetwork: {{ _service_nets.get('storage', 'ctlplane') }} CephMonNetwork: {{ _service_nets.get('storage', 'ctlplane') }} CephRgwNetwork: {{ _service_nets.get('storage', 'ctlplane') }}