docs(fork): upstream item — place a restore only on a worker whose CPU covers the snapshot's feature set (#37742 row 12) - #29
Merged
Conversation
… actor's restore only on a worker whose CPU covers the snapshot's feature set (#37742 row 12) Signed-off-by: Timo Derstappen <[email protected]>
teemow
added a commit
that referenced
this pull request
Sep 14, 2026
… actor's restore only on a worker whose CPU covers the snapshot's feature set (#37742 row 12) (#29) Signed-off-by: Timo Derstappen <[email protected]>
This was referenced Sep 15, 2026
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.
Ledger only. Adds a section "Upstream items prepared without a carried patch" to
FORK.mdwith the upstream-facing proposal for giantswarm/giantswarm#37742 row 12: place an actor's restore only on a worker whose CPU covers the snapshot's feature set.Why now. On a Kubernetes 1.35 cluster whose WorkerPool nodes Karpenter provisions (2026-09-13), AMD
c5aand Intelr6inodes sat under one amd64 pool; the golden snapshot had been taken on an AMD worker and every restore on the Intel worker failedincompatible FeatureSet: missing features: cmp_legacy, cr8_legacy, sse4a, misalignsse, topoext, mmxext, fxsr_opt, retried in place every 30 s, the consumer's turn timing out.scheduling.Constraintsknows the sandbox class, the label selectors,RequiredNodesand the limits — nothing about the CPU; aWorkerreports no feature set.The proposal (in the file): workers report their CPU feature set with their capacity; snapshots record the set they were taken with;
Constraints.RequiredCPUFeaturesderived from the snapshot the resume will load and enforced inAppliesas a superset check, with aRESUMINGactor released and rescheduled instead of retried on a worker that cannot load it; and a small first patch that classifies the runscincompatible FeatureSetrestore error as a placement failure (release, exclude the node for the actor, reschedule). Alignment: kagent-dev#19 extends the sameConstraints.Per the fork-first rule nothing is opened against upstream; row 12 of #37742 links here as the review item. The consumer-side pin (
karpenter.k8s.aws/instance-cpu-manufactureron the pool) is giantswarm/agent-platform#429.