Closed fwilhe closed 10 months ago
Analysis: This happens because the builder creates temp fs in multiple places and their size is hardcoded to 2G
https://github.com/search?q=repo%3Agardenlinux%2Fbuilder%202G&type=code
It works when using 4G instead like in this commit
Reasoning for having a hard-coded limit: Make the build reproducible. It should not randomly fail based on how much memory the build machine has. 2G seems large enough for building the Garden Linux image, but it does not seem to be enough for the Dev Image.
Increase hard-coded size #53
Pro:
Con:
Add a build script like get_repo
, get_commit
, get_timestamp
to set a custom tempfs size
Pro:
Con:
Allow features to declare how much space they need
Assuming I have 3 features: base
, large
and huge
.
base
needs 2Gig, large
needs 3Gig and huge
needs 4Gig, how much space does the overall build need? Is it max(2,3,4)
? Is it sum(2,3,4)
?
Pro:
Con:
Introduce a new build.config
file that optionally can customise build parameters.
The file is placed in the root of any directory/git repo containing an image definition.
If the file is absent, or does not define all values, the values should still have a sensible default value.
The builder_exmple repo will get a build.config
file containing sample values which increases visibility of those settings to the user.
The file is in a format so it can be sourced by a shell
For example
TEMPFS_SIZE=4G
Pro:
Con:
Potential issues:
Potentially this could also replace get_repo
and get_version
(don't need to be a script for providing a single string value), which could result in a file like this:
APT_REPO=http://deb.debian.org/debian
VERSION=trixie
TEMPFS_SIZE=4G
And not needing the get_repo
and get_version
script.
What happened: I'm building an image using the builder and the build fails with 'no space left on device' while installing packages.
What you expected to happen: My build should work.
How to reproduce it (as minimally and precisely as possible): Github actions workflow: https://github.com/gardenlinux/dev-image/actions/runs/7448117408/job/20261765952?pr=3
Try building this commit: https://github.com/gardenlinux/dev-image/tree/ba57ad53a8d8a4af1f01daf1a0f6862674ef76d7