From c48927d54e9e22eaf57460b080e747059b9a4e93 Mon Sep 17 00:00:00 2001 From: Gregory Giguashvili Date: Tue, 25 Nov 2025 13:24:43 +0200 Subject: [PATCH 1/2] RPM post-install should not explicitly install systemd-resolved --- src/rpm/postinstall.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rpm/postinstall.sh b/src/rpm/postinstall.sh index 4dbcb0e8..0687c5e9 100755 --- a/src/rpm/postinstall.sh +++ b/src/rpm/postinstall.sh @@ -36,8 +36,7 @@ if [ "$(id -u)" -ne 0 ]; then fi # Configure network and add some useful utilities -dnf install -y firewalld systemd-resolved \ - jq bash-completion +dnf install -y firewalld jq bash-completion firewall-offline-cmd --zone=trusted --add-source=10.42.0.0/16 firewall-offline-cmd --zone=trusted --add-source=169.254.169.1 # Multinode clusters require connectivity on both apiserver and etcd @@ -54,7 +53,8 @@ EOF # With kindnet present: # - No need for openvswitch service which is enabled by default once MicroShift # is installed. Disable the service to avoid the need to configure it. -# - Need to disable systemd-resolved service to allow proper host name resolution. +# - Need to disable systemd-resolved service to allow proper host name resolution +# in Bootc containers running in privileged mode. # - May need to install the containernetworking-plugins package from the package # GitHub release page (e.g. CentOS 10). if rpm -q microshift-kindnet &>/dev/null; then From 81807d8881f6d2485bd7d592447583697982305b Mon Sep 17 00:00:00 2001 From: Gregory Giguashvili Date: Tue, 25 Nov 2025 16:15:07 +0200 Subject: [PATCH 2/2] Fall back to Fedora 42 in builders.yaml --- .github/workflows/builders.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/builders.yaml b/.github/workflows/builders.yaml index 1fe5d56f..304e2ef7 100644 --- a/.github/workflows/builders.yaml +++ b/.github/workflows/builders.yaml @@ -67,7 +67,7 @@ jobs: ushift-branch: main okd-version-tag: ${{ steps.detect-okd-version.outputs.okd-version-tag }} bootc-image-url: registry.fedoraproject.org/fedora-bootc - bootc-image-tag: latest + bootc-image-tag: 42 build: bootc-image node-count: 2