File tree Expand file tree Collapse file tree 2 files changed +29
-19
lines changed Expand file tree Collapse file tree 2 files changed +29
-19
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ # Dict of Kolla image tags to deploy for each service.
3
+ # Each key is the tag variable prefix name, and the value is another dict,
4
+ # where the key is the OS distro and the value is the tag to deploy.
5
+ kolla_image_tags :
6
+ openstack :
7
+ rocky : zed-rocky-9-20230921T153510
8
+ ubuntu : zed-ubuntu-jammy-20230921T153510
9
+ bifrost :
10
+ rocky : zed-rocky-9-20230927T142529
11
+ ubuntu : zed-ubuntu-jammy-20230927T154443
12
+ ovn :
13
+ rocky : zed-rocky-9-20230925T132313
14
+ ubuntu : zed-ubuntu-jammy-20230821T155947
15
+ cloudkitty :
16
+ rocky : zed-rocky-9-20231114T124701
17
+ ubuntu : zed-ubuntu-jammy-20231114T124701
18
+ neutron :
19
+ rocky : zed-rocky-9-20231115T094053
20
+ ubuntu : zed-ubuntu-jammy-20231115T094053
21
+ opensearch :
22
+ rocky : zed-rocky-9-20231214T095452
23
+ ubuntu : zed-ubuntu-jammy-20231214T095452
Original file line number Diff line number Diff line change @@ -10,25 +10,12 @@ 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
+ # Dict of Kolla image tags to deploy for each service.
14
+ # Each key is the tag variable prefix name, and the value is another dict,
15
+ # where the key is the OS distro and the value is the tag to deploy.
16
+ # NOTE: This is defined in etc/kayobe/kolla-image-tags.yml.
17
+ kolla_image_tags :
18
+ {{ kolla_image_tags | to_nice_yaml | indent(width=4, first=true) }}
32
19
33
20
openstack_tag : " {% raw %}{{ kayobe_image_tags['openstack'][kolla_base_distro] }}{% endraw %}"
34
21
bifrost_tag : " {% raw %}{{ kayobe_image_tags['bifrost'][kolla_base_distro] }}{% endraw %}"
You can’t perform that action at this time.
0 commit comments