146b00efa7
Previously we mounted /etc/timezone if the kolla_base_distro is debian or ubuntu. This would fail prechecks if debian or ubuntu images were deployed on CentOS. While this is not a supported combination, for correctness we should fix the condition to reference the host OS rather than the container OS, since that is where the /etc/timezone file is located. Change-Id: Ifc252ae793e6974356fcdca810b373f362d24ba5 Closes-Bug: #1882553
172 lines
7.2 KiB
YAML
172 lines
7.2 KiB
YAML
---
|
|
project_name: "aodh"
|
|
|
|
aodh_services:
|
|
aodh-api:
|
|
container_name: aodh_api
|
|
group: aodh-api
|
|
enabled: true
|
|
image: "{{ aodh_api_image_full }}"
|
|
volumes: "{{ aodh_api_default_volumes + aodh_api_extra_volumes }}"
|
|
dimensions: "{{ aodh_api_dimensions }}"
|
|
haproxy:
|
|
aodh_api:
|
|
enabled: "{{ enable_aodh }}"
|
|
mode: "http"
|
|
external: false
|
|
port: "{{ aodh_api_port }}"
|
|
listen_port: "{{ aodh_api_listen_port }}"
|
|
aodh_api_external:
|
|
enabled: "{{ enable_aodh }}"
|
|
mode: "http"
|
|
external: true
|
|
port: "{{ aodh_api_port }}"
|
|
listen_port: "{{ aodh_api_listen_port }}"
|
|
aodh-evaluator:
|
|
container_name: aodh_evaluator
|
|
group: aodh-evaluator
|
|
enabled: true
|
|
image: "{{ aodh_evaluator_image_full }}"
|
|
volumes: "{{ aodh_evaluator_default_volumes + aodh_evaluator_extra_volumes }}"
|
|
dimensions: "{{ aodh_evaluator_dimensions }}"
|
|
aodh-listener:
|
|
container_name: aodh_listener
|
|
group: aodh-listener
|
|
enabled: true
|
|
image: "{{ aodh_listener_image_full }}"
|
|
volumes: "{{ aodh_listener_default_volumes + aodh_listener_extra_volumes }}"
|
|
dimensions: "{{ aodh_listener_dimensions }}"
|
|
aodh-notifier:
|
|
container_name: aodh_notifier
|
|
group: aodh-notifier
|
|
enabled: true
|
|
image: "{{ aodh_notifier_image_full }}"
|
|
volumes: "{{ aodh_notifier_default_volumes + aodh_notifier_extra_volumes }}"
|
|
dimensions: "{{ aodh_notifier_dimensions }}"
|
|
|
|
# Aodh Evaluation interval - Period of evaluation cycle, should
|
|
# be >= than configured polling interval for collection of
|
|
# underlying meters which by default be defined in
|
|
# /etc/ceilometer/polling.yaml (300).
|
|
# If you uses a custom polling.yaml which has a different interval,
|
|
# change this option.
|
|
aodh_evaluation_interval: 300
|
|
|
|
|
|
####################
|
|
# 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 | put_address_in_context('url') }}:{{ database_port }}"
|
|
|
|
####################
|
|
# Notification
|
|
####################
|
|
aodh_notification_topics:
|
|
- name: notifications
|
|
enabled: "{{ enable_ceilometer | bool }}"
|
|
- name: vitrage_notifications
|
|
enabled: "{{ enable_vitrage | bool }}"
|
|
|
|
aodh_enabled_notification_topics: "{{ aodh_notification_topics | selectattr('enabled', 'equalto', true) | list }}"
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
aodh_install_type: "{{ kolla_install_type }}"
|
|
aodh_tag: "{{ openstack_tag }}"
|
|
|
|
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 }}"
|
|
|
|
aodh_api_default_volumes:
|
|
- "{{ node_config_directory }}/aodh-api/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "{{ '/etc/timezone:/etc/timezone:ro' if ansible_os_family == 'Debian' else '' }}"
|
|
- "aodh:/var/lib/aodh/"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "{{ kolla_dev_repos_directory ~ '/aodh/aodh:/var/lib/kolla/venv/lib/python' ~ distro_python_version ~ '/site-packages/aodh' if aodh_dev_mode | bool else '' }}"
|
|
aodh_evaluator_default_volumes:
|
|
- "{{ node_config_directory }}/aodh-evaluator/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "{{ '/etc/timezone:/etc/timezone:ro' if ansible_os_family == 'Debian' else '' }}"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "{{ kolla_dev_repos_directory ~ '/aodh/aodh:/var/lib/kolla/venv/lib/python' ~ distro_python_version ~ '/site-packages/aodh' if aodh_dev_mode | bool else '' }}"
|
|
aodh_listener_default_volumes:
|
|
- "{{ node_config_directory }}/aodh-listener/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "{{ '/etc/timezone:/etc/timezone:ro' if ansible_os_family == 'Debian' else '' }}"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "{{ kolla_dev_repos_directory ~ '/aodh/aodh:/var/lib/kolla/venv/lib/python' ~ distro_python_version ~ '/site-packages/aodh' if aodh_dev_mode | bool else '' }}"
|
|
aodh_notifier_default_volumes:
|
|
- "{{ node_config_directory }}/aodh-notifier/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "{{ '/etc/timezone:/etc/timezone:ro' if ansible_os_family == 'Debian' else '' }}"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "{{ kolla_dev_repos_directory ~ '/aodh/aodh:/var/lib/kolla/venv/lib/python' ~ distro_python_version ~ '/site-packages/aodh' if aodh_dev_mode | bool else '' }}"
|
|
|
|
aodh_extra_volumes: "{{ default_extra_volumes }}"
|
|
aodh_api_extra_volumes: "{{ aodh_extra_volumes }}"
|
|
aodh_evaluator_extra_volumes: "{{ aodh_extra_volumes }}"
|
|
aodh_listener_extra_volumes: "{{ aodh_extra_volumes }}"
|
|
aodh_notifier_extra_volumes: "{{ aodh_extra_volumes }}"
|
|
|
|
####################
|
|
# OpenStack
|
|
####################
|
|
aodh_admin_endpoint: "{{ admin_protocol }}://{{ aodh_internal_fqdn | put_address_in_context('url') }}:{{ aodh_api_port }}"
|
|
aodh_internal_endpoint: "{{ internal_protocol }}://{{ aodh_internal_fqdn | put_address_in_context('url') }}:{{ aodh_api_port }}"
|
|
aodh_public_endpoint: "{{ public_protocol }}://{{ aodh_external_fqdn | put_address_in_context('url') }}:{{ 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 }}"
|
|
aodh_source_version: "{{ kolla_source_version }}"
|
|
|
|
####################
|
|
# Keystone
|
|
####################
|
|
aodh_ks_services:
|
|
- name: "aodh"
|
|
type: "alarming"
|
|
description: "OpenStack Alarming Service"
|
|
endpoints:
|
|
- {'interface': 'admin', 'url': '{{ aodh_admin_endpoint }}'}
|
|
- {'interface': 'internal', 'url': '{{ aodh_internal_endpoint }}'}
|
|
- {'interface': 'public', 'url': '{{ aodh_public_endpoint }}'}
|
|
|
|
aodh_ks_users:
|
|
- project: "service"
|
|
user: "{{ aodh_keystone_user }}"
|
|
password: "{{ aodh_keystone_password }}"
|
|
role: "admin"
|