kickstarts/cloud
Louis Abel a9a0b15b3a remove system.devices from lvm variants (#9) (#10)
Potential PR for issue #9

Co-authored-by: Louis Abel <label@rockylinux.org>
Reviewed-on: sig_core/kickstarts#10
Co-authored-by: Louis Abel <label@noreply@resf.org>
Co-committed-by: Louis Abel <label@noreply@resf.org>
2023-04-27 01:17:08 +00:00
..
README.md Renames and readmes 2023-04-12 23:48:02 -07:00
rocky-azure-base.ks add additional comment to avoid overwrites 2023-02-03 09:34:07 -07:00
rocky-azure-lvm.ks remove system.devices from lvm variants (#9) (#10) 2023-04-27 01:17:08 +00:00
rocky-cloud-azure-packages.ks add templates for 9 2022-11-22 12:46:42 -07:00
rocky-cloud-base-packages.ks add templates for 9 2022-11-22 12:46:42 -07:00
rocky-cloud-base.ks add templates for 9 2022-11-22 12:46:42 -07:00
rocky-cloud-ocp-packages.ks actually install oci-utils 2022-12-11 12:48:24 -05:00
rocky-cloud-parts-base.ks add %pre to base images 2023-03-22 14:15:52 -07:00
rocky-cloud-parts-lvm.ks set onparts 2023-01-26 14:33:22 -07:00
rocky-ec2-base.ks add additional comment to avoid overwrites 2023-02-03 09:34:07 -07:00
rocky-ec2-lvm.ks remove system.devices from lvm variants (#9) (#10) 2023-04-27 01:17:08 +00:00
rocky-genclo-base.ks add additional comment to avoid overwrites 2023-02-03 09:34:07 -07:00
rocky-genclo-lvm.ks remove system.devices from lvm variants (#9) (#10) 2023-04-27 01:17:08 +00:00
rocky-ocp-base.ks remove system.devices from lvm variants (#9) (#10) 2023-04-27 01:17:08 +00:00
rocky-ocp.ks update templates for OCP 2023-04-10 18:11:48 -07:00

README.md

Cloud Templates

This directory contains templated versions of the cloud images. This is extremely useful for us to be able to create more variants or modify all variants at once if need be.

The general guidelines/ideas work like this:

  • Start with a basic name, such as rocky-${provider}-${variant}.ks

  • Optionally create additional kickstarts, such as an additional packages file

  • Include the very base as necessary:

    • rocky-cloud-base.ks
    • rocky-cloud-parts-base.ks or rocky-cloud-parts-lvm.ks
  • Include other customizations from another kickstart as necessary, such as an additional packages kickstart

  • bootloader configuration and then final %post ... %end section

The most basic example of our most basic generic cloud image goes like this. See comments for details.

# rocky-genclo-base.ks

# Imports the absolute base for the cloud images. This is general setup settings.
%include rocky-cloud-base.ks

# Imports partition scheme and creation for the image. This is non-LVM.
%include rocky-cloud-parts-base.ks

# Imports base packages that all cloud images are expected to have
%include rocky-cloud-base-packages.ks

# bootloader information, each cloud will have different settings, so better we put it here.
bootloader --append="console=ttyS0,115200n8 no_timer_check crashkernel=auto net.ifnames=0" --location=mbr --timeout=1

# Anything else can go here that isn't fulfilled by custom or base templates.
# This can be repos if needed.

# the final post section is done here (we've removed all of it for the sake of the example)
%post --erroronfail
. . .
%end

At the end, you would run run ksflatten, and you now have a customized kickstart.

ksflatten -c rocky-genclo-base.ks -o Rocky-X-GenericCloud-Base.ks