fix(agentcrd): strip server-managed metadata before ResumeAll re-apply#790
Open
bussyjd wants to merge 1 commit into
Open
fix(agentcrd): strip server-managed metadata before ResumeAll re-apply#790bussyjd wants to merge 1 commit into
bussyjd wants to merge 1 commit into
Conversation
Reported by a teammate during v0.14.0-rc0 field testing. https://claude.ai/code/session_01PnhCQLz7CHuDBUhWd5xF8v
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.
Problem
obol stack upreplays persisted Agent CR manifests viainternal/agentcrd.ResumeAll. Those manifests are written byPersistManifestas a fullyaml.Marshalof the applied object, which can already include server-managed metadata (resourceVersion,uid,creationTimestamp,managedFields, …).On cluster recreate / re-apply,
ResumeAllpreviously passed those bytes straight tokubectl.Apply. Kubernetes rejects the update with:Root cause: replaying a client-side record that still carries server-managed identity fields.
Fix
internal/stackbackup/cluster.go— export the existing unexportedstripObjecthelper asStripServerManagedMetadata(obj map[string]any)(same body).StripK8sJSONcontinues to call it for JSON dumps; no behavior change for export/import.internal/agentcrd/manifest.go— inResumeAll, after reading each persisted YAML file:yaml.Unmarshalintomap[string]anystackbackup.StripServerManagedMetadatayaml.Marshalback to byteskubectl.ApplyParse/marshal failures warn and
continue(best-effort per agent).warnIfWalletWouldRegeneratestill receives the original unstripped bytes (it only readsspec.wallet.create).Diagram
Validation
https://claude.ai/code/session_01PnhCQLz7CHuDBUhWd5xF8v