Default to storage_dashboard, when set, for the CephDashboard service

The Ceph dashboard net was statically mapped to ctlplane which is
a sane default except when storage_dashboard is set precisely to
customize the listening network.

This change ensures we consume storage_dashboard when set instead
of using always ctlplane.

Change-Id: If293b20c29b74158ecdee4e47e97535baefde72c
This commit is contained in:
Giulio Fidente 2020-08-25 10:14:08 +02:00
parent b9722e1ac4
commit b81035d007
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ parameters:
MysqlNetwork: {{ _service_nets.get('internal_api', 'ctlplane') }}
SnmpdNetwork: ctlplane
CephClusterNetwork: {{ _service_nets.get('storage_mgmt', 'ctlplane') }}
CephDashboardNetwork: ctlplane
CephGrafanaNetwork: {{ _service_nets.get('storage', 'ctlplane') }}
CephDashboardNetwork: {{ _service_nets.get('storage_dashboard', 'ctlplane') }}
CephGrafanaNetwork: {{ _service_nets.get('storage_dashboard', 'ctlplane') }}
CephMonNetwork: {{ _service_nets.get('storage', 'ctlplane') }}
CephRgwNetwork: {{ _service_nets.get('storage', 'ctlplane') }}
PublicNetwork: {{ _service_nets.get('external', 'ctlplane') }}