Merge "Delete influxdb admin port"

This commit is contained in:
Zuul 2019-09-11 18:44:42 +00:00 committed by Gerrit Code Review
commit d302910e0a
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 }}"