5ecae12fec
Co-Authored-By: caoyuan <cao.yuan@99cloud.net> Change-Id: I8855edd9e6f71012b53cda6720a4ba3e08f166e8 Partially-implements: blueprint better-reconfigure
23 lines
691 B
YAML
23 lines
691 B
YAML
---
|
|
project_name: "influxdb"
|
|
|
|
influxdb_services:
|
|
influxdb:
|
|
container_name: influxdb
|
|
group: influxdb
|
|
enabled: true
|
|
image: "{{ influxdb_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/influxdb/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "influxdb:/var/lib/influxdb"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
influxdb_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-influxdb"
|
|
influxdb_tag: "{{ openstack_release }}"
|
|
influxdb_image_full: "{{ influxdb_image }}:{{ influxdb_tag }}"
|