f1c8136556
Having all services in one giant haproxy file makes altering configuration for a service both painful and dangerous. Each service should be configured with a simple set of variables and rendered with a single unified template. Available are two new templates: * haproxy_single_service_listen.cfg.j2: close to the original style, but only one service per file * haproxy_single_service_split.cfg.j2: using the newer haproxy syntax for separated frontend and backend For now the default will be the single listen block, for ease of transition. Change-Id: I6e237438fbc0aa3c89a3c8bd706a53b74e71904b
102 lines
4.1 KiB
YAML
102 lines
4.1 KiB
YAML
---
|
|
project_name: "mistral"
|
|
|
|
mistral_services:
|
|
mistral-api:
|
|
container_name: mistral_api
|
|
group: mistral-api
|
|
enabled: true
|
|
image: "{{ mistral_api_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/mistral-api/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "{{ kolla_dev_repos_directory ~ '/mistral/mistral:/var/lib/kolla/venv/lib/python2.7/site-packages/mistral' if mistral_dev_mode | bool else '' }}"
|
|
dimensions: "{{ mistral_api_dimensions }}"
|
|
haproxy:
|
|
mistral_api:
|
|
enabled: "{{ enable_mistral }}"
|
|
mode: "http"
|
|
external: false
|
|
port: "{{ mistral_api_port }}"
|
|
mistral_api_external:
|
|
enabled: "{{ enable_mistral }}"
|
|
mode: "http"
|
|
external: true
|
|
port: "{{ mistral_api_port }}"
|
|
mistral-engine:
|
|
container_name: mistral_engine
|
|
group: mistral-engine
|
|
enabled: true
|
|
image: "{{ mistral_engine_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/mistral-engine/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "{{ kolla_dev_repos_directory ~ '/mistral/mistral:/var/lib/kolla/venv/lib/python2.7/site-packages/mistral' if mistral_dev_mode | bool else '' }}"
|
|
dimensions: "{{ mistral_engine_dimensions }}"
|
|
mistral-executor:
|
|
container_name: mistral_executor
|
|
group: mistral-executor
|
|
enabled: true
|
|
image: "{{ mistral_executor_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/mistral-executor/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "{{ kolla_dev_repos_directory ~ '/mistral/mistral:/var/lib/kolla/venv/lib/python2.7/site-packages/mistral' if mistral_dev_mode | bool else '' }}"
|
|
dimensions: "{{ mistral_executor_dimensions }}"
|
|
|
|
|
|
####################
|
|
# Database
|
|
####################
|
|
mistral_database_name: "mistral"
|
|
mistral_database_user: "{% if use_preconfigured_databases | bool and use_common_mariadb_user | bool %}{{ database_user }}{% else %}mistral{% endif %}"
|
|
mistral_database_address: "{{ database_address }}:{{ database_port }}"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
mistral_install_type: "{{ kolla_install_type }}"
|
|
mistral_tag: "{{ openstack_release }}"
|
|
|
|
mistral_engine_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ mistral_install_type }}-mistral-engine"
|
|
mistral_engine_tag: "{{ mistral_tag }}"
|
|
mistral_engine_image_full: "{{ mistral_engine_image }}:{{ mistral_engine_tag }}"
|
|
|
|
mistral_executor_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ mistral_install_type }}-mistral-executor"
|
|
mistral_executor_tag: "{{ mistral_tag }}"
|
|
mistral_executor_image_full: "{{ mistral_executor_image }}:{{ mistral_executor_tag }}"
|
|
|
|
mistral_api_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ mistral_install_type }}-mistral-api"
|
|
mistral_api_tag: "{{ mistral_tag }}"
|
|
mistral_api_image_full: "{{ mistral_api_image }}:{{ mistral_api_tag }}"
|
|
|
|
mistral_engine_dimensions: "{{ default_container_dimensions }}"
|
|
mistral_executor_dimensions: "{{ default_container_dimensions }}"
|
|
mistral_api_dimensions: "{{ default_container_dimensions }}"
|
|
|
|
|
|
####################
|
|
# OpenStack
|
|
####################
|
|
mistral_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ mistral_api_port }}/v2"
|
|
mistral_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ mistral_api_port }}/v2"
|
|
mistral_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ mistral_api_port }}/v2"
|
|
|
|
mistral_logging_debug: "{{ openstack_logging_debug }}"
|
|
|
|
mistral_keystone_user: "mistral"
|
|
|
|
openstack_mistral_auth: "{{ openstack_auth }}"
|
|
|
|
####################
|
|
# Kolla
|
|
####################
|
|
mistral_git_repository: "{{ kolla_dev_repos_git }}/{{ project_name }}"
|
|
mistral_dev_repos_pull: "{{ kolla_dev_repos_pull }}"
|
|
mistral_dev_mode: "{{ kolla_dev_mode }}"
|
|
mistral_source_version: "{{ kolla_source_version }}"
|