Clean up directory structure and automate dns with ansible

This commit is contained in:
2025-03-22 13:34:41 -05:00
parent 9a5b008632
commit e7f3505370
26 changed files with 31 additions and 2023 deletions

View File

@@ -0,0 +1,16 @@
// Fedora CoreOS profile
resource "matchbox_profile" "openshift-agent-install" {
name = "hub"
kernel = "/assets/hub/agent.x86_64-vmlinuz"
initrd = [
"--name initrd /assets/hub/agent.x86_64-initrd.img"
]
args = [
"initrd=initrd",
"coreos.live.rootfs_url=${var.matchbox_http_endpoint}/assets/hub/agent.x86_64-rootfs.img",
"rw",
"ignition.firstboot",
"ignition.platform.id=metal",
]
}