9f0db30fd1
This commit is the final commit to apply resource-constraints to all OpenStack services. Depends-on: I39004f54281f97d53dfa4b1dbcf248650ad6f186 Change-Id: I072d69be9698be54775cb0ae286ea2b6ed78776c Implements: blueprint resource-constraints
46 lines
1.8 KiB
YAML
46 lines
1.8 KiB
YAML
---
|
|
project_name: "panko"
|
|
|
|
panko_services:
|
|
panko-api:
|
|
container_name: panko_api
|
|
group: panko-api
|
|
enabled: true
|
|
image: "{{ panko_api_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/panko-api/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
dimensions: "{{ panko_api_dimensions }}"
|
|
|
|
|
|
####################
|
|
# Database
|
|
####################
|
|
panko_database_name: "panko"
|
|
panko_database_user: "{% if use_preconfigured_databases | bool and use_common_mariadb_user | bool %}{{ database_user }}{% else %}panko{% endif %}"
|
|
panko_database_port: "{{ mongodb_port if panko_database_type == 'mongodb' else database_port }}"
|
|
panko_database_mongodb_address: "{% for host in groups['mongodb'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ panko_database_port }}{% if not loop.last %},{% endif %}{% endfor %}"
|
|
panko_database_mysql_address: "{{ database_address }}:{{ database_port }}"
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
panko_api_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-panko-api"
|
|
panko_api_tag: "{{ openstack_release }}"
|
|
panko_api_image_full: "{{ panko_api_image }}:{{ panko_api_tag }}"
|
|
panko_api_dimensions: "{{ default_container_dimensions }}"
|
|
|
|
####################
|
|
# OpenStack
|
|
####################
|
|
panko_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ panko_api_port }}"
|
|
panko_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ panko_api_port }}"
|
|
panko_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ panko_api_port }}"
|
|
|
|
panko_logging_debug: "{{ openstack_logging_debug }}"
|
|
|
|
panko_keystone_user: "panko"
|
|
|
|
openstack_panko_auth: "{{ openstack_auth }}"
|