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",