- Move guest-agents from hypervisor modifier to independent optional feature - Merge guest-agents/gui.ks into base.ks - Remove security from required, add optional security modifier with off option - Fix hypervisor-type modifier key normalization (underscore→hyphen) - Add expand_variants() to handle list values in manifest - Update all tests and expected recipes
79 lines
2.2 KiB
YAML
79 lines
2.2 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)
|
|
|
|
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, 'off']
|
|
|
|
# Install variants - server
|
|
- name: install
|
|
variants:
|
|
- name: server
|
|
version: ["43", "rawhide"]
|
|
storage: ["standard", "encrypted"]
|
|
bootloader: grub
|
|
hardware-support: [true, false]
|
|
guest-agents: [true, false]
|
|
initial-setup: server
|
|
security: [secure, 'off']
|
|
|
|
# Install variants - server hypervisor
|
|
- name: install
|
|
variants:
|
|
- name: hypervisor
|
|
version: ["43", "rawhide"]
|
|
storage: ["standard", "encrypted"]
|
|
bootloader: grub
|
|
hardware-support: [true, false]
|
|
guest-agents: [true, false]
|
|
hypervisor: base
|
|
hypervisor-type: ["amdcpu", "intelcpu"]
|
|
initial-setup: server
|
|
security: [secure, 'off']
|
|
|
|
# Install variants - desktop-hypervisor
|
|
- name: install
|
|
variants:
|
|
- name: desktop-hypervisor
|
|
version: ["43", "rawhide"]
|
|
desktop: gnome
|
|
storage: ["standard", "encrypted"]
|
|
bootloader: grub
|
|
hardware-support: [true, false]
|
|
hypervisor: desktop
|
|
hypervisor-type: ["amdcpu", "intelcpu"]
|
|
initial-setup: server
|
|
security: [secure, 'off']
|
|
|
|
# Live variants - desktop
|
|
- name: live
|
|
variants:
|
|
- name: desktop
|
|
version: "rawhide"
|
|
hardware-support: [true, false]
|
|
guest-agents: [true, false]
|
|
|
|
# Live variants - server
|
|
- name: live
|
|
variants:
|
|
- name: server
|
|
version: "rawhide"
|
|
hardware-support: [true, false]
|
|
guest-agents: [true, false]
|