Skip to content

Commit 96558b9

Browse files
Merge pull request #123792 from mimowo/propose-api-comments-fix
Adjust the Job field API comments and validation to the current state Kubernetes-commit: 57c89abb45cf479c1588d03f8bd6af8ddc4a3ed1
2 parents 089c7ca + e5f396f commit 96558b9

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

batch/v1/generated.proto

Lines changed: 1 addition & 4 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: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -495,8 +495,7 @@ type JobStatus struct {
495495
// type "Complete" and status true.
496496
//
497497
// A job is considered finished when it is in a terminal condition, either
498-
// "Complete" or "Failed". At that point, all pods of the job are in terminal
499-
// phase. Job cannot be both in the "Complete" and "Failed" conditions.
498+
// "Complete" or "Failed". A Job cannot have both the "Complete" and "Failed" conditions.
500499
// Additionally, it cannot be in the "Complete" and "FailureTarget" conditions.
501500
// The "Complete", "Failed" and "FailureTarget" conditions cannot be disabled.
502501
//
@@ -546,7 +545,6 @@ type JobStatus struct {
546545

547546
// The number of pods which are terminating (in phase Pending or Running
548547
// and have a deletionTimestamp).
549-
// The value is zero (or null) for finished jobs.
550548
//
551549
// This field is beta-level. The job controller populates the field when
552550
// the feature gate JobPodReplacementPolicy is enabled (enabled by default).
@@ -597,7 +595,6 @@ type JobStatus struct {
597595
UncountedTerminatedPods *UncountedTerminatedPods `json:"uncountedTerminatedPods,omitempty" protobuf:"bytes,8,opt,name=uncountedTerminatedPods"`
598596

599597
// The number of pods which have a Ready condition.
600-
// The value is zero (or null) for finished jobs.
601598
// +optional
602599
Ready *int32 `json:"ready,omitempty" protobuf:"varint,9,opt,name=ready"`
603600
}

batch/v1/types_swagger_doc_generated.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,17 +136,17 @@ func (JobSpec) SwaggerDoc() map[string]string {
136136

137137
var map_JobStatus = map[string]string{
138138
"": "JobStatus represents the current state of a Job.",
139-
"conditions": "The latest available observations of an object's current state. When a Job fails, one of the conditions will have type \"Failed\" and status true. When a Job is suspended, one of the conditions will have type \"Suspended\" and status true; when the Job is resumed, the status of this condition will become false. When a Job is completed, one of the conditions will have type \"Complete\" and status true.\n\nA job is considered finished when it is in a terminal condition, either \"Complete\" or \"Failed\". At that point, all pods of the job are in terminal phase. Job cannot be both in the \"Complete\" and \"Failed\" conditions. Additionally, it cannot be in the \"Complete\" and \"FailureTarget\" conditions. The \"Complete\", \"Failed\" and \"FailureTarget\" conditions cannot be disabled.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
139+
"conditions": "The latest available observations of an object's current state. When a Job fails, one of the conditions will have type \"Failed\" and status true. When a Job is suspended, one of the conditions will have type \"Suspended\" and status true; when the Job is resumed, the status of this condition will become false. When a Job is completed, one of the conditions will have type \"Complete\" and status true.\n\nA job is considered finished when it is in a terminal condition, either \"Complete\" or \"Failed\". A Job cannot have both the \"Complete\" and \"Failed\" conditions. Additionally, it cannot be in the \"Complete\" and \"FailureTarget\" conditions. The \"Complete\", \"Failed\" and \"FailureTarget\" conditions cannot be disabled.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
140140
"startTime": "Represents time when the job controller started processing a job. When a Job is created in the suspended state, this field is not set until the first time it is resumed. This field is reset every time a Job is resumed from suspension. It is represented in RFC3339 form and is in UTC.\n\nOnce set, the field can only be removed when the job is suspended. The field cannot be modified while the job is unsuspended or finished.",
141141
"completionTime": "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. The completion time is set when the job finishes successfully, and only then. The value cannot be updated or removed. The value indicates the same or later point in time as the startTime field.",
142142
"active": "The number of pending and running pods which are not terminating (without a deletionTimestamp). The value is zero for finished jobs.",
143143
"succeeded": "The number of pods which reached phase Succeeded. The value increases monotonically for a given spec. However, it may decrease in reaction to scale down of elastic indexed jobs.",
144144
"failed": "The number of pods which reached phase Failed. The value increases monotonically.",
145-
"terminating": "The number of pods which are terminating (in phase Pending or Running and have a deletionTimestamp). The value is zero (or null) for finished jobs.\n\nThis field is beta-level. The job controller populates the field when the feature gate JobPodReplacementPolicy is enabled (enabled by default).",
145+
"terminating": "The number of pods which are terminating (in phase Pending or Running and have a deletionTimestamp).\n\nThis field is beta-level. The job controller populates the field when the feature gate JobPodReplacementPolicy is enabled (enabled by default).",
146146
"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\".",
147147
"failedIndexes": "FailedIndexes holds the failed indexes when spec.backoffLimitPerIndex is set. The indexes are represented in the text format analogous as for the `completedIndexes` field, ie. they are kept 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 failed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\". The set of failed indexes cannot overlap with the set of completed indexes.\n\nThis field is beta-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (enabled by default).",
148148
"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:\n\n1. 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\nOld jobs might not be tracked using this field, in which case the field remains null. The structure is empty for finished jobs.",
149-
"ready": "The number of pods which have a Ready condition. The value is zero (or null) for finished jobs.",
149+
"ready": "The number of pods which have a Ready condition.",
150150
}
151151

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

0 commit comments

Comments
 (0)