Deploy Grafana when Monasca is enabled

This is necessary to deploy grafana as a replacement for the retired
monasca-grafana image.

Change-Id: I7b719aeb20cc63f41280e20063785d77b0334d64
Story: 2009717
Task: 44091
This commit is contained in:
Pierre Riteau 2021-11-30 11:21:00 +01:00
parent 9f574402f3
commit 8ab4530f26
2 changed files with 8 additions and 1 deletions

View File

@ -532,7 +532,7 @@ kolla_enable_etcd: "no"
kolla_enable_fluentd: "yes"
kolla_enable_freezer: "no"
kolla_enable_gnocchi: "no"
kolla_enable_grafana: "no"
kolla_enable_grafana: "{{ kolla_enable_monasca | bool }}"
kolla_enable_heat: "{{ kolla_enable_openstack_core | bool }}"
kolla_enable_horizon: "{{ kolla_enable_openstack_core | bool }}"
kolla_enable_influxdb: "{{ kolla_enable_monasca | bool or kolla_enable_cloudkitty | bool }}"

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Enables deployment of Grafana when Monasca is enabled, as a replacement for
the retired ``monasca-grafana`` image. See `story 2009717
<https://storyboard.openstack.org/#!/story/2009717>`__ for details.