@@ -10,32 +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
- kayobe_image_tags :
14
- openstack :
15
- rocky : zed-rocky-9-20230921T153510
16
- ubuntu : zed-ubuntu-jammy-20230921T153510
17
- bifrost :
18
- rocky : zed-rocky-9-20230927T142529
19
- ubuntu : zed-ubuntu-jammy-20230927T154443
20
- ovn :
21
- rocky : zed-rocky-9-20230925T132313
22
- ubuntu : zed-ubuntu-jammy-20230821T155947
23
- cloudkitty :
24
- rocky : zed-rocky-9-20231114T124701
25
- ubuntu : zed-ubuntu-jammy-20231114T124701
26
- neutron :
27
- rocky : zed-rocky-9-20231115T094053
28
- ubuntu : zed-ubuntu-jammy-20231115T094053
29
- opensearch :
30
- rocky : zed-rocky-9-20231214T095452
31
- ubuntu : zed-ubuntu-jammy-20231214T095452
13
+ # Convenience variable for base distro and version string.
14
+ kolla_base_distro_and_version : " {% raw %}{{ kolla_base_distro }}-{{ kolla_base_distro_version }}{% endraw %}"
32
15
33
- openstack_tag : " {% raw %}{{ kayobe_image_tags['openstack'][kolla_base_distro] }}{% endraw %}"
34
- bifrost_tag : " {% raw %}{{ kayobe_image_tags['bifrost'][kolla_base_distro] }}{% endraw %}"
35
- ovn_tag : " {% raw %}{{ kayobe_image_tags['ovn'][kolla_base_distro] }}{% endraw %}"
36
- cloudkitty_tag : " {% raw %}{{ kayobe_image_tags['cloudkitty'][kolla_base_distro] }}{% endraw %}"
37
- neutron_tag : " {% raw %}{{ kayobe_image_tags['neutron'][kolla_base_distro] }}{% endraw %}"
38
- opensearch_tag : " {% raw %}{{ kayobe_image_tags['opensearch'][kolla_base_distro] }}{% endraw %}"
16
+ # Dict of Kolla image tags to deploy for each service.
17
+ # Each key is the tag variable prefix name, and the value is another dict,
18
+ # where the key is the OS distro and the value is the tag to deploy.
19
+ # NOTE: This is defined in etc/kayobe/kolla-image-tags.yml.
20
+ kolla_image_tags :
21
+ {{ kolla_image_tags | to_nice_yaml | indent(width=4, first=true) }}
22
+
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
39
28
40
29
om_enable_rabbitmq_high_availability : true
41
30
0 commit comments