diff --git a/ansible/roles/grafana/templates/grafana.ini.j2 b/ansible/roles/grafana/templates/grafana.ini.j2 index e9908ca8c0..e6a8575842 100644 --- a/ansible/roles/grafana/templates/grafana.ini.j2 +++ b/ansible/roles/grafana/templates/grafana.ini.j2 @@ -6,7 +6,7 @@ provisioning = /etc/grafana/provisioning [server] protocol = http -http_addr = {{ api_interface_address }} +http_addr = {{ api_interface_address | put_address_in_context('url') }} http_port = {{ grafana_server_port }} router_logging = true diff --git a/releasenotes/notes/bug-1866141-dc4bfaa2f7c31198.yaml b/releasenotes/notes/bug-1866141-dc4bfaa2f7c31198.yaml new file mode 100644 index 0000000000..eb3fbf3cd4 --- /dev/null +++ b/releasenotes/notes/bug-1866141-dc4bfaa2f7c31198.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Fixes an issue with deploying Grafana when using IPv6. + `LP#1866141 `__