Files
phyllomeos/recipe-generator/recipes_manifest.yaml
T
Lukas Greve 81c8392874 refactor: Remove filename deduplication to generate all 24 variants
- Removed deduplication logic from cli.py
- All 24 variants now processed (some overwrite with same filename)
- manifests: Added comments explaining cartesian product and filename behavior
- tests: Updated assertions for correct filename generation order
- Added 3 new tests for guest_agents and hardware_support modifiers
2026-03-26 15:53:50 +01:00

87 lines
2.4 KiB
YAML

# Recipe Manifest for Phyllome OS
# Define all recipe variants using generators from recipe_templates.yaml
# Edit this file to add new variants, then run: make generate-recipes
#
# Supported syntax:
# - Single values: version: "43"
# - List values: version: ["43", "rawhide"] (expands to multiple variants)
# - List modifiers: hypervisor_type: ["amdcpu", "intelcpu"] (expands to separate variants)
#
# NOTE: List values create a cartesian product.
# Example: version: ["43", "rawhide"] + storage: ["standard", "encrypted"]
# creates 4 variants: (43,standard), (43,encrypted), (rawhide,standard), (rawhide,encrypted)
#
# NOTE: Boolean modifiers (guest-agents, hardware-support) only affect filename when True.
# Multiple variants with False values will produce the same filename (last one wins).
recipes:
# Install variants - desktop
- name: install
variants:
- name: desktop
version: ["43", "rawhide"]
desktop: gnome
storage: ["standard", "encrypted"]
bootloader: grub
hardware-support: [true, false]
guest-agents: [true, false]
initial-setup: server
security: secure
# Install variants - server
- name: install
variants:
- name: server
version: ["43", "rawhide"]
storage: standard
bootloader: grub
hardware-support: false
guest-agents: true
initial-setup: server
security: secure
# Install variants - server hypervisor
- name: install
variants:
- name: hypervisor
version: 43
storage: standard
bootloader: grub
hardware-support: true
guest-agents: false
hypervisor: base
hypervisor_type: ["amdcpu", "intelcpu"]
initial-setup: server
security: secure
# Install variants - desktop-hypervisor
- name: install
variants:
- name: hypervisor-desktop
version: 43
desktop: gnome
storage: standard
bootloader: grub
hardware-support: false
guest-agents: true
hypervisor: desktop
hypervisor_type: ["amdcpu", "intelcpu"]
initial-setup: server
security: secure
# Live variants - desktop
- name: live
variants:
- name: desktop
version: 43
hardware-support: true
guest-agents: false
# Live variants - server
- name: live
variants:
- name: server
version: 43
hardware-support: true
guest-agents: false