chore: expose more conditions in component status#10032
Merged
Conversation
Collaborator
|
Auto Cherry-pick Instructions |
eae9b69 to
88b0496
Compare
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #10032 +/- ##
==========================================
+ Coverage 52.17% 52.21% +0.03%
==========================================
Files 529 529
Lines 59813 60402 +589
==========================================
+ Hits 31210 31537 +327
- Misses 25496 25763 +267
+ Partials 3107 3102 -5
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
cjc7373
commented
Feb 3, 2026
a001419 to
8038a82
Compare
leon-ape
reviewed
Feb 4, 2026
| FailedComponentPhase ComponentPhase = "Failed" | ||
| ) | ||
|
|
||
| // component conditions |
Contributor
There was a problem hiding this comment.
Recommend a set of condition definitions:
const (
// ConditionTypeProvisioned indicates whether the required resources have been provisioned
ConditionTypeProvisioned = "Provisioned"
// ConditionTypeReady indicates whether the Component is ready to provide service
ConditionTypeReady = "Ready"
// ConditionTypeHealthy indicates whether the Component is healthy
ConditionTypeHealthy = "Healthy"
// ConditionTypeAvailable indicates whether the Component is available (based on availability policy)
ConditionTypeAvailable = "Available"
// ConditionTypeProgressing indicates whether the Component is undergoing changes
ConditionTypeProgressing = "Progressing" // or Reconciling
// ConditionTypeTerminating indicates whether the Component is being terminated
ConditionTypeTerminating = "Terminating"
)
leon-ape
reviewed
Mar 11, 2026
leon-ape
reviewed
Mar 11, 2026
leon-ape
approved these changes
Apr 21, 2026
Collaborator
|
/cherry-pick release-1.1 |
Collaborator
|
🤖 says: cherry pick action finished successfully 🎉! |
apecloud-bot
pushed a commit
that referenced
this pull request
Apr 21, 2026
(cherry picked from commit 769e4ce)
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The current component condition provides very little information about why the component is not healthy.