14bf524756
This commit is to apply resource-constraints to a few more OpenStack services. Commit to apply constraints to the last set of services will be made in the upcoming commit. Depends-on: Icafa54baca24d2de64238222a5677b9d8b90e2aa Change-Id: I39004f54281f97d53dfa4b1dbcf248650ad6f186
25 lines
793 B
YAML
25 lines
793 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/"
|
|
dimensions: "{{ influxdb_dimensions }}"
|
|
|
|
|
|
####################
|
|
# 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 }}"
|
|
influxdb_dimensions: "{{ default_container_dimensions }}"
|