-
Notifications
You must be signed in to change notification settings - Fork 220
feat: Add CancelHealthCheckOnNewRevision feature to avoid getting stuck on failing commits #1518
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
Closed
trashhalo
wants to merge
1
commit into
fluxcd:main
from
Clause-Logic:feat/cancel-health-check-on-new-revision
Closed
Changes from all commits
Commits
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
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
matheuscscp marked this conversation as resolved.
Show resolved
Hide resolved
|
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 |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| # Test for Revision Detection Bug | ||
|
|
||
| ## The Bug | ||
| The kustomize-controller fails to reconcile new revisions after a health check failure due to incorrect revision detection logic in `kustomization_indexers.go:62`. | ||
|
|
||
| ## Test Added | ||
| Added test case `reconciles new revision after health check failure` to `kustomization_wait_test.go` (lines 449-545). | ||
|
|
||
| ## The Fix | ||
| In `internal/controller/kustomization_indexers.go:62`, change: | ||
| ```diff | ||
| - if conditions.IsReady(&list.Items[i]) && repo.GetArtifact().HasRevision(d.Status.LastAttemptedRevision) { | ||
| + if conditions.IsReady(&list.Items[i]) && repo.GetArtifact().HasRevision(d.Status.LastAppliedRevision) { | ||
| ``` | ||
|
|
||
| ## Test Scenario | ||
| 1. Deploy a Kustomization with a bad image that fails health checks | ||
| 2. Verify it becomes NOT Ready with LastAttemptedRevision = bad revision | ||
| 3. Update GitRepository with fixed manifest (good image) | ||
| 4. Verify Kustomization reconciles the new revision and becomes Ready | ||
|
|
||
| ## Expected Behavior | ||
| - Test should FAIL with current code (Kustomization stays stuck on bad revision) | ||
| - Test should PASS after applying the fix (Kustomization reconciles new revision) | ||
|
|
||
| ## To Run Test | ||
| ```bash | ||
| # Install kubebuilder first if needed | ||
| make test | ||
|
|
||
| # Or run specific test once environment is set up | ||
| go test -v ./internal/controller -run "TestKustomizationReconciler_WaitConditions/reconciles_new_revision_after_health_check_failure" | ||
| ``` |
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.
Uh oh!
There was an error while loading. Please reload this page.