69 lines
2.6 KiB
YAML
69 lines
2.6 KiB
YAML
---
|
|
project_name: "watcher"
|
|
|
|
watcher_services:
|
|
watcher-api:
|
|
container_name: watcher_api
|
|
group: watcher-api
|
|
enabled: true
|
|
image: "{{ watcher_api_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/watcher-api/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
watcher-applier:
|
|
container_name: watcher_applier
|
|
group: watcher-applier
|
|
enabled: true
|
|
image: "{{ watcher_applier_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/watcher-applier/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
watcher-engine:
|
|
container_name: watcher_engine
|
|
group: watcher-engine
|
|
enabled: true
|
|
image: "{{ watcher_engine_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/watcher-engine/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
|
|
|
|
####################
|
|
# Database
|
|
####################
|
|
watcher_database_name: "watcher"
|
|
watcher_database_user: "watcher"
|
|
watcher_database_address: "{{ kolla_internal_fqdn }}:{{ database_port }}"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
watcher_engine_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-watcher-engine"
|
|
watcher_engine_tag: "{{ openstack_release }}"
|
|
watcher_engine_image_full: "{{ watcher_engine_image }}:{{ watcher_engine_tag }}"
|
|
|
|
watcher_api_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-watcher-api"
|
|
watcher_api_tag: "{{ openstack_release }}"
|
|
watcher_api_image_full: "{{ watcher_api_image }}:{{ watcher_api_tag }}"
|
|
|
|
watcher_applier_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-watcher-applier"
|
|
watcher_applier_tag: "{{ openstack_release }}"
|
|
watcher_applier_image_full: "{{ watcher_applier_image }}:{{ watcher_applier_tag }}"
|
|
|
|
####################
|
|
# OpenStack
|
|
####################
|
|
watcher_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ watcher_api_port }}"
|
|
watcher_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ watcher_api_port }}"
|
|
watcher_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ watcher_api_port }}"
|
|
|
|
watcher_logging_debug: "{{ openstack_logging_debug }}"
|
|
|
|
watcher_keystone_user: "watcher"
|
|
|
|
openstack_watcher_auth: "{{ openstack_auth }}"
|