Skip to content

Commit 653c886

Browse files
committed
Move Kolla image tags to a separate file
This will make it easier to automate various tasks.
1 parent 5b2b98b commit 653c886

File tree

2 files changed

+29
-19
lines changed

2 files changed

+29
-19
lines changed

etc/kayobe/kolla-image-tags.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

etc/kayobe/kolla/globals.yml

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,12 @@ enable_docker_repo: "{% raw %}{{ 'overcloud' not in group_names }}{% endraw %}"
1010
# This is necessary for os migrations where mixed clouds might be deployed
1111
kolla_base_distro: "{% raw %}{{ ansible_facts.distribution | lower }}{% endraw %}"
1212

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) }}
3219

3320
openstack_tag: "{% raw %}{{ kayobe_image_tags['openstack'][kolla_base_distro] }}{% endraw %}"
3421
bifrost_tag: "{% raw %}{{ kayobe_image_tags['bifrost'][kolla_base_distro] }}{% endraw %}"

0 commit comments

Comments
 (0)