Delete influxdb admin port

From version 1.3, the web admin interface is no longer available
in InfluxDB.
https://docs.influxdata.com/influxdb/v1.3/administration/differences/#web-admin-ui-removal

Change-Id: I1dce61a9c40a407882cfcd520ca491b4dee734ae
This commit is contained in:
pangliye 2019-09-11 09:25:13 +08:00
parent 15ce0e0600
commit df6b98d793
4 changed files with 0 additions and 21 deletions

View File

@ -273,7 +273,6 @@ heat_api_cfn_listen_port: "{{ heat_api_cfn_port }}"
horizon_port: "80"
horizon_listen_port: "{{ horizon_port }}"
influxdb_admin_port: "8083"
influxdb_http_port: "8086"
ironic_internal_fqdn: "{{ kolla_internal_fqdn }}"

View File

@ -10,11 +10,6 @@ influxdb_services:
volumes: "{{ influxdb_default_volumes + influxdb_extra_volumes }}"
dimensions: "{{ influxdb_dimensions }}"
haproxy:
influxdb_admin:
enabled: "{{ enable_influxdb }}"
mode: "http"
external: false
port: "{{ influxdb_admin_port }}"
influxdb_http:
enabled: "{{ enable_influxdb }}"
mode: "http"

View File

@ -6,17 +6,6 @@
- influxdb
register: container_facts
- name: Checking free port for Influxdb Admin
wait_for:
host: "{{ api_interface_address }}"
port: "{{ influxdb_admin_port }}"
connect_timeout: 1
timeout: 1
state: stopped
when:
- container_facts['influxdb'] is not defined
- inventory_hostname in groups['influxdb']
- name: Checking free port for Influxdb Http
wait_for:
host: "{{ api_interface_address }}"

View File

@ -34,10 +34,6 @@ reporting-disabled = true
store-enabled = true
store-database = "_internal"
store-interval = "10s"
[admin]
enabled = true
bind-address = "{{ api_interface_address }}:{{ influxdb_admin_port }}"
https-enabled = false
[http]
enabled = true
bind-address = "{{ api_interface_address }}:{{ influxdb_http_port }}"