Provide a comment only etc/kiwi.yml file that contains all parameters we support so far including a short description This Fixes #1232
120 lines
4.2 KiB
YAML
120 lines
4.2 KiB
YAML
# KIWI - Build configuration file
|
|
#
|
|
# Below all configuration parameters available to control
|
|
# KIWI's build process are listed as comments. The values
|
|
# used here provides the default values applied by KIWI if
|
|
# no other information is specified.
|
|
#
|
|
# To make any of the below effective, please uncomment the
|
|
# respective section(s) and adapt the parameters according
|
|
# to your needs
|
|
#
|
|
|
|
# Setup access options for the Open BuildService
|
|
#obs:
|
|
# # Specify the URL of the Open BuildService download server
|
|
# - download_url: http://download.opensuse.org/repositories
|
|
# # Specify if the BuildService download server is public or private.
|
|
# # This information is used to verify if the request to populate
|
|
# # the repositories via the imageinclude attribute is possible
|
|
# - public: true
|
|
|
|
|
|
# Setup behaviour of the kiwi result bundle command
|
|
#bundle:
|
|
# # Specify if the bundle tarball should contain compressed results.
|
|
# # Note: already compressed result information will not be touched
|
|
# - compress: false
|
|
|
|
|
|
# Setup behaviour of XZ compressor
|
|
#xz:
|
|
# # Specify options used in any xz compression call
|
|
# - options:
|
|
# - '--threads=0'
|
|
|
|
|
|
# Setup process parameters for container image creation
|
|
#container:
|
|
# # Specify compression algorithm for container images
|
|
# # Possible values are xz or none
|
|
# - compress: xz
|
|
|
|
|
|
# Setup process parameters for ISO image creation
|
|
#iso:
|
|
# # Specify tool category which should be used to build iso images
|
|
# # Possible values are cdrtools or xorriso
|
|
# - tool_category: xorriso
|
|
|
|
|
|
# Setup process parameters for OCI toolchain
|
|
#oci:
|
|
# # Specify OCI archive tool which should be used on creation of
|
|
# # container archives for OCI compliant images, e.g docker
|
|
# # Possible values are umoci and buildah
|
|
# - archive_tool: umoci
|
|
|
|
|
|
# Specify build constraints that applies during the image build
|
|
# process. If one or more constraints are violated the build exits
|
|
# with an appropriate error message.
|
|
#build_constraints:
|
|
# # Maximum result image size. The value can be specified in
|
|
# # bytes or it can be specified with m=MB or g=GB. The constraint
|
|
# # is checked prior to the result bundle creation
|
|
# - max_size: 700m
|
|
|
|
|
|
# Setup process parameters to handle runtime checks
|
|
#runtime_checks:
|
|
# # Specify list of runtime checks to disable
|
|
# - disable:
|
|
# # verify that the host has the required container tools installed
|
|
# - check_container_tool_chain_installed
|
|
|
|
# # verify that there are repositories configured
|
|
# - check_repositories_configured
|
|
|
|
# # verify that the URL for imageinclude repos is accessable
|
|
# - check_image_include_repos_publicly_resolvable
|
|
|
|
# # verify secure boot setup disabled for overlay configured disk images
|
|
# - check_efi_mode_for_disk_overlay_correctly_setup
|
|
|
|
# # verify for legacy kiwi boot images that they exist on the host
|
|
# - check_boot_description_exists
|
|
|
|
# # verify for legacy kiwi boot images that the same kernel is used
|
|
# - check_consistent_kernel_in_boot_and_system_image
|
|
|
|
# # verify only one full size volume is specified for LVM images
|
|
# - check_volume_setup_defines_multiple_fullsize_volumes
|
|
|
|
# # verify no / volume setup is setup but the @root volume is used
|
|
# - check_volume_setup_has_no_root_definition
|
|
|
|
# # verify if volume label is really used with a volume setup
|
|
# - check_volume_label_used_with_lvm
|
|
|
|
# # verify that there is a xen domain setup for xen images
|
|
# - check_xen_uniquely_setup_as_server_or_guest
|
|
|
|
# # verify mediacheck is installed for ISO images that requests it
|
|
# - check_mediacheck_installed
|
|
|
|
# # verify dracut-kiwi-live is installed for ISO images
|
|
# - check_dracut_module_for_live_iso_in_package_list
|
|
|
|
# # verify dracut-kiwi-overlay is installed for overlay disk images
|
|
# - check_dracut_module_for_disk_overlay_in_package_list
|
|
|
|
# # verify dracut-kiwi-repart is installed for OEM disk images
|
|
# - check_dracut_module_for_disk_oem_in_package_list
|
|
|
|
# # verify dracut-kiwi-oem-dump is installed for OEM install images
|
|
# - check_dracut_module_for_oem_install_in_package_list
|
|
|
|
# # verify configured firmware is compatible with host architecture
|
|
# - check_architecture_supports_iso_firmware_setup
|