Skip to content

Commit

Permalink
Merge pull request #1012 from fluxcd/backport-1010-to-release/v1.0.x
Browse files Browse the repository at this point in the history
[release/v1.0.x] Re-enable logging json patch on StatusDrifted
  • Loading branch information
stefanprodan committed Jun 19, 2024
2 parents 8404164 + 8ad741a commit aff5e2b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion internal/reconcile/atomic_release.go
Original file line number Diff line number Diff line change
Expand Up @@ -388,8 +388,13 @@ func (r *AtomicRelease) actionForState(ctx context.Context, req *Request, state
log.V(logger.DebugLevel).Info("resource deleted",
"resource", diff.ResourceName(change.DesiredObject))
case jsondiff.DiffTypeUpdate:
patch := change.Patch
if change.DesiredObject.GetObjectKind().GroupVersionKind().Kind == "Secret" {
patch = jsondiff.MaskSecretPatchData(change.Patch)
}
log.V(logger.DebugLevel).Info("resource modified",
"resource", diff.ResourceName(change.DesiredObject))
"resource", diff.ResourceName(change.DesiredObject),
"patch", patch)
}
}

Expand Down

0 comments on commit aff5e2b

Please sign in to comment.