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
27 lines
806 B
YAML
27 lines
806 B
YAML
---
|
|
project_name: "chrony"
|
|
|
|
chrony_services:
|
|
chrony:
|
|
container_name: "chrony"
|
|
group: "chrony"
|
|
image: "{{ chrony_image_full }}"
|
|
enabled: True
|
|
privileged: True
|
|
volumes:
|
|
- "{{ node_config_directory }}/chrony/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla"
|
|
dimensions: "{{ chrony_dimensions }}"
|
|
|
|
chrony_bindaddress: "{{ kolla_internal_vip_address }}"
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
chrony_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-chrony"
|
|
chrony_tag: "{{ openstack_release }}"
|
|
chrony_image_full: "{{ chrony_image }}:{{ chrony_tag }}"
|
|
|
|
chrony_dimensions: "{{ default_container_dimensions }}"
|