File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,21 @@ enable_docker_repo: "{% raw %}{{ 'overcloud' not in group_names }}{% endraw %}"
1010# This is necessary for os migrations where mixed clouds might be deployed
1111kolla_base_distro : " {% raw %}{{ ansible_facts.distribution | lower }}{% endraw %}"
1212
13+ # Convenience variable for base distro and version string.
14+ kolla_base_distro_and_version : " {% raw %}{{ kolla_base_distro }}-{{ kolla_base_distro_version }}{% endraw %}"
15+
1316# Dict of Kolla image tags to deploy for each service.
1417# Each key is the tag variable prefix name, and the value is another dict,
1518# where the key is the OS distro and the value is the tag to deploy.
1619# NOTE: This is defined in etc/kayobe/kolla-image-tags.yml.
1720kolla_image_tags :
1821{{ kolla_image_tags | to_nice_yaml | indent(width=4, first=true) }}
1922
20- openstack_tag : " {% raw %}{{ kayobe_image_tags['openstack'][kolla_base_distro] }}{% endraw %}"
21- bifrost_tag : " {% raw %}{{ kayobe_image_tags['bifrost'][kolla_base_distro] }}{% endraw %}"
22- ovn_tag : " {% raw %}{{ kayobe_image_tags['ovn'][kolla_base_distro] }}{% endraw %}"
23- cloudkitty_tag : " {% raw %}{{ kayobe_image_tags['cloudkitty'][kolla_base_distro] }}{% endraw %}"
24- neutron_tag : " {% raw %}{{ kayobe_image_tags['neutron'][kolla_base_distro] }}{% endraw %}"
25- opensearch_tag : " {% raw %}{{ kayobe_image_tags['opensearch'][kolla_base_distro] }}{% endraw %}"
23+ # Variables defining which tag to use for each container's image.
24+ {{ lookup('pipe', 'python3 ' ~ kayobe_config_path ~ '/../../tools/kolla-images.py list-tag-vars') }}
25+
26+ # ############################################################################
27+ # RabbitMQ
2628
2729om_enable_rabbitmq_high_availability : true
2830
You can’t perform that action at this time.
0 commit comments