3e75a33ad4
Change-Id: Ib4b15ed4feac82d8492b1c0f0238a752eac668e6
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
---
|
|
influxdb_services:
|
|
influxdb:
|
|
container_name: influxdb
|
|
group: influxdb
|
|
enabled: true
|
|
image: "{{ influxdb_image_full }}"
|
|
volumes: "{{ influxdb_default_volumes + influxdb_extra_volumes }}"
|
|
dimensions: "{{ influxdb_dimensions }}"
|
|
haproxy:
|
|
influxdb_http:
|
|
enabled: "{{ enable_influxdb }}"
|
|
mode: "http"
|
|
external: false
|
|
port: "{{ influxdb_http_port }}"
|
|
|
|
####################
|
|
# InfluxDB
|
|
####################
|
|
|
|
# Enable the disk based time series index (recommended for all users). For
|
|
# more information see here:
|
|
# https://docs.influxdata.com/influxdb/v1.7/concepts/time-series-index/
|
|
influxdb_enable_tsi: True
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
influxdb_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/influxdb"
|
|
influxdb_tag: "{{ openstack_tag }}"
|
|
influxdb_image_full: "{{ influxdb_image }}:{{ influxdb_tag }}"
|
|
influxdb_dimensions: "{{ default_container_dimensions }}"
|
|
|
|
influxdb_default_volumes:
|
|
- "{{ node_config_directory }}/influxdb/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "{{ '/etc/timezone:/etc/timezone:ro' if ansible_facts.os_family == 'Debian' else '' }}"
|
|
- "{{ influxdb_datadir_volume }}:/var/lib/influxdb"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
influxdb_extra_volumes: "{{ default_extra_volumes }}"
|