File tree Expand file tree Collapse file tree 6 files changed +37
-10
lines changed Expand file tree Collapse file tree 6 files changed +37
-10
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ cephadm_ceph_release: "quincy"
12
12
cephadm_image : " {{ stackhpc_docker_registry if stackhpc_sync_ceph_images | bool else 'quay.io' }}/ceph/ceph:{{ cephadm_image_tag }}"
13
13
14
14
# Ceph container image tag.
15
- cephadm_image_tag : " v17.2.6 "
15
+ cephadm_image_tag : " v17.2.7 "
16
16
17
17
# Ceph custom repo workaround for Ubuntu Jammy as there are no official ceph repos for jammy.
18
18
cephadm_custom_repos : " {{ ansible_facts['distribution_release'] == 'jammy' }}"
Original file line number Diff line number Diff line change @@ -289,18 +289,22 @@ kolla_build_blocks:
289
289
{% if stackhpc_kolla_clean_up_repo_mirrors | bool %}
290
290
{% if kolla_base_distro == 'rocky' %}
291
291
RUN \
292
- tar -xzf /etc/yum.repos.d.backup/repos.tar.gz -C /etc/yum.repos.d && \
293
- if grep -r '{{ stackhpc_repo_mirror_url }}' /etc/yum.repos.d; then \
294
- echo "Found repository mirror in Yum repositories"; \
295
- exit 1; \
292
+ if [ -f /etc/yum.repos.d.backup/repos.tar.gz ]; then \
293
+ tar -xzf /etc/yum.repos.d.backup/repos.tar.gz -C /etc/yum.repos.d && \
294
+ rm -rf /etc/yum.repos.d.backup/; \
296
295
fi && \
297
- rm -rf /etc/yum.repos.d.backup/
296
+ if grep -r '{{ stackhpc_repo_mirror_url }}' /etc/yum.repos.d; then \
297
+ echo "Found repository mirror in Yum repositories"; \
298
+ exit 1; \
299
+ fi
298
300
{% else %}
299
301
RUN \
300
- mv /etc/apt/sources.list.backup /etc/apt/sources.list && \
302
+ if [ -f /etc/apt/sources.list.backup ]; then \
303
+ mv /etc/apt/sources.list.backup /etc/apt/sources.list; \
304
+ fi && \
301
305
if grep -r '{{ stackhpc_repo_mirror_url }}' /etc/apt/sources.list; then \
302
- echo "Found repository mirror in APT repositories"; \
303
- exit 1; \
306
+ echo "Found repository mirror in APT repositories"; \
307
+ exit 1; \
304
308
fi
305
309
{% endif %}
306
310
{% endif %}
Original file line number Diff line number Diff line change @@ -23,11 +23,15 @@ kayobe_image_tags:
23
23
cloudkitty :
24
24
rocky : zed-rocky-9-20231114T124701
25
25
ubuntu : zed-ubuntu-jammy-20231114T124701
26
+ neutron :
27
+ rocky : zed-rocky-9-20231115T094053
28
+ ubuntu : zed-ubuntu-jammy-20231115T094053
26
29
27
30
openstack_tag : " {% raw %}{{ kayobe_image_tags['openstack'][kolla_base_distro] }}{% endraw %}"
28
31
bifrost_tag : " {% raw %}{{ kayobe_image_tags['bifrost'][kolla_base_distro] }}{% endraw %}"
29
32
ovn_tag : " {% raw %}{{ kayobe_image_tags['ovn'][kolla_base_distro] }}{% endraw %}"
30
- cliudkitty_tag : " {% raw %}{{ kayobe_image_tags['cloudkitty'][kolla_base_distro] }}{% endraw %}"
33
+ cloudkitty_tag : " {% raw %}{{ kayobe_image_tags['cloudkitty'][kolla_base_distro] }}{% endraw %}"
34
+ neutron_tag : " {% raw %}{{ kayobe_image_tags['neutron'][kolla_base_distro] }}{% endraw %}"
31
35
32
36
om_enable_rabbitmq_high_availability : true
33
37
Original file line number Diff line number Diff line change
1
+ ---
2
+ upgrade :
3
+ - |
4
+ Updates default Ceph images to v17.2.7 for Quincy.
Original file line number Diff line number Diff line change
1
+ ---
2
+ fixes :
3
+ - |
4
+ Fixes Neutron so that load balancer FIPs are not broken on Neutron restart.
5
+ See `Neutron bug report
6
+ <https://bugs.launchpad.net/neutron/+bug/2042938>`__.
Original file line number Diff line number Diff line change
1
+ ---
2
+ fixes :
3
+ - |
4
+ Fixes issue where Netmiko devices were sending no commands to the switch
5
+ since plug_bond_to_network is overridden in
6
+ networking_generic_switch/devices/netmiko_devices/init.py and
7
+ PLUG_BOND_TO_NETWORK to set to None.
8
+ See `NGS bug report
9
+ <https://bugs.launchpad.net/networking-generic-switch/+bug/2041516>`__.
You can’t perform that action at this time.
0 commit comments