Skip to content
Snippets Groups Projects
Commit cf97aeeb authored by Pierre Riteau's avatar Pierre Riteau
Browse files

Configure prometheus-openstack-exporter to use internal endpoints

Change-Id: Ia134a518b63bb59cfad631cc488181f5245160e6
parent 37698812
No related branches found
No related tags found
No related merge requests found
......@@ -1024,6 +1024,7 @@ prometheus_openstack_exporter_interval: "60s"
prometheus_elasticsearch_exporter_interval: "60s"
prometheus_cmdline_extras:
prometheus_ceph_mgr_exporter_endpoints: []
prometheus_openstack_exporter_endpoint_type: "internal"
############
# Vitrage
......
{
"command": "/opt/openstack-exporter/openstack-exporter --os-client-config=/etc/openstack/clouds.yml --web.listen-address={{ api_interface_address | put_address_in_context('url') }}:{{ prometheus_openstack_exporter_port }} default",
"command": "/opt/openstack-exporter/openstack-exporter --endpoint-type={{ prometheus_openstack_exporter_endpoint_type }} --os-client-config=/etc/openstack/clouds.yml --web.listen-address={{ api_interface_address | put_address_in_context('url') }}:{{ prometheus_openstack_exporter_port }} default",
"config_files": [
{
"source": "{{ container_config_directory }}/clouds.yml",
......
---
upgrade:
- |
The Prometheus OpenStack exporter now uses internal endpoints to
communicate with OpenStack services, to match the configuration of other
services deployed by Kolla Ansible. Using public endpoints can be retained
by setting the ``prometheus_openstack_exporter_endpoint_type`` variable to
``public``.
fixes:
- |
The Prometheus OpenStack exporter now uses internal endpoints to
communicate with OpenStack services, to match the configuration of other
services deployed by Kolla Ansible.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment