
Kolla removed support for binary images in the Zed release, as well as the install_type config option. It also changed the image tag format. Yoga & earlier: openstack.kolla/centos-source-base:yoga Zed & later: openstack.kolla/base:zed-centos-stream9 This change removes the kolla_install_type variable. It also adds a kolla_base_distro_version variable, which is passed to kolla and kolla-ansible. The following two variables are also removed, since all images are now of type source: * overcloud_container_image_regex_map_source * overcloud_container_image_regexes_source Change-Id: I0023765438c0c73394c3465828c4d98f766d9350
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
[DEFAULT]
|
|
|
|
# Base container image distribution.
|
|
base={{ kolla_base_distro }}
|
|
|
|
# Base container image tag.
|
|
base_tag={{ kolla_base_tag }}
|
|
|
|
# Docker namespace to use for Kolla images.
|
|
namespace={{ kolla_docker_namespace }}
|
|
|
|
# Use host networking by default, in line with Kolla Ansible's default Docker
|
|
# engine configuration.
|
|
network_mode=host
|
|
|
|
# Docker image tag to apply.
|
|
tag={{ kolla_tag }}
|
|
|
|
# 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 %}
|