76210a2d85
This commit is to apply resource-constraints only to few OpenStack services. Commit to apply constraints to other services will be made in coming commits. Partially-Implements: blueprint resource-constraints Change-Id: Icafa54baca24d2de64238222a5677b9d8b90e2aa
31 lines
1006 B
YAML
31 lines
1006 B
YAML
---
|
|
collectd_services:
|
|
collectd:
|
|
container_name: collectd
|
|
group: collectd
|
|
enabled: true
|
|
image: "{{ collectd_image_full }}"
|
|
privileged: True
|
|
volumes:
|
|
- "{{ node_config_directory }}/collectd/:{{ container_config_directory }}/:ro"
|
|
- "{{node_config_directory }}/collectd/collectd.conf.d/:/etc/collectd/collectd.conf.d/"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "/sys/:/sys/:ro"
|
|
- "/dev/:/dev/:ro"
|
|
dimensions: "{{ collectd_dimensions }}"
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
collectd_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-collectd"
|
|
collectd_tag: "{{ openstack_release }}"
|
|
collectd_image_full: "{{ collectd_image }}:{{ collectd_tag }}"
|
|
|
|
collectd_dimensions: "{{ default_container_dimensions }}"
|
|
|
|
####################
|
|
# OpenStack
|
|
####################
|
|
collectd_logging_debug: "{{ openstack_logging_debug }}"
|