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
91 lines
3.5 KiB
YAML
91 lines
3.5 KiB
YAML
---
|
|
project_name: "karbor"
|
|
|
|
karbor_services:
|
|
karbor-api:
|
|
container_name: karbor_api
|
|
group: karbor-api
|
|
enabled: true
|
|
image: "{{ karbor_api_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/karbor-api/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
dimensions: "{{ karbor_api_dimensions }}"
|
|
haproxy:
|
|
karbor_api:
|
|
enabled: "{{ enable_karbor }}"
|
|
mode: "http"
|
|
external: false
|
|
port: "{{ karbor_api_port }}"
|
|
karbor_api_external:
|
|
enabled: "{{ enable_karbor }}"
|
|
mode: "http"
|
|
external: true
|
|
port: "{{ karbor_api_port }}"
|
|
karbor-protection:
|
|
container_name: karbor_protection
|
|
group: karbor-protection
|
|
enabled: true
|
|
image: "{{ karbor_protection_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/karbor-protection/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
dimensions: "{{ karbor_protection_dimensions }}"
|
|
karbor-operationengine:
|
|
container_name: karbor_operationengine
|
|
group: karbor-operationengine
|
|
enabled: true
|
|
image: "{{ karbor_operationengine_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/karbor-operationengine/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
dimensions: "{{ karbor_operationengine_dimensions }}"
|
|
|
|
|
|
####################
|
|
# Database
|
|
####################
|
|
karbor_database_name: "karbor"
|
|
karbor_database_user: "{% if use_preconfigured_databases | bool and use_common_mariadb_user | bool %}{{ database_user }}{% else %}karbor{% endif %}"
|
|
karbor_database_address: "{{ database_address }}:{{ database_port }}"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
karbor_install_type: "{{ kolla_install_type }}"
|
|
karbor_tag: "{{ openstack_release }}"
|
|
|
|
karbor_protection_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ karbor_install_type }}-karbor-protection"
|
|
karbor_protection_tag: "{{ karbor_tag }}"
|
|
karbor_protection_image_full: "{{ karbor_protection_image }}:{{ karbor_protection_tag }}"
|
|
|
|
karbor_operationengine_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ karbor_install_type }}-karbor-operationengine"
|
|
karbor_operationengine_tag: "{{ karbor_tag }}"
|
|
karbor_operationengine_image_full: "{{ karbor_operationengine_image }}:{{ karbor_operationengine_tag }}"
|
|
|
|
karbor_api_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ karbor_install_type }}-karbor-api"
|
|
karbor_api_tag: "{{ karbor_tag }}"
|
|
karbor_api_image_full: "{{ karbor_api_image }}:{{ karbor_api_tag }}"
|
|
|
|
karbor_api_dimensions: "{{ default_container_dimensions }}"
|
|
karbor_protection_dimensions: "{{ default_container_dimensions }}"
|
|
karbor_operationengine_dimensions: "{{ default_container_dimensions }}"
|
|
|
|
|
|
####################
|
|
# OpenStack
|
|
####################
|
|
karbor_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ karbor_api_port }}/v1/%(tenant_id)s"
|
|
karbor_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ karbor_api_port }}/v1/%(tenant_id)s"
|
|
karbor_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ karbor_api_port }}/v1/%(tenant_id)s"
|
|
|
|
karbor_logging_debug: "{{ openstack_logging_debug }}"
|
|
|
|
karbor_keystone_user: "karbor"
|
|
|
|
openstack_karbor_auth: "{{ openstack_auth }}"
|