5cb375645c
Add a new variable 'kolla_devmode', which when enabled, clones and bindmounts service source code into the containers. This commit adds the relevant changes for Heat, more services can be added and built upon. Usage: * Set 'kolla_devmode: yes' * Code is cloned to /opt/stack/{{ project_name }} on target node(s) * Users can develop in these repos, and simply restart the container to pick up / test changes. Debugging can be done from the host via 'remote_pdb'[0]. [0] https://pypi.python.org/pypi/remote-pdb Implements: blueprint mount-sources Change-Id: Ic0431b10d723bf84eeefc72039376fe0058dd902
88 lines
3.5 KiB
YAML
88 lines
3.5 KiB
YAML
---
|
|
project_name: "heat"
|
|
|
|
heat_services:
|
|
heat-api:
|
|
container_name: heat_api
|
|
group: heat-api
|
|
enabled: true
|
|
image: "{{ heat_api_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/heat-api/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "{{ kolla_dev_repos_directory ~ '/heat/heat:/var/lib/kolla/venv/lib/python2.7/site-packages/heat' if heat_dev_mode | bool else '' }}"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
heat-api-cfn:
|
|
container_name: heat_api_cfn
|
|
group: heat-api-cfn
|
|
enabled: true
|
|
image: "{{ heat_api_cfn_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/heat-api-cfn/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "{{ kolla_dev_repos_directory ~ '/heat/heat:/var/lib/kolla/venv/lib/python2.7/site-packages/heat' if heat_dev_mode | bool else '' }}"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
heat-engine:
|
|
container_name: heat_engine
|
|
group: heat-engine
|
|
enabled: true
|
|
image: "{{ heat_engine_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/heat-engine/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "{{ kolla_dev_repos_directory ~ '/heat/heat:/var/lib/kolla/venv/lib/python2.7/site-packages/heat' if heat_dev_mode | bool else '' }}"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
|
|
####################
|
|
# Database
|
|
####################
|
|
heat_database_name: "heat"
|
|
heat_database_user: "heat"
|
|
heat_database_address: "{{ kolla_internal_fqdn }}:{{ database_port }}"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
heat_install_type: "{{ kolla_install_type }}"
|
|
heat_tag: "{{ openstack_release }}"
|
|
|
|
heat_api_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ heat_install_type }}-heat-api"
|
|
heat_api_tag: "{{ heat_tag }}"
|
|
heat_api_image_full: "{{ heat_api_image }}:{{ heat_api_tag }}"
|
|
|
|
heat_api_cfn_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ heat_install_type }}-heat-api-cfn"
|
|
heat_api_cfn_tag: "{{ heat_tag }}"
|
|
heat_api_cfn_image_full: "{{ heat_api_cfn_image }}:{{ heat_api_cfn_tag }}"
|
|
|
|
heat_engine_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ heat_install_type }}-heat-engine"
|
|
heat_engine_tag: "{{ heat_tag }}"
|
|
heat_engine_image_full: "{{ heat_engine_image }}:{{ heat_engine_tag }}"
|
|
|
|
|
|
####################
|
|
# OpenStack
|
|
####################
|
|
heat_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ heat_api_port }}/v1/%(tenant_id)s"
|
|
heat_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ heat_api_port }}/v1/%(tenant_id)s"
|
|
heat_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ heat_api_port }}/v1/%(tenant_id)s"
|
|
heat_cfn_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ heat_api_cfn_port }}/v1"
|
|
heat_cfn_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ heat_api_cfn_port }}/v1"
|
|
heat_cfn_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ heat_api_cfn_port }}/v1"
|
|
|
|
heat_logging_debug: "{{ openstack_logging_debug }}"
|
|
|
|
heat_keystone_user: "heat"
|
|
heat_stack_user_role: "heat_stack_user"
|
|
heat_stack_owner_role: "heat_stack_owner"
|
|
|
|
openstack_heat_auth: "{{ openstack_auth }}"
|
|
|
|
|
|
####################
|
|
# Kolla
|
|
####################
|
|
heat_git_repository: "{{ kolla_dev_repos_git }}/{{ project_name }}"
|
|
heat_dev_repos_pull: "{{ kolla_dev_repos_pull }}"
|
|
heat_dev_mode: "{{ kolla_dev_mode }}"
|