-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Add statefulset conditions #55268
Add statefulset conditions #55268
Conversation
pkg/apis/apps/types.go
Outdated
// Status of the condition, one of True, False, Unknown. | ||
Status api.ConditionStatus | ||
// The last time this condition was updated. | ||
LastUpdateTime metav1.Time |
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.
Do we want to remove LastUpdateTime now? It would mean this is inconsistent with others, but at least we wouldn't propagate it.
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.
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.
LastUpdateTime
was added to DeploymentCondition to replace LastHeartbeatTime
or lastProbeTime
we see in other conditions (ref #19343 (comment) and #35529 (comment)). It's useful for users to understand what is going on.
We haven't added it to ReplicaSetCondition, though.
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.
Based on our discussion - looks like we can remove it from here, since this type isn't in use yet. There's no strong reason to add it only to remove it later.
/approve One comment |
1da3518
to
a3f7cfd
Compare
|
||
// Represents the latest available observations of a statefulset's current state. | ||
// +patchMergeKey=type | ||
// +patchStrategy=merge |
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.
Need // +optional
tag for every omitempty
field.
// Status of the condition, one of True, False, Unknown. | ||
Status v1.ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=k8s.io/api/core/v1.ConditionStatus"` | ||
// The last time this condition was updated. | ||
LastUpdateTime metav1.Time `json:"lastUpdateTime,omitempty" protobuf:"bytes,6,opt,name=lastUpdateTime"` |
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.
Why's the protobuf tag 6 instead of 3? Just remove the protobuf
part and let the codegen auto-generate it instead
a3f7cfd
to
ffd9fc2
Compare
936a528
to
3098139
Compare
/retest |
/lgtm |
/retest Review the full test history for this PR. |
3098139
to
5b655b4
Compare
pkg/apis/apps/v1/conversion.go
Outdated
@@ -465,6 +466,7 @@ func Convert_v1_StatefulSetStatus_To_apps_StatefulSetStatus(in *appsv1.StatefulS | |||
out.CollisionCount = new(int32) | |||
*out.CollisionCount = *in.CollisionCount | |||
} | |||
out.Conditions = *(*[]apps.StatefulSetCondition)(unsafe.Pointer(&in.Conditions)) |
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.
@caesarxuchao PTAL. Does this seem reasonable?
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.
As per offline discussion - simplified to not use unsafe conversions.
8075ca5
to
9efca4d
Compare
Rebased. @janetkuo PTAL |
/lgtm |
/retest |
/test pull-kubernetes-e2e-gce-device-plugin-gpu |
/test pull-kubernetes-verify |
d2b1448
to
5400ed0
Compare
5400ed0
to
45ab57f
Compare
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: foxish, janetkuo, kow3ns, smarterclayton Associated issue: 7856 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
/test pull-kubernetes-unit |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions here. |
xref #51594 |
What this PR does / why we need it: This PR adds conditions to statefulset status making it consistent with other controllers for v1. See linked issue for discussion.
/xref: #7856
Special notes for your reviewer:
Release note: