From 2f05a453f6754e76ffab29a10afca139f889d862 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Fri, 15 Jul 2022 11:07:11 -0400 Subject: [PATCH] Drop legacy Fedora CoreOS kernel arguments rd.neednet=1 is no longer needed by default. Also, stop disabling cgroups v2. --- docs/getting-started.md | 1 - examples/profiles/fedora-coreos.json | 1 - examples/terraform/fedora-coreos-install/profiles.tf | 1 - 3 files changed, 3 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index b3696bc5..4e747d31 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -104,7 +104,6 @@ resource "matchbox_profile" "fedora-coreos-install" { args = [ "coreos.live.rootfs_url=https://builds.coreos.fedoraproject.org/prod/streams/${var.os_stream}/builds/${var.os_version}/x86_64/fedora-coreos-${var.os_version}-live-rootfs.x86_64.img", - "rd.neednet=1", "coreos.inst.install_dev=/dev/sda", "coreos.inst.ignition_url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", "console=tty0", diff --git a/examples/profiles/fedora-coreos.json b/examples/profiles/fedora-coreos.json index eaa55355..8bd7ecfd 100644 --- a/examples/profiles/fedora-coreos.json +++ b/examples/profiles/fedora-coreos.json @@ -11,7 +11,6 @@ "ignition.firstboot", "ignition.platform.id=metal", "ignition.config.url=http://matchbox.example.com:8080/ignition?uuid=${uuid}&mac=${mac:hexhyp}", - "systemd.unified_cgroup_hierarchy=0", "console=tty0", "console=ttyS0" ] diff --git a/examples/terraform/fedora-coreos-install/profiles.tf b/examples/terraform/fedora-coreos-install/profiles.tf index acf02b6d..dfa73ca9 100644 --- a/examples/terraform/fedora-coreos-install/profiles.tf +++ b/examples/terraform/fedora-coreos-install/profiles.tf @@ -8,7 +8,6 @@ resource "matchbox_profile" "fedora-coreos-install" { args = [ "coreos.live.rootfs_url=https://builds.coreos.fedoraproject.org/prod/streams/${var.os_stream}/builds/${var.os_version}/x86_64/fedora-coreos-${var.os_version}-live-rootfs.x86_64.img", - "rd.neednet=1", "coreos.inst.install_dev=/dev/sda", "coreos.inst.ignition_url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", "console=tty0",