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 %}"
10
10
# This is necessary for os migrations where mixed clouds might be deployed
11
11
kolla_base_distro : " {% raw %}{{ ansible_facts.distribution | lower }}{% endraw %}"
12
12
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
+
13
16
# Dict of Kolla image tags to deploy for each service.
14
17
# Each key is the tag variable prefix name, and the value is another dict,
15
18
# where the key is the OS distro and the value is the tag to deploy.
16
19
# NOTE: This is defined in etc/kayobe/kolla-image-tags.yml.
17
20
kolla_image_tags :
18
21
{{ kolla_image_tags | to_nice_yaml | indent(width=4, first=true) }}
19
22
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
26
28
27
29
om_enable_rabbitmq_high_availability : true
28
30
You can’t perform that action at this time.
0 commit comments