2020-08-21 10:36:02 +00:00
|
|
|
# This files overrides default variables defined in the configs in
|
|
|
|
# the ../shared directory.
|
|
|
|
|
|
|
|
# Fedora signing keys.
|
2023-08-08 22:03:04 +00:00
|
|
|
sigkeys = ['a15B79cc']
|
2020-08-21 10:36:02 +00:00
|
|
|
|
2022-06-15 15:04:23 +00:00
|
|
|
# Architectures supported by Fedora ELN.
|
|
|
|
tree_arches = ['aarch64', 'ppc64le', 's390x', 'x86_64']
|
2020-08-21 10:36:02 +00:00
|
|
|
|
|
|
|
# For Fedora-ELN, we do not inherit builds from parent tags.
|
|
|
|
pkgset_koji_inherit = False
|
|
|
|
|
|
|
|
# No jigdo needed in Fedora.
|
|
|
|
create_jigdo = False
|
|
|
|
|
2020-10-26 13:48:48 +00:00
|
|
|
# We only build repositories, installer and images in Fedora so far.
|
2020-08-21 10:36:02 +00:00
|
|
|
skip_phases = [
|
|
|
|
"createiso",
|
|
|
|
"live_media",
|
|
|
|
"live_images",
|
|
|
|
"ostree",
|
|
|
|
"osbs",
|
|
|
|
]
|
|
|
|
|
|
|
|
# Enables macboot on x86_64 for all variants and disables upgrade image building
|
|
|
|
# everywhere.
|
|
|
|
# Use 3GB image size for all arches.
|
|
|
|
lorax_options = [
|
|
|
|
('^.*$', {
|
|
|
|
'x86_64': {
|
|
|
|
'nomacboot': True
|
|
|
|
},
|
|
|
|
'*': {
|
|
|
|
'noupgrade': True,
|
2021-05-17 13:54:36 +00:00
|
|
|
'rootfs_size': 3
|
2020-08-21 10:36:02 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
]
|
|
|
|
|
|
|
|
# Drop the variants we do not care about from the variant_as_lookaside.
|
|
|
|
variant_as_lookaside = [
|
|
|
|
("AppStream", "BaseOS"),
|
2022-05-25 15:27:49 +00:00
|
|
|
("Extras", "BaseOS"),
|
|
|
|
("Extras", "AppStream"),
|
|
|
|
("HighAvailability", "BaseOS"),
|
|
|
|
("HighAvailability", "AppStream"),
|
|
|
|
("ResilientStorage", "BaseOS"),
|
|
|
|
("ResilientStorage", "AppStream"),
|
|
|
|
("RT", "BaseOS"),
|
|
|
|
("RT", "AppStream"),
|
|
|
|
("NFV", "BaseOS"),
|
|
|
|
("NFV", "AppStream"),
|
|
|
|
("CRB", "BaseOS"),
|
|
|
|
("CRB", "AppStream"),
|
|
|
|
("SAP", "BaseOS"),
|
|
|
|
("SAP", "AppStream"),
|
|
|
|
("SAP", "HighAvailability"),
|
|
|
|
("SAPHANA", "BaseOS"),
|
|
|
|
("SAPHANA", "AppStream"),
|
|
|
|
("SAPHANA", "HighAvailability"),
|
2020-08-21 10:36:02 +00:00
|
|
|
]
|
|
|
|
|
2020-08-31 11:51:22 +00:00
|
|
|
# No product_id for Fedora.
|
|
|
|
product_id_allow_missing = False
|
|
|
|
|
2020-09-11 12:05:09 +00:00
|
|
|
# These will be inherited by live_media, live_images and image_build
|
|
|
|
global_ksurl = 'git+https://pagure.io/fedora-kickstarts.git?#HEAD'
|
|
|
|
global_release = '!RELEASE_FROM_LABEL_DATE_TYPE_RESPIN'
|
|
|
|
global_version = 'ELN'
|
|
|
|
# live_images ignores this in favor of live_target
|
|
|
|
global_target = 'eln'
|
|
|
|
|
|
|
|
translate_paths = [ # required by image-build
|
|
|
|
("/srv/odcs", "https://odcs.fedoraproject.org/composes"),
|
|
|
|
]
|
|
|
|
|
|
|
|
image_build = {
|
2020-09-16 10:35:45 +00:00
|
|
|
"^BaseOS$": [
|
|
|
|
{
|
|
|
|
"image-build": {
|
|
|
|
"format": [("qcow2", "qcow2")],
|
|
|
|
"name": "Fedora-ELN-Guest",
|
|
|
|
"version": "9.0",
|
|
|
|
"kickstart": "fedora-eln-guest.ks",
|
|
|
|
"ksversion": "F26",
|
|
|
|
"distro": "Fedora-20",
|
|
|
|
"disk-size": "10",
|
2022-10-20 18:44:17 +00:00
|
|
|
"arches": ["x86_64", "aarch64"],
|
2020-09-16 10:35:45 +00:00
|
|
|
'install_tree_from': 'BaseOS',
|
2022-06-10 17:05:02 +00:00
|
|
|
"repo": ["BaseOS","AppStream","CRB"],
|
2022-12-01 16:08:51 +00:00
|
|
|
"subvariant": "generic",
|
2020-09-16 10:35:45 +00:00
|
|
|
"failable": ["*"],
|
|
|
|
},
|
|
|
|
"factory-parameters": {
|
|
|
|
"generate_icicle": False,
|
|
|
|
}
|
2022-06-10 17:05:02 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('docker', 'tar.xz')],
|
|
|
|
'name': 'Fedora-Container-Base',
|
|
|
|
'kickstart': 'fedora-eln-container-base.ks',
|
|
|
|
'distro': 'Fedora-22',
|
|
|
|
'disk_size': 10,
|
|
|
|
'repo': ["BaseOS","AppStream","CRB"],
|
2022-06-15 18:42:53 +00:00
|
|
|
'install_tree_from': 'BaseOS',
|
2022-06-10 17:05:02 +00:00
|
|
|
'subvariant': 'Container_Base',
|
|
|
|
'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'],
|
|
|
|
'failable': ['*'],
|
|
|
|
},
|
|
|
|
'factory-parameters': {
|
|
|
|
'dockerversion': "1.10.1",
|
|
|
|
'docker_cmd': '[ "/bin/bash" ]',
|
|
|
|
'docker_env': '[ "DISTTAG=elncontainer", "FGC=eln", "container=oci" ]',
|
|
|
|
'docker_label': '{ "name": "fedora-eln", "license": "MIT", "vendor": "Fedora Project", "version": "eln"}',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2020-09-11 12:05:09 +00:00
|
|
|
}
|
|
|
|
|