base-images/minimal/manifest.yaml
Colin Walters aceec4e3e6 Stop removing systemd-gpt-auto-generator
This has a LONG history dating back to this one forking from
Fedora CoreOS, which has a custom partitioning setup designed
for Ignition.

As this is a generic base image, I don't think we should
keep that. We do want to support having the generator
for those that want it.

Out of conservatism I'll send a patch for FCOS to keep
disabling it.

Signed-off-by: Colin Walters <walters@verbum.org>
2025-10-19 17:34:23 -04:00

45 lines
1.3 KiB
YAML

metadata:
summary: Effectively just bootc, systemd, kernel, and dnf as a starting point.
edition: "2024"
variables:
passwd_mode: full
# Be minimal
recommends: false
# Default to `bash` in our container, the same as other containers we ship.
container-cmd:
- /sbin/init
remove-from-packages:
# Generally we expect other tools to do this (e.g. Ignition or cloud-init)
- [systemd, /usr/lib/systemd/system/sysinit.target.wants/systemd-firstboot.service]
include:
- kernel.yaml
- postprocess-conf.yaml
- tmpfiles.yaml
- bootc.yaml
- bootupd.yaml
- ostree.yaml
- initramfs.yaml
- basic-fixes.yaml
- kernel-install.yaml
- systemd-presets.yaml
packages:
# this is implied by dependencies but let's make it explicit
- coreutils
# We need dnf for building derived container images. In Fedora, this pulls
# in dnf5. In CentOS/RHEL, this pulls in dnf(4). We can simplify this back to
# just `dnf` once the `dnf` package is retired from Fedora.
- /usr/bin/dnf
# Even in minimal, we have this. If you don't want SELinux today, you'll need
# to build a custom image.
- selinux-policy-targeted
# And we want container-selinux because trying to layer it on later currently causes issues.
- container-selinux
# Needed for tpm2 bound luks
- tpm2-tools