Skip to content

Commit b81a95f

Browse files
authored
Merge pull request #345 from stackhpc/xena-wallaby-merge
xena: wallaby merge
2 parents 7e6b2d3 + 7189ed2 commit b81a95f

File tree

8 files changed

+33
-3
lines changed

8 files changed

+33
-3
lines changed

.github/workflows/stackhpc-container-image-build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,14 @@ jobs:
6767
sudo ip l set dummy1 up
6868
sudo ip l set dummy1 master breth1
6969
70+
# FIXME: Without this workaround we see the following issue after the runner is power cycled:
71+
# TASK [MichaelRigart.interfaces : RedHat | ensure network service is started and enabled] ***
72+
# Unable to start service network: Job for network.service failed because the control process exited with error code.
73+
# See \"systemctl status network.service\" and \"journalctl -xe\" for details.
74+
- name: Kill dhclient (workaround)
75+
run: |
76+
(sudo killall dhclient || true) && sudo systemctl restart network
77+
7078
- name: Install Kayobe
7179
run: |
7280
mkdir -p venvs &&

etc/kayobe/kolla.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,14 @@ kolla_build_blocks:
259259
&& grafana-cli plugins install grafana-piechart-panel
260260
ironic_inspector_header: |
261261
ADD additions-archive /
262+
nova_base_footer: |
263+
# Fix for https://bugs.launchpad.net/nova/+bug/1955035, i.e.
264+
# https://bugzilla.redhat.com/show_bug.cgi?id=2090752 on c8s
265+
{% raw %}
266+
{% if base_package_type == 'rpm' %}
267+
RUN sed -i 's/"pc-q35-rhel8.5.0"/"pc-q35-*"/' /usr/share/qemu/firmware/50-edk2-ovmf-cc.json
268+
{% endif %}
269+
{% endraw %}
262270
263271
# Dict mapping image customization variable names to their values.
264272
# Each variable takes the form:

etc/kayobe/kolla/globals.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ enable_docker_repo: {% raw %}"{{ 'overcloud' not in group_names or ansible_facts
1010
{% if kolla_base_distro == 'centos' %}
1111
bifrost_tag: xena-20221128T101757
1212
magnum_tag: xena-20230111T093652
13+
nova_tag: xena-20230120T115956
1314
rabbitmq_tag: xena-20230105T141714
1415
{% else %}
1516
bifrost_tag: xena-20221213T224057

etc/kayobe/pulp-repo-versions.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,9 @@ stackhpc_pulp_repo_rocky_8_6_baseos_version: 20220914T080246
2828
stackhpc_pulp_repo_rocky_8_6_extras_version: 20220904T041706
2929
stackhpc_pulp_repo_rocky_8_6_nfv_version: 20220918T035853
3030
stackhpc_pulp_repo_rocky_8_6_powertools_version: 20220918T035853
31+
stackhpc_pulp_repo_rocky_8_7_appstream_version: 20221201T192704
32+
stackhpc_pulp_repo_rocky_8_7_baseos_version: 20221202T032715
33+
stackhpc_pulp_repo_rocky_8_7_extras_version: 20221201T192704
34+
stackhpc_pulp_repo_rocky_8_7_nfv_version: 20221202T032715
35+
stackhpc_pulp_repo_rocky_8_7_powertools_version: 20221202T032715
3136
stackhpc_pulp_repo_mlnx_ofed_5_7_1_0_2_0_rhel8_6_version: 20220920T151419

etc/kayobe/pulp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ stackhpc_pulp_sync_centos_stream8: "{{ os_distribution == 'centos' }}"
179179

180180
# Whether to sync Rocky Linux 8 packages.
181181
stackhpc_pulp_sync_rocky_8: "{{ os_distribution == 'rocky' }}"
182-
# Rocky 8 minor version number. Supported values: 6.
183-
stackhpc_pulp_repo_rocky_8_minor_version: 6
182+
# Rocky 8 minor version number. Supported values: 6, 7
183+
stackhpc_pulp_repo_rocky_8_minor_version: 7
184184
# Rocky 8 Snapshot versions. The defaults use the appropriate version from
185185
# pulp-repo-versions.yml for the selected minor release.
186186
stackhpc_pulp_repo_rocky_8_appstream_version: "{{ lookup('vars', 'stackhpc_pulp_repo_rocky_8_%s_appstream_version' % stackhpc_pulp_repo_rocky_8_minor_version) }}"

releasenotes/notes/magnum-bump-tags-7841edcbd3da4b9c.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ fixes:
33
- |
44
Fixes CoreDNS for Magnum clusters crashing on startup.
55
- |
6-
Allows cinder-csi nodeplugin to start on the same Magnum cluster host as
6+
Allows cinder-csi nodeplugin to start on the same Magnum cluster host as
77
cinder-csi controllerplugin.
88
- |
99
Corrects ClusterRole rules for Magnum cluster-autoscaler, and sets
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
fixes:
3+
- |
4+
Fix creation of VM instances with UEFI enabled and Secure Boot disabled.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
features:
3+
- |
4+
Sync Rocky Linux 8.7 RPM repositories to local Pulp servers.

0 commit comments

Comments
 (0)