fix(core): increase ephemeral storage overhead to 200M#2549
Open
LopatinDmitr wants to merge 1 commit into
Open
fix(core): increase ephemeral storage overhead to 200M#2549LopatinDmitr wants to merge 1 commit into
LopatinDmitr wants to merge 1 commit into
Conversation
Signed-off-by: Dmitry Lopatin <dmitry.lopatin@flant.com>
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.
Description
Increase
ephemeralStorageOverheadSizefrom 50M to 200M in the 3p-kubevirt dependency.This is a temporary hotfix. The root cause — unbounded growth of virt-launcher stdout/stderr logs — is addressed in a separate task.
Related: deckhouse/3p-kubevirt#134
Why do we need it, and what problem does it solve?
When a node runs low on ephemeral-storage, the kubelet evicts pods ordered by excess usage (actual usage − request). The
d8v-computecontainer accumulates stdout/stderr logs over time; once log size exceeds the 50M request, the pod becomes a prime eviction candidate — which causes the VM running inside it to be killed.Observed in production:
d8v-computeused ~63M against a 50M request → VM killed.Raising the request to 200M gives significantly more headroom before a virt-launcher pod is selected as an eviction victim, reducing unintended VM downtime caused by log accumulation.
What is the expected result?
d8v-computecontainer hasresources.requests.ephemeral-storage: 200M.Checklist
Changelog entries