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
106 lines
4.4 KiB
YAML
106 lines
4.4 KiB
YAML
---
|
|
project_name: "aodh"
|
|
|
|
aodh_services:
|
|
aodh-api:
|
|
container_name: aodh_api
|
|
group: aodh-api
|
|
enabled: true
|
|
image: "{{ aodh_api_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/aodh-api/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "aodh:/var/lib/aodh/"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "{{ kolla_dev_repos_directory ~ '/aodh/aodh:/var/lib/kolla/venv/lib/python2.7/site-packages/aodh' if aodh_dev_mode | bool else '' }}"
|
|
dimensions: "{{ aodh_api_dimensions }}"
|
|
aodh-evaluator:
|
|
container_name: aodh_evaluator
|
|
group: aodh-evaluator
|
|
enabled: true
|
|
image: "{{ aodh_evaluator_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/aodh-evaluator/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "{{ kolla_dev_repos_directory ~ '/aodh/aodh:/var/lib/kolla/venv/lib/python2.7/site-packages/aodh' if aodh_dev_mode | bool else '' }}"
|
|
dimensions: "{{ aodh_evaluator_dimensions }}"
|
|
aodh-listener:
|
|
container_name: aodh_listener
|
|
group: aodh-listener
|
|
enabled: true
|
|
image: "{{ aodh_listener_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/aodh-listener/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "{{ kolla_dev_repos_directory ~ '/aodh/aodh:/var/lib/kolla/venv/lib/python2.7/site-packages/aodh' if aodh_dev_mode | bool else '' }}"
|
|
dimensions: "{{ aodh_listener_dimensions }}"
|
|
aodh-notifier:
|
|
container_name: aodh_notifier
|
|
group: aodh-notifier
|
|
enabled: true
|
|
image: "{{ aodh_notifier_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/aodh-notifier/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "{{ kolla_dev_repos_directory ~ '/aodh/aodh:/var/lib/kolla/venv/lib/python2.7/site-packages/aodh' if aodh_dev_mode | bool else '' }}"
|
|
dimensions: "{{ aodh_notifier_dimensions }}"
|
|
|
|
|
|
####################
|
|
# Database
|
|
####################
|
|
aodh_database_name: "aodh"
|
|
aodh_database_user: "{% if use_preconfigured_databases | bool and use_common_mariadb_user | bool %}{{ database_user }}{% else %}aodh{% endif %}"
|
|
aodh_database_address: "{{ database_address }}:{{ database_port }}"
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
aodh_install_type: "{{ kolla_install_type }}"
|
|
aodh_tag: "{{ openstack_release }}"
|
|
|
|
aodh_api_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ aodh_install_type }}-aodh-api"
|
|
aodh_api_tag: "{{ aodh_tag }}"
|
|
aodh_api_image_full: "{{ aodh_api_image }}:{{ aodh_api_tag }}"
|
|
|
|
aodh_evaluator_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ aodh_install_type }}-aodh-evaluator"
|
|
aodh_evaluator_tag: "{{ aodh_tag }}"
|
|
aodh_evaluator_image_full: "{{ aodh_evaluator_image }}:{{ aodh_evaluator_tag }}"
|
|
|
|
aodh_listener_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ aodh_install_type }}-aodh-listener"
|
|
aodh_listener_tag: "{{ aodh_tag }}"
|
|
aodh_listener_image_full: "{{ aodh_listener_image }}:{{ aodh_listener_tag }}"
|
|
|
|
aodh_notifier_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ aodh_install_type }}-aodh-notifier"
|
|
aodh_notifier_tag: "{{ aodh_tag }}"
|
|
aodh_notifier_image_full: "{{ aodh_notifier_image }}:{{ aodh_notifier_tag }}"
|
|
|
|
aodh_api_dimensions: "{{ default_container_dimensions }}"
|
|
aodh_evaluator_dimensions: "{{ default_container_dimensions }}"
|
|
aodh_listener_dimensions: "{{ default_container_dimensions }}"
|
|
aodh_notifier_dimensions: "{{ default_container_dimensions }}"
|
|
|
|
####################
|
|
# OpenStack
|
|
####################
|
|
aodh_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ aodh_api_port }}"
|
|
aodh_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ aodh_api_port }}"
|
|
aodh_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ aodh_api_port }}"
|
|
|
|
aodh_logging_debug: "{{ openstack_logging_debug }}"
|
|
|
|
aodh_keystone_user: "aodh"
|
|
|
|
openstack_aodh_auth: "{{ openstack_auth }}"
|
|
|
|
|
|
####################
|
|
# Kolla
|
|
####################
|
|
aodh_git_repository: "{{ kolla_dev_repos_git }}/{{ project_name }}"
|
|
aodh_dev_repos_pull: "{{ kolla_dev_repos_pull }}"
|
|
aodh_dev_mode: "{{ kolla_dev_mode }}"
|