-
Notifications
You must be signed in to change notification settings - Fork 289
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for --take-ownership parameter #742
Conversation
Fix databus23#731 Signed-off-by: Guillaume Perrin <[email protected]>
Signed-off-by: Guillaume Perrin <[email protected]>
@guillomep nend more tests. |
Signed-off-by: Guillaume Perrin <[email protected]>
I added some tests. |
Signed-off-by: Guillaume Perrin <[email protected]>
Signed-off-by: Guillaume Perrin <[email protected]>
Do I have any remaining job to do ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds support for the new --take-ownership parameter, enabling the tool to detect and report changes in resource ownership by comparing existing release annotations with those from the new release. Key changes include:
- Introducing a new "takeOwnership" flag in the upgrade command and propagating it to related logic.
- Adapting the diff reporting mechanism to include a new OWNERSHIP change style.
- Updating object parsing and merging functions to incorporate ownership differences.
Reviewed Changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 2 comments.
Show a summary per file
File | Description |
---|---|
manifest/util_test.go | Added tests for the deleteStatusAndTidyMetadata function. |
manifest/util.go | Moved and refactored the deleteStatusAndTidyMetadata function. |
manifest/parse_test.go | Updated tests for ParseObject with file-read functionality. |
manifest/parse.go | Added ParseObject function improvements for ownership handling. |
manifest/generate.go | Removed duplicate implementation of deleteStatusAndTidyMetadata. |
diff/report.go | Updated report formats to support OWNERSHIP change style. |
diff/diff_test.go | Added tests for ownership change reporting. |
diff/diff.go | Introduced OwnershipDiff type and integrated it in diff logic. |
cmd/upgrade.go | Enhanced upgrade command to handle --take-ownership flag. |
cmd/helm3.go | Passed the new flag to the underlying helm template flow. |
@guillomep no more. latest question: did you test it locally? |
I trying to add support of the new
--take-ownership
argument that appears in Helm 3.17.This works by trying to match manifests of the release with existing ones on the cluster. If the release mismatch, then the changing of ownership is displayed in the report.
I have not a lot experience in Go, nor on this project.
Fix #731