Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog/bugfixes/2026-01-28-proxmoxve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixed static network configuration from cloud-init on ProxmoxVE ([flatcar/scripts#3677](https://github.com/flatcar/scripts/pull/3677))
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
From c44cfb1ab432ca26cd6498057f45d9d669418d8f Mon Sep 17 00:00:00 2001
From: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
Date: Wed, 28 Jan 2026 16:13:44 +0100
Subject: [PATCH] afterburn: sync network kars with supported provider

There is now a support for ProxmoxVE and Kubevirt:
https://github.com/coreos/afterburn/blob/8f6d5877c96b4d974f18a4782e6e275efdbd94d6/src/initrd/mod.rs#L20-L24

Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
---
dracut/50flatcar-network/afterburn-network-kargs.service | 5 +++++
1 file changed, 5 insertions(+)

diff --git a/dracut/50flatcar-network/afterburn-network-kargs.service b/dracut/50flatcar-network/afterburn-network-kargs.service
index a382e59..f01fd5b 100644
--- a/dracut/50flatcar-network/afterburn-network-kargs.service
+++ b/dracut/50flatcar-network/afterburn-network-kargs.service
@@ -10,6 +10,11 @@ PartOf=systemd-networkd.service
# For extra safety
ConditionKernelCommandLine=|coreos.oem.id=vmware
ConditionKernelCommandLine=|flatcar.oem.id=vmware
+ConditionKernelCommandLine=|coreos.oem.id=proxmoxve
+ConditionKernelCommandLine=|flatcar.oem.id=proxmoxve
+ConditionKernelCommandLine=|coreos.oem.id=kubevirt
+ConditionKernelCommandLine=|flatcar.oem.id=kubevirt
+
OnFailure=emergency.target
OnFailureJobMode=replace-irreversibly

--
2.53.0