Skip to content

Commit 6519413

Browse files
Merge pull request #107476 from alculquicondor/job-ready
Graduate JobReadyPods to beta Kubernetes-commit: dd1e43332a478f64a861a576975a679697cd52a5
2 parents ed1c913 + 135d041 commit 6519413

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

batch/v1/generated.proto

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

batch/v1/types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ type JobStatus struct {
267267

268268
// The number of pods which have a Ready condition.
269269
//
270-
// This field is alpha-level. The job controller populates the field when
271-
// the feature gate JobReadyPods is enabled (disabled by default).
270+
// This field is beta-level. The job controller populates the field when
271+
// the feature gate JobReadyPods is enabled (enabled by default).
272272
// +optional
273273
Ready *int32 `json:"ready,omitempty" protobuf:"varint,9,opt,name=ready"`
274274
}

batch/v1/types_swagger_doc_generated.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ var map_JobStatus = map[string]string{
137137
"failed": "The number of pods which reached phase Failed.",
138138
"completedIndexes": "CompletedIndexes holds the completed indexes when .spec.completionMode = \"Indexed\" in a text format. The indexes are represented as decimal integers separated by commas. The numbers are listed in increasing order. Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen. For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\".",
139139
"uncountedTerminatedPods": "UncountedTerminatedPods holds the UIDs of Pods that have terminated but the job controller hasn't yet accounted for in the status counters.\n\nThe job controller creates pods with a finalizer. When a pod terminates (succeeded or failed), the controller does three steps to account for it in the job status: (1) Add the pod UID to the arrays in this field. (2) Remove the pod finalizer. (3) Remove the pod UID from the arrays while increasing the corresponding\n counter.\n\nThis field is beta-level. The job controller only makes use of this field when the feature gate JobTrackingWithFinalizers is enabled (enabled by default). Old jobs might not be tracked using this field, in which case the field remains null.",
140-
"ready": "The number of pods which have a Ready condition.\n\nThis field is alpha-level. The job controller populates the field when the feature gate JobReadyPods is enabled (disabled by default).",
140+
"ready": "The number of pods which have a Ready condition.\n\nThis field is beta-level. The job controller populates the field when the feature gate JobReadyPods is enabled (enabled by default).",
141141
}
142142

143143
func (JobStatus) SwaggerDoc() map[string]string {

0 commit comments

Comments
 (0)