Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmadhankumar committed Sep 19, 2023
1 parent a9771fa commit 5d670e0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
7 changes: 4 additions & 3 deletions pkg/kapp/clusterapply/add_or_update_change.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,15 +264,16 @@ func (c AddOrUpdateChange) recordAppliedResource(savedRes ctlres.Resource) error
return true, nil
}

jsonStr, err := json.Marshal(latestResWithHistoryUpdated.Annotations())
data := []byte(fmt.Sprintf("{\"metadata\": {\"annotations\": %s }}", jsonStr))
latestResourceAnnotations := latestResWithHistoryUpdated.Annotations()
appliedResAnnValJsonStr, err := json.Marshal(latestResourceAnnotations[ctldiff.AppliedResAnnKey])

Check warning on line 268 in pkg/kapp/clusterapply/add_or_update_change.go

View workflow job for this annotation

GitHub Actions / lint

var-naming: var appliedResAnnValJsonStr should be appliedResAnnValJSONStr (revive)
jsonStr := fmt.Sprintf("{\"metadata\": {\"annotations\": { \"%s\" : \"%s\", \"%s\": %s}}}", ctldiff.AppliedResDiffMD5AnnKey, latestResourceAnnotations[ctldiff.AppliedResDiffMD5AnnKey], ctldiff.AppliedResAnnKey, appliedResAnnValJsonStr)
data := []byte(jsonStr)

_, err = c.identifiedResources.Patch(savedRes, types.MergePatchType, data)
if err != nil {
latestResWithHistory = nil // Get again
return false, fmt.Errorf("Saving record of last applied resource: %w", err)
}

return true, nil
})
}
Expand Down
16 changes: 8 additions & 8 deletions pkg/kapp/diff/resource_with_history.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
)

const (
appliedResAnnKey = "kapp.k14s.io/original"
appliedResDiffMD5AnnKey = "kapp.k14s.io/original-diff-md5"
AppliedResAnnKey = "kapp.k14s.io/original"
AppliedResDiffMD5AnnKey = "kapp.k14s.io/original-diff-md5"

// Following fields useful for debugging:
debugAppliedResDiffAnnKey = "kapp.k14s.io/original-diff"
Expand Down Expand Up @@ -88,8 +88,8 @@ func (r ResourceWithHistory) RecordLastAppliedResource(appliedChange Change) (ct
ResourceMatcher: ctlres.AllMatcher{},
Path: ctlres.NewPathFromStrings([]string{"metadata", "annotations"}),
KVs: map[string]string{
appliedResAnnKey: string(appliedResBytes),
appliedResDiffMD5AnnKey: diff.MinimalMD5(),
AppliedResAnnKey: string(appliedResBytes),
AppliedResDiffMD5AnnKey: diff.MinimalMD5(),

// Following fields useful for debugging:
// debugAppliedResDiffAnnKey: diff.MinimalString(),
Expand Down Expand Up @@ -131,8 +131,8 @@ func (r ResourceWithHistory) CalculateChange(appliedRes ctlres.Resource) (Change
}

func (r ResourceWithHistory) recalculateLastAppliedChange() ([]Change, string, string) {
lastAppliedResBytes := r.resource.Annotations()[appliedResAnnKey]
lastAppliedDiffMD5 := r.resource.Annotations()[appliedResDiffMD5AnnKey]
lastAppliedResBytes := r.resource.Annotations()[AppliedResAnnKey]
lastAppliedDiffMD5 := r.resource.Annotations()[AppliedResDiffMD5AnnKey]

if len(lastAppliedResBytes) == 0 || len(lastAppliedDiffMD5) == 0 {
return nil, "", ""
Expand Down Expand Up @@ -197,15 +197,15 @@ func (ResourceWithoutHistory) removeAppliedResAnnKeysMods() []ctlres.ResourceMod
return []ctlres.ResourceMod{
ctlres.FieldRemoveMod{
ResourceMatcher: ctlres.AllMatcher{},
Path: ctlres.NewPathFromStrings([]string{"metadata", "annotations", appliedResAnnKey}),
Path: ctlres.NewPathFromStrings([]string{"metadata", "annotations", AppliedResAnnKey}),
},
ctlres.FieldRemoveMod{
ResourceMatcher: ctlres.AllMatcher{},
Path: ctlres.NewPathFromStrings([]string{"metadata", "annotations", debugAppliedResDiffAnnKey}),
},
ctlres.FieldRemoveMod{
ResourceMatcher: ctlres.AllMatcher{},
Path: ctlres.NewPathFromStrings([]string{"metadata", "annotations", appliedResDiffMD5AnnKey}),
Path: ctlres.NewPathFromStrings([]string{"metadata", "annotations", AppliedResDiffMD5AnnKey}),
},
ctlres.FieldRemoveMod{
ResourceMatcher: ctlres.AllMatcher{},
Expand Down

0 comments on commit 5d670e0

Please sign in to comment.