Skip to content

Commit be0d64e

Browse files
authored
Merge pull request #783 from stackhpc/zed-yoga-merge
zed: yoga merge
2 parents 4c90382 + 0c23140 commit be0d64e

6 files changed

+37
-10
lines changed

etc/kayobe/cephadm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cephadm_ceph_release: "quincy"
1212
cephadm_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.
1818
cephadm_custom_repos: "{{ ansible_facts['distribution_release'] == 'jammy' }}"

etc/kayobe/kolla.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff 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 %}

etc/kayobe/kolla/globals.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

2730
openstack_tag: "{% raw %}{{ kayobe_image_tags['openstack'][kolla_base_distro] }}{% endraw %}"
2831
bifrost_tag: "{% raw %}{{ kayobe_image_tags['bifrost'][kolla_base_distro] }}{% endraw %}"
2932
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 %}"
3135

3236
om_enable_rabbitmq_high_availability: true
3337

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
upgrade:
3+
- |
4+
Updates default Ceph images to v17.2.7 for Quincy.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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>`__.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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>`__.

0 commit comments

Comments
 (0)