62baa42a7d
It seems that this has been named install_type since the beginning [1]. [1] https://github.com/openstack/kolla/commit/ 620d610eaaf03217f3a038c031fe28ce43132166 Change-Id: Ie48546d0ef44e04ca0b1b8cd046acb2f127f38c9 Story: 2003904 Task: 26782
44 lines
1.1 KiB
Django/Jinja
44 lines
1.1 KiB
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
[DEFAULT]
|
|
|
|
# Base container image distribution.
|
|
base={{ kolla_base_distro }}
|
|
|
|
# Method of OpenStack install. Valid options are [ binary, source ]
|
|
install_type={{ kolla_install_type }}
|
|
|
|
# Docker namespace to use for Kolla images.
|
|
namespace={{ kolla_docker_namespace }}
|
|
|
|
# Docker image tag to apply.
|
|
tag={{ kolla_openstack_release }}
|
|
|
|
# Path to a file containing template overrides.
|
|
template_override={{ kolla_build_config_path }}/template-override.j2
|
|
|
|
{% for source_name, source_def in kolla_sources.items() %}
|
|
[{{ source_name }}]
|
|
{% if source_def.type is defined %}
|
|
# Type of source for {{ source_name }}.
|
|
type = {{ source_def.type }}
|
|
{% endif %}
|
|
{% if source_def.location is defined %}
|
|
# Location of source for {{ source_name }}.
|
|
location = {{ source_def.location }}
|
|
{% endif %}
|
|
{% if source_def.reference is defined %}
|
|
# Reference of source for {{ source_name }}.
|
|
reference = {{ source_def.reference }}
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% if kolla_build_extra_config is defined %}
|
|
#######################
|
|
# Extra configuration
|
|
#######################
|
|
|
|
{{ kolla_build_extra_config }}
|
|
{% endif %}
|