File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,9 @@ grafana_default_volumes:
81
81
- " kolla_logs:/var/log/kolla/"
82
82
grafana_extra_volumes : " {{ default_extra_volumes }}"
83
83
84
+ grafana_start_first_node_delay : 10
85
+ grafana_start_first_node_retries : 12
86
+
84
87
# ###########
85
88
# Prometheus
86
89
# ###########
Original file line number Diff line number Diff line change 29
29
status_code : 200
30
30
register : result
31
31
until : result.get('status') == 200
32
- retries : 10
33
- delay : 2
32
+ retries : " {{ grafana_start_first_node_retries }} "
33
+ delay : " {{ grafana_start_first_node_delay }} "
34
34
when :
35
35
- kolla_action != "config"
36
36
- inventory_hostname == groups[service.group]|first
Original file line number Diff line number Diff line change
1
+ ---
2
+ fixes :
3
+ - |
4
+ On slower nodes, the initial grafana startup could experience a
5
+ timeout failure when the migrations for setting up the database
6
+ took longer than expected. This has been fixed by increasing the
7
+ default timeout. The timeout settings can be changed via new
8
+ parameters ``grafana_start_first_node_delay`` and
9
+ ``grafana_start_first_node_retries`` for the ``grafana`` role.
10
+ `LP#1769962 <https://launchpad.net/bugs/1769962>`__
You can’t perform that action at this time.
0 commit comments