Merge "Fix OpenStack exporter scrape with internal TLS & FQDN"

This commit is contained in:
Zuul 2023-11-15 15:10:48 +00:00 committed by Gerrit Code Review
commit 4b35b9d9a9
2 changed files with 7 additions and 1 deletions

View File

@ -139,7 +139,7 @@ scrape_configs:
honor_labels: true
static_configs:
- targets:
- '{{ kolla_internal_vip_address | put_address_in_context('url') }}:{{ prometheus_openstack_exporter_port }}'
- '{{ kolla_internal_fqdn | put_address_in_context('url') }}:{{ prometheus_openstack_exporter_port }}'
{% endif %}
{% if enable_prometheus_elasticsearch_exporter | bool %}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue where Prometheus would fail to scrape the OpenStack exporter
when using internal TLS with an FQDN. `LP#2008208
<https://bugs.launchpad.net/kolla-ansible/+bug/2008208>`__