-
Notifications
You must be signed in to change notification settings - Fork 0
DILT-19: Quartz CLI Maintenance - Cleanup Improvements & Retry Logic #62
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
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
004c21c
fix: update application lookup configuration in NewInfrastructureEnvi…
padili-metrostar a2a381a
feat: implement AWS resource cleanup functionality and enhance destro…
padili-metrostar cdf870a
fix: update region configuration to use Aws.Region in ForceAWSCleanup
padili-metrostar 6148c36
feat: add EC2 instance termination functionality to ForceAWSCleanup
padili-metrostar caaca5b
refactor: remove force cleanup flag and streamline AWS resource clean…
padili-metrostar fbc0aeb
feat: implement fallback AWS resource cleanup in TfDestroyWithRetry f…
padili-metrostar 7d26880
feat: add proactive check for blocking AWS resources before Terraform…
padili-metrostar 8ad740a
feat: implement Kubernetes resource cleanup before EC2 termination in…
padili-metrostar 4e1a791
feat: enhance logging and retry mechanisms for health checks and AWS …
padili-metrostar 8845b2d
feat: add DaemonSet readiness checks and cleanup for stuck terminatin…
padili-metrostar 95e8b73
feat: add VirtualService listing and print functionality to Kubernete…
padili-metrostar 03e1598
feat: enhance Kubernetes cleanup process to remove all validating and…
padili-metrostar 21f9f22
test: add unit tests for cleanup retry logic
padili-metrostar 2b6b150
fix: upgrade Go 1.24.11 and mapstructure v2.4.0 to fix vulnerabilities
padili-metrostar 4954e21
fix: resolve golangci-lint issues in aws_cleanup.go and stages.go
padili-metrostar 3649a52
test: add unit tests for DaemonSetStageCheck and GetDaemonSetStatus
padili-metrostar c3532ee
chore: add codecov.yml and additional test coverage
padili-metrostar 3f5b274
test: add additional coverage for Kubernetes and stages packages
padili-metrostar 4263b05
test: add coverage for check callbacks and Kubernetes operations
padili-metrostar 6c040c3
test: add coverage tests for Export and CleanupTerminatingPods
padili-metrostar bb95d9f
chore: remove internal.go from codecov exclusions
padili-metrostar 6e6469a
fix: format internal_test.go with gofmt
padili-metrostar 4a032e9
fix: update Go version to 1.24.11 in devbox.json
padili-metrostar f2a9d9f
fix: update Go version to 1.24.11 in devbox.lock
padili-metrostar 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 |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| # Codecov configuration for quartzctl | ||
| # https://docs.codecov.io/docs/codecov-yaml | ||
|
|
||
| coverage: | ||
| precision: 2 | ||
| round: down | ||
| range: "60...100" | ||
|
|
||
| status: | ||
| project: | ||
| default: | ||
| # Set target to be the same as base coverage, allowing minor decreases | ||
| target: auto | ||
| threshold: 2% # Allow 2% decrease from base | ||
| informational: false | ||
| patch: | ||
| default: | ||
| # Reduce patch coverage requirement for integration-heavy code | ||
| target: 50% | ||
| threshold: 5% | ||
| informational: false | ||
|
|
||
| # Ignore files that are difficult to unit test due to external dependencies | ||
| # These files primarily contain CLI integration code with exec.CommandContext | ||
| ignore: | ||
| # AWS CLI integration code - uses exec.CommandContext extensively | ||
| - "internal/cmd/aws_cleanup.go" | ||
| # Main entry point | ||
| - "cmd/quartz/main.go" | ||
|
|
||
| comment: | ||
| layout: "reach,diff,flags,files" | ||
| behavior: default | ||
| require_changes: true |
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 |
|---|---|---|
|
|
@@ -9,7 +9,7 @@ | |
| "errcheck@latest", | ||
| "gitleaks@latest", | ||
| "pre-commit@latest", | ||
| "go@1.24.2", | ||
| "go@1.24.11", | ||
| "upx@latest" | ||
| ] | ||
| } | ||
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.
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.
Update
devbox.jsongolang version.