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"
1212cephadm_image : " {{ stackhpc_docker_registry if stackhpc_sync_ceph_images | bool else 'quay.io' }}/ceph/ceph:{{ cephadm_image_tag }}"
1313
1414# Ceph container image tag.
15- cephadm_image_tag : " v17.2.6 "
15+ cephadm_image_tag : " v17.2.7 "
1616
1717# Ceph custom repo workaround for Ubuntu Jammy as there are no official ceph repos for jammy.
1818cephadm_custom_repos : " {{ ansible_facts['distribution_release'] == 'jammy' }}"
Original file line number Diff line number Diff line change @@ -289,18 +289,22 @@ kolla_build_blocks:
289289 {% if stackhpc_kolla_clean_up_repo_mirrors | bool %}
290290 {% if kolla_base_distro == 'rocky' %}
291291 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/; \
296295 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
298300 {% else %}
299301 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 && \
301305 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; \
304308 fi
305309 {% endif %}
306310 {% endif %}
Original file line number Diff line number Diff line change @@ -23,11 +23,15 @@ kayobe_image_tags:
2323 cloudkitty :
2424 rocky : zed-rocky-9-20231114T124701
2525 ubuntu : zed-ubuntu-jammy-20231114T124701
26+ neutron :
27+ rocky : zed-rocky-9-20231115T094053
28+ ubuntu : zed-ubuntu-jammy-20231115T094053
2629
2730openstack_tag : " {% raw %}{{ kayobe_image_tags['openstack'][kolla_base_distro] }}{% endraw %}"
2831bifrost_tag : " {% raw %}{{ kayobe_image_tags['bifrost'][kolla_base_distro] }}{% endraw %}"
2932ovn_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 %}"
3135
3236om_enable_rabbitmq_high_availability : true
3337
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