Fix missing grafana opensearch datasource

The grafana opensearch datasource was missing from the docker image.
This commit installs the datasource plugin.

Change-Id: Ia3a39c975abf815a66765f2f98c4789d6cec33d7
(cherry picked from commit a97a561bab)
This commit is contained in:
Dawud 2023-08-21 17:20:50 +01:00
parent 0e6676cb0b
commit 9ee9677f9d
2 changed files with 7 additions and 1 deletions

View File

@ -22,7 +22,8 @@ COPY extend_start.sh /usr/local/bin/kolla_extend_start
{% block grafana_plugins_install %}
RUN grafana-cli plugins install gnocchixyz-gnocchi-datasource
RUN grafana-cli plugins install gnocchixyz-gnocchi-datasource \
&& grafana-cli plugins install grafana-opensearch-datasource
{% endblock %}

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Adds missing `grafana-opensearch-datasource` plugin to the list of plugins
in the docker image.