fix(205-builder): aggressive nix GC — daily+7d to prevent disk full alerts - #43
Draft
phonkd wants to merge 1 commit into
Draft
fix(205-builder): aggressive nix GC — daily+7d to prevent disk full alerts#43phonkd wants to merge 1 commit into
phonkd wants to merge 1 commit into
Conversation
DiskWillFillIn24h is firing on 205-builder because the weekly+30d nix GC can't keep up with build artifact accumulation on the builder's root partition. Override to daily+7d GC for the builder-server role. Closes the alert by addressing the root cause.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two
DiskWillFillIn24halerts are firing on205-builder(both/and/nix/storemountpoints on the same ext4 partition). The root cause is that nix GC runs weekly with 30-day retention, which is not aggressive enough for a dedicated build machine.Override the global
nix.gcin thebuilder-serverrole module: daily+7d instead of weekly+30d.After merge,
deploy 205-builderto activate.