Set disk_size to 10.

Signed-off-by: Jan Kaluza <jkaluza@redhat.com>
This commit is contained in:
Jan Kaluza 2020-09-22 15:52:49 +02:00
parent 86424911d8
commit f534c08d40

View File

@ -50,12 +50,14 @@ buildinstall_skip = [
]
# Add the rawhide repository for missing packages
# TODO: Once we have all the packages built in ELN repos,
# we must remove this completely.
lorax_extra_sources = [
# ('^Everything$', {
# '*': 'https://kojipkgs.fedoraproject.org/repos/f33-build/latest/$basearch/',
# }),
('^Everything$', {
'*': 'https://kojipkgs.fedoraproject.org/repos/f33-build/latest/$basearch/',
}),
('^BaseOS$', {
'*': ['https://odcs.fedoraproject.org/composes/production/latest-Fedora-ELN/compose/Everything/$basearch/os/'],
'*': ['https://odcs.fedoraproject.org/composes/production/latest-Fedora-ELN/compose/Everything/$basearch/os/', 'https://kojipkgs.fedoraproject.org/repos/f33-build/latest/$basearch/'],
})
]
@ -79,6 +81,7 @@ lorax_options = [
'*': {
'noupgrade': True,
'rootfs_size': 3,
# This is used to use ELN lorax templates instead of Fedora ones.
'configuration_file': 'lorax.conf'
}
})
@ -123,7 +126,7 @@ image_build = {
'name': 'Fedora-Container-Base',
'kickstart': 'fedora-eln-container-base.ks',
'distro': 'Fedora-22',
'disk_size': 5,
'disk_size': 10,
'arches': ['x86_64'],
'repo': 'Everything',
'install_tree_from': 'Everything',