1
0
mirror of https://github.com/coreos/fedora-coreos-config.git synced 2026-02-05 09:45:30 +01:00

manifests: create a shared-el.yaml manifest

This manifest will include any misc shared bits with our enterprise
linux downstream builds. It will dynamically pick up el9 or el10
specific snippets using conditional includes.

This is prep for adding snippets that we can share with both el9 and
el10 and not just one or the other.
This commit is contained in:
Dusty Mabe
2025-05-19 09:08:59 -04:00
parent 54d81e680a
commit 48b42383d2
2 changed files with 16 additions and 2 deletions

View File

@@ -17,8 +17,7 @@ include:
- file-transfer.yaml
- networking-tools.yaml
- user-experience.yaml
- shared-el9.yaml
- shared-el10.yaml
- shared-el.yaml
- coreos-bootc-minimal-plus.yaml
ostree-layers:

15
manifests/shared-el.yaml Normal file
View File

@@ -0,0 +1,15 @@
conditional-include:
# Include shared-el9 workarounds on Fedora and EL9
- if: id == "fedora"
include: shared-el9.yaml
- if: osversion == "rhel-9.6"
include: shared-el9.yaml
- if: osversion == "centos-9"
include: shared-el9.yaml
# Include shared-el10 workarounds on Fedora and EL10
- if: id == "fedora"
include: shared-el10.yaml
- if: osversion == "rhel-10.1"
include: shared-el10.yaml
- if: osversion == "centos-10"
include: shared-el10.yaml