Merge "Fix typo in endpoint influxdb_internal_endpoint variable"

This commit is contained in:
Zuul 2022-06-13 13:14:08 +00:00 committed by Gerrit Code Review
commit 6a329d4642
3 changed files with 8 additions and 2 deletions

View File

@ -1132,7 +1132,7 @@ enable_vitrage_prometheus_datasource: "{{ enable_prometheus | bool }}"
influxdb_address: "{{ kolla_internal_fqdn }}" influxdb_address: "{{ kolla_internal_fqdn }}"
influxdb_datadir_volume: "influxdb" influxdb_datadir_volume: "influxdb"
infuxdb_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn | put_address_in_context('url') }}:{{ influxdb_http_port }}" influxdb_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn | put_address_in_context('url') }}:{{ influxdb_http_port }}"
################# #################
# Kafka options # Kafka options

View File

@ -37,7 +37,7 @@ grafana_data_sources:
database: "telegraf" database: "telegraf"
name: "telegraf" name: "telegraf"
type: "influxdb" type: "influxdb"
url: "{{ infuxdb_internal_endpoint }}" url: "{{ influxdb_internal_endpoint }}"
access: "proxy" access: "proxy"
basicAuth: false basicAuth: false
elasticsearch: elasticsearch:

View File

@ -0,0 +1,6 @@
---
upgrade:
- |
Influxdb variable ``infuxdb_internal_endpoint`` has been fixed to
``influxdb_internal_endpoint``.
Operators might need to review the relevant variable.