-
Notifications
You must be signed in to change notification settings - Fork 0
feat: only remove finalizer in case no child accounts exist #48
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
Draft
kekcleader
wants to merge
7
commits into
main
Choose a base branch
from
feat/delete-account-info-only-after-accounts
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
842fde9
fix: removed duplicated function
kekcleader d06dfd0
feat: only remove finalizer in case no child accounts exist
kekcleader 427b3dd
chore: go update 1.24.8
kekcleader b96fabb
chore: Dockerfile update
kekcleader 8059850
chore: Dockerfile update (2)
kekcleader 374485b
fix: scope Account list in finalizer to child Accounts via label; add…
kekcleader 06c0925
Merge remote-tracking branch 'origin/main' into feat/delete-account-i…
kekcleader File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| module github.com/platform-mesh/account-operator | ||
|
|
||
| go 1.24.5 | ||
| go 1.24.8 | ||
|
|
||
| replace ( | ||
| k8s.io/api => k8s.io/api v0.34.1 | ||
|
|
||
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
🧩 Analysis chain
Verify parent account name in delete tuple.
Line 95 assigns
accountInfo.Spec.Account.NametoparentAccountName, but line 97 uses it as the parent in the User field. This appears incorrect—the parent's name should come fromaccountInfo.Spec.ParentAccount.Nameinstead.Apply this diff if the parent account name should be sourced from ParentAccount:
Verify the intended tuple structure by checking the corresponding write logic that created this tuple, or review the FGA model definition.
🏁 Script executed:
Length of output: 2356
🏁 Script executed:
Length of output: 361
🏁 Script executed:
Length of output: 318
🏁 Script executed:
Length of output: 267
Use the parent’s Name when building the delete tuple
parentAccountNameis incorrectly sourced fromSpec.Account.Name; it must useSpec.ParentAccount.Nameso the User field truly references the parent.🤖 Prompt for AI Agents