Fix typo in endpoint influxdb_internal_endpoint variable

This patch simply fix a typo in 'influxdb_internal_endpoint' variable.

Change-Id: I1b1068e84be7f7eaff1a4eab1ba9ddcd6f4241c7
This commit is contained in:
T0125936 - LALLAU Bertrand 2022-06-07 10:50:12 +02:00
parent 4be5088371
commit 13af278708
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_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

View File

@ -37,7 +37,7 @@ grafana_data_sources:
database: "telegraf"
name: "telegraf"
type: "influxdb"
url: "{{ infuxdb_internal_endpoint }}"
url: "{{ influxdb_internal_endpoint }}"
access: "proxy"
basicAuth: false
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.