-
Notifications
You must be signed in to change notification settings - Fork 1
feat: operator applies own CRDs at startup to ensure schema matches binary #98
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
Open
ian-flores
wants to merge
30
commits into
main
Choose a base branch
from
feat-self-managed-crds
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.
Open
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
46e0cc5
feat: operator applies own CRDs at startup to ensure schema matches b…
ian-flores 163ee01
Address review findings (job 54)
ian-flores 89bc275
chore: wire verify-crds into verify-all to catch embedded CRD drift i…
ian-flores e004f96
Address review findings (job 56)
ian-flores c744011
Address review findings (job 59)
ian-flores d494e1a
fix: use kubebuilder RBAC marker for CRD permissions instead of manua…
ian-flores f795a3b
Merge branch 'main' into feat-self-managed-crds
ian-flores b983d81
Address review findings (job 61)
ian-flores 4e1514f
Address review findings (job 67)
ian-flores d5e9e6c
Address review findings (job 71)
ian-flores 3713c15
Address review findings (job 72)
ian-flores 9c659b1
Address review findings (job 76)
ian-flores 79a2132
Address review findings (job 83)
ian-flores 65316c0
Address review findings (job 86)
ian-flores 0224372
fix: address PR review findings for self-managed CRDs
ian-flores 342a375
fix: remove create verb from CRD RBAC and sync generated files
ian-flores 11b7c27
Address review findings (job 133)
ian-flores ea66625
Address review findings (job 79)
ian-flores 52e2860
Address review findings (job 142)
ian-flores fb07eb5
Address review findings (job 140)
ian-flores e1929e6
fix: revert init() panic to newScheme() to fix CrashLoopBackOff
ian-flores 0ae5483
Address review findings (job 141)
ian-flores ef93f29
Address review findings (job 146)
ian-flores 780df4f
Address review findings (job 144)
ian-flores 7432524
fix: remove hook-injected comments blocking kubebuilder RBAC marker
ian-flores 3965505
fix: improve CRD apply circuit breaker visibility and error guidance
ian-flores 9f946fc
fix: address Lytol review nits
ian-flores 021a683
Merge branch 'main' into feat-self-managed-crds
ian-flores 6dfeb34
fix: update TestManageCRDsFlag to use flag.BoolVar directly
ian-flores 9b81ff4
fix: remove tracked .claude/tsc-cache files from git
ian-flores 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,3 +33,6 @@ go.work.sum | |
| # Editor/IDE | ||
| # .idea/ | ||
| # .vscode/ | ||
|
|
||
| # Claude Code | ||
| .claude/tsc-cache/ | ||
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
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
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.
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.
nit: alternatively, this seems like a wonderful candidate to encapsulate the retry logic inside a function.