Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apps/v1alpha1/collaset_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,10 @@ type CollaSetStatus struct {
// +optional
OperatingReplicas int32 `json:"operatingReplicas,omitempty"`

// TerminatingReplicas indicates the number of replicas with deletionTimestamps.
// +optional
TerminatingReplicas int32 `json:"terminatingReplicas,omitempty"`

// UpdatedReadyReplicas indicates the number of the pod with updated revision and ready condition
// +optional
UpdatedReadyReplicas int32 `json:"updatedReadyReplicas,omitempty"`
Expand Down
5 changes: 5 additions & 0 deletions config/crd/apps/apps.kusionstack.io_collasets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,11 @@ spec:
description: the number of scheduled replicas for the CollaSet.
format: int32
type: integer
terminatingReplicas:
description: TerminatingReplicas indicates the number of replicas
with deletionTimestamps.
format: int32
type: integer
updatedAvailableReplicas:
description: |-
UpdatedAvailableReplicas indicates the number of available updated revision replicas for this CollaSet.
Expand Down
Loading