Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

base: Bump disk and /var partition size #93

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configs/el8stream/el8stream.ks.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ part / --grow --size=6120 --fsoptions="noatime"
part swap --size 4096
part /home --size=128
part /tmp --size=128
part /var --size=1024
part /var --size=2048
part /var/log --size=512
part /var/log/audit --size=256
part /var/tmp --size=9220
Expand Down
2 changes: 1 addition & 1 deletion configs/el9stream/el9stream.ks.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ part / --grow --size=6120 --fsoptions="noatime"
part swap --size 4096
part /home --size=128
part /tmp --size=128
part /var --size=1024
part /var --size=2048
part /var/log --size=512
part /var/log/audit --size=256
part /var/tmp --size=9220
Expand Down
2 changes: 1 addition & 1 deletion configs/rhel8/rhel8.ks.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ part / --grow --size=6120 --fsoptions="noatime"
part swap --size 4096
part /home --size=128
part /tmp --size=128
part /var --size=1024
part /var --size=2048
part /var/log --size=512
part /var/log/audit --size=256
part /var/tmp --size=9220
Expand Down
2 changes: 1 addition & 1 deletion makefiles/vars.mk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ REPO_ROOT := "http://mirror.centos.org/centos/8-stream/"
_USING_ISO := $(findstring .iso,$(INSTALL_URL))
# The virtual size of the disk.
# Since qcows are sparse they only use as much space as was really written to them.
DISK_SIZE := 22G
DISK_SIZE := 23G
# Whether or not to run 'virt-sparsify' on the base image.
# This reduces the image size significantly,
# but requires the same amount of free space available as defined by 'DISK_SIZE' variable.
Expand Down