1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
// This file is @generated by prost-build.
/// CronJob represents the configuration of a single cron job.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CronJob {
/// Standard object's metadata.
/// More info: <https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata>
/// +optional
#[prost(message, optional, tag = "1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ObjectMeta>,
/// Specification of the desired behavior of a cron job, including the schedule.
/// More info: <https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status>
/// +optional
#[prost(message, optional, tag = "2")]
pub spec: ::core::option::Option<CronJobSpec>,
/// Current status of a cron job.
/// More info: <https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status>
/// +optional
#[prost(message, optional, tag = "3")]
pub status: ::core::option::Option<CronJobStatus>,
}
/// CronJobList is a collection of cron jobs.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CronJobList {
/// Standard list metadata.
/// More info: <https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata>
/// +optional
#[prost(message, optional, tag = "1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ListMeta>,
/// items is the list of CronJobs.
#[prost(message, repeated, tag = "2")]
pub items: ::prost::alloc::vec::Vec<CronJob>,
}
/// CronJobSpec describes how the job execution will look like and when it will actually run.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CronJobSpec {
/// The schedule in Cron format, see <https://en.wikipedia.org/wiki/Cron.>
#[prost(string, optional, tag = "1")]
pub schedule: ::core::option::Option<::prost::alloc::string::String>,
/// The time zone name for the given schedule, see <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones.>
/// If not specified, this will default to the time zone of the kube-controller-manager process.
/// The set of valid time zone names and the time zone offset is loaded from the system-wide time zone
/// database by the API server during CronJob validation and the controller manager during execution.
/// If no system-wide time zone database can be found a bundled version of the database is used instead.
/// If the time zone name becomes invalid during the lifetime of a CronJob or due to a change in host
/// configuration, the controller will stop creating new new Jobs and will create a system event with the
/// reason UnknownTimeZone.
/// More information can be found in <https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#time-zones>
/// +optional
#[prost(string, optional, tag = "8")]
pub time_zone: ::core::option::Option<::prost::alloc::string::String>,
/// Optional deadline in seconds for starting the job if it misses scheduled
/// time for any reason. Missed jobs executions will be counted as failed ones.
/// +optional
#[prost(int64, optional, tag = "2")]
pub starting_deadline_seconds: ::core::option::Option<i64>,
/// Specifies how to treat concurrent executions of a Job.
/// Valid values are:
///
/// - "Allow" (default): allows CronJobs to run concurrently;
/// - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
/// - "Replace": cancels currently running job and replaces it with a new one
/// +optional
#[prost(string, optional, tag = "3")]
pub concurrency_policy: ::core::option::Option<::prost::alloc::string::String>,
/// This flag tells the controller to suspend subsequent executions, it does
/// not apply to already started executions. Defaults to false.
/// +optional
#[prost(bool, optional, tag = "4")]
pub suspend: ::core::option::Option<bool>,
/// Specifies the job that will be created when executing a CronJob.
#[prost(message, optional, tag = "5")]
pub job_template: ::core::option::Option<JobTemplateSpec>,
/// The number of successful finished jobs to retain. Value must be non-negative integer.
/// Defaults to 3.
/// +optional
#[prost(int32, optional, tag = "6")]
pub successful_jobs_history_limit: ::core::option::Option<i32>,
/// The number of failed finished jobs to retain. Value must be non-negative integer.
/// Defaults to 1.
/// +optional
#[prost(int32, optional, tag = "7")]
pub failed_jobs_history_limit: ::core::option::Option<i32>,
}
/// CronJobStatus represents the current state of a cron job.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CronJobStatus {
/// A list of pointers to currently running jobs.
/// +optional
/// +listType=atomic
#[prost(message, repeated, tag = "1")]
pub active: ::prost::alloc::vec::Vec<super::super::core::v1::ObjectReference>,
/// Information when was the last time the job was successfully scheduled.
/// +optional
#[prost(message, optional, tag = "4")]
pub last_schedule_time:
::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::Time>,
/// Information when was the last time the job successfully completed.
/// +optional
#[prost(message, optional, tag = "5")]
pub last_successful_time:
::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::Time>,
}
/// Job represents the configuration of a single job.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Job {
/// Standard object's metadata.
/// More info: <https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata>
/// +optional
#[prost(message, optional, tag = "1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ObjectMeta>,
/// Specification of the desired behavior of a job.
/// More info: <https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status>
/// +optional
#[prost(message, optional, tag = "2")]
pub spec: ::core::option::Option<JobSpec>,
/// Current status of a job.
/// More info: <https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status>
/// +optional
#[prost(message, optional, tag = "3")]
pub status: ::core::option::Option<JobStatus>,
}
/// JobCondition describes current state of a job.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct JobCondition {
/// Type of job condition, Complete or Failed.
#[prost(string, optional, tag = "1")]
pub r#type: ::core::option::Option<::prost::alloc::string::String>,
/// Status of the condition, one of True, False, Unknown.
#[prost(string, optional, tag = "2")]
pub status: ::core::option::Option<::prost::alloc::string::String>,
/// Last time the condition was checked.
/// +optional
#[prost(message, optional, tag = "3")]
pub last_probe_time: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::Time>,
/// Last time the condition transit from one status to another.
/// +optional
#[prost(message, optional, tag = "4")]
pub last_transition_time:
::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::Time>,
/// (brief) reason for the condition's last transition.
/// +optional
#[prost(string, optional, tag = "5")]
pub reason: ::core::option::Option<::prost::alloc::string::String>,
/// Human readable message indicating details about last transition.
/// +optional
#[prost(string, optional, tag = "6")]
pub message: ::core::option::Option<::prost::alloc::string::String>,
}
/// JobList is a collection of jobs.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct JobList {
/// Standard list metadata.
/// More info: <https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata>
/// +optional
#[prost(message, optional, tag = "1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ListMeta>,
/// items is the list of Jobs.
#[prost(message, repeated, tag = "2")]
pub items: ::prost::alloc::vec::Vec<Job>,
}
/// JobSpec describes how the job execution will look like.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct JobSpec {
/// Specifies the maximum desired number of pods the job should
/// run at any given time. The actual number of pods running in steady state will
/// be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism),
/// i.e. when the work left to do is less than max parallelism.
/// More info: <https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/>
/// +optional
#[prost(int32, optional, tag = "1")]
pub parallelism: ::core::option::Option<i32>,
/// Specifies the desired number of successfully finished pods the
/// job should be run with. Setting to null means that the success of any
/// pod signals the success of all pods, and allows parallelism to have any positive
/// value. Setting to 1 means that parallelism is limited to 1 and the success of that
/// pod signals the success of the job.
/// More info: <https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/>
/// +optional
#[prost(int32, optional, tag = "2")]
pub completions: ::core::option::Option<i32>,
/// Specifies the duration in seconds relative to the startTime that the job
/// may be continuously active before the system tries to terminate it; value
/// must be positive integer. If a Job is suspended (at creation or through an
/// update), this timer will effectively be stopped and reset when the Job is
/// resumed again.
/// +optional
#[prost(int64, optional, tag = "3")]
pub active_deadline_seconds: ::core::option::Option<i64>,
/// Specifies the policy of handling failed pods. In particular, it allows to
/// specify the set of actions and conditions which need to be
/// satisfied to take the associated action.
/// If empty, the default behaviour applies - the counter of failed pods,
/// represented by the jobs's .status.failed field, is incremented and it is
/// checked against the backoffLimit. This field cannot be used in combination
/// with restartPolicy=OnFailure.
///
/// +optional
#[prost(message, optional, tag = "11")]
pub pod_failure_policy: ::core::option::Option<PodFailurePolicy>,
/// successPolicy specifies the policy when the Job can be declared as succeeded.
/// If empty, the default behavior applies - the Job is declared as succeeded
/// only when the number of succeeded pods equals to the completions.
/// When the field is specified, it must be immutable and works only for the Indexed Jobs.
/// Once the Job meets the SuccessPolicy, the lingering pods are terminated.
///
/// This field is beta-level. To use this field, you must enable the
/// `JobSuccessPolicy` feature gate (enabled by default).
/// +optional
#[prost(message, optional, tag = "16")]
pub success_policy: ::core::option::Option<SuccessPolicy>,
/// Specifies the number of retries before marking this job failed.
/// Defaults to 6
/// +optional
#[prost(int32, optional, tag = "7")]
pub backoff_limit: ::core::option::Option<i32>,
/// Specifies the limit for the number of retries within an
/// index before marking this index as failed. When enabled the number of
/// failures per index is kept in the pod's
/// batch.kubernetes.io/job-index-failure-count annotation. It can only
/// be set when Job's completionMode=Indexed, and the Pod's restart
/// policy is Never. The field is immutable.
/// This field is beta-level. It can be used when the `JobBackoffLimitPerIndex`
/// feature gate is enabled (enabled by default).
/// +optional
#[prost(int32, optional, tag = "12")]
pub backoff_limit_per_index: ::core::option::Option<i32>,
/// Specifies the maximal number of failed indexes before marking the Job as
/// failed, when backoffLimitPerIndex is set. Once the number of failed
/// indexes exceeds this number the entire Job is marked as Failed and its
/// execution is terminated. When left as null the job continues execution of
/// all of its indexes and is marked with the `Complete` Job condition.
/// It can only be specified when backoffLimitPerIndex is set.
/// It can be null or up to completions. It is required and must be
/// less than or equal to 10^4 when is completions greater than 10^5.
/// This field is beta-level. It can be used when the `JobBackoffLimitPerIndex`
/// feature gate is enabled (enabled by default).
/// +optional
#[prost(int32, optional, tag = "13")]
pub max_failed_indexes: ::core::option::Option<i32>,
/// A label query over pods that should match the pod count.
/// Normally, the system sets this field for you.
/// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors>
/// +optional
#[prost(message, optional, tag = "4")]
pub selector:
::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::LabelSelector>,
/// manualSelector controls generation of pod labels and pod selectors.
/// Leave `manualSelector` unset unless you are certain what you are doing.
/// When false or unset, the system pick labels unique to this job
/// and appends those labels to the pod template. When true,
/// the user is responsible for picking unique labels and specifying
/// the selector. Failure to pick a unique label may cause this
/// and other jobs to not function correctly. However, You may see
/// `manualSelector=true` in jobs that were created with the old `extensions/v1beta1`
/// API.
/// More info: <https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector>
/// +optional
#[prost(bool, optional, tag = "5")]
pub manual_selector: ::core::option::Option<bool>,
/// Describes the pod that will be created when executing a job.
/// The only allowed template.spec.restartPolicy values are "Never" or "OnFailure".
/// More info: <https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/>
#[prost(message, optional, tag = "6")]
pub template: ::core::option::Option<super::super::core::v1::PodTemplateSpec>,
/// ttlSecondsAfterFinished limits the lifetime of a Job that has finished
/// execution (either Complete or Failed). If this field is set,
/// ttlSecondsAfterFinished after the Job finishes, it is eligible to be
/// automatically deleted. When the Job is being deleted, its lifecycle
/// guarantees (e.g. finalizers) will be honored. If this field is unset,
/// the Job won't be automatically deleted. If this field is set to zero,
/// the Job becomes eligible to be deleted immediately after it finishes.
/// +optional
#[prost(int32, optional, tag = "8")]
pub ttl_seconds_after_finished: ::core::option::Option<i32>,
/// completionMode specifies how Pod completions are tracked. It can be
/// `NonIndexed` (default) or `Indexed`.
///
/// `NonIndexed` means that the Job is considered complete when there have
/// been .spec.completions successfully completed Pods. Each Pod completion is
/// homologous to each other.
///
/// `Indexed` means that the Pods of a
/// Job get an associated completion index from 0 to (.spec.completions - 1),
/// available in the annotation batch.kubernetes.io/job-completion-index.
/// The Job is considered complete when there is one successfully completed Pod
/// for each index.
/// When value is `Indexed`, .spec.completions must be specified and
/// `.spec.parallelism` must be less than or equal to 10^5.
/// In addition, The Pod name takes the form
/// `$(job-name)-$(index)-$(random-string)`,
/// the Pod hostname takes the form `$(job-name)-$(index)`.
///
/// More completion modes can be added in the future.
/// If the Job controller observes a mode that it doesn't recognize, which
/// is possible during upgrades due to version skew, the controller
/// skips updates for the Job.
/// +optional
#[prost(string, optional, tag = "9")]
pub completion_mode: ::core::option::Option<::prost::alloc::string::String>,
/// suspend specifies whether the Job controller should create Pods or not. If
/// a Job is created with suspend set to true, no Pods are created by the Job
/// controller. If a Job is suspended after creation (i.e. the flag goes from
/// false to true), the Job controller will delete all active Pods associated
/// with this Job. Users must design their workload to gracefully handle this.
/// Suspending a Job will reset the StartTime field of the Job, effectively
/// resetting the ActiveDeadlineSeconds timer too. Defaults to false.
///
/// +optional
#[prost(bool, optional, tag = "10")]
pub suspend: ::core::option::Option<bool>,
/// podReplacementPolicy specifies when to create replacement Pods.
/// Possible values are:
/// - TerminatingOrFailed means that we recreate pods
/// when they are terminating (has a metadata.deletionTimestamp) or failed.
/// - Failed means to wait until a previously created Pod is fully terminated (has phase
/// Failed or Succeeded) before creating a replacement Pod.
///
/// When using podFailurePolicy, Failed is the the only allowed value.
/// TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use.
/// This is an beta field. To use this, enable the JobPodReplacementPolicy feature toggle.
/// This is on by default.
/// +optional
#[prost(string, optional, tag = "14")]
pub pod_replacement_policy: ::core::option::Option<::prost::alloc::string::String>,
/// ManagedBy field indicates the controller that manages a Job. The k8s Job
/// controller reconciles jobs which don't have this field at all or the field
/// value is the reserved string `kubernetes.io/job-controller`, but skips
/// reconciling Jobs with a custom value for this field.
/// The value must be a valid domain-prefixed path (e.g. acme.io/foo) -
/// all characters before the first "/" must be a valid subdomain as defined
/// by RFC 1123. All characters trailing the first "/" must be valid HTTP Path
/// characters as defined by RFC 3986. The value cannot exceed 63 characters.
/// This field is immutable.
///
/// This field is alpha-level. The job controller accepts setting the field
/// when the feature gate JobManagedBy is enabled (disabled by default).
/// +optional
#[prost(string, optional, tag = "15")]
pub managed_by: ::core::option::Option<::prost::alloc::string::String>,
}
/// JobStatus represents the current state of a Job.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct JobStatus {
/// 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.
///
/// A 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.
///
/// More info: <https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/>
/// +optional
/// +patchMergeKey=type
/// +patchStrategy=merge
/// +listType=atomic
#[prost(message, repeated, tag = "1")]
pub conditions: ::prost::alloc::vec::Vec<JobCondition>,
/// 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.
///
/// Once set, the field can only be removed when the job is suspended.
/// The field cannot be modified while the job is unsuspended or finished.
///
/// +optional
#[prost(message, optional, tag = "2")]
pub start_time: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::Time>,
/// 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.
/// +optional
#[prost(message, optional, tag = "3")]
pub completion_time: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::Time>,
/// The number of pending and running pods which are not terminating (without
/// a deletionTimestamp).
/// The value is zero for finished jobs.
/// +optional
#[prost(int32, optional, tag = "4")]
pub active: ::core::option::Option<i32>,
/// 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.
/// +optional
#[prost(int32, optional, tag = "5")]
pub succeeded: ::core::option::Option<i32>,
/// The number of pods which reached phase Failed.
/// The value increases monotonically.
/// +optional
#[prost(int32, optional, tag = "6")]
pub failed: ::core::option::Option<i32>,
/// The number of pods which are terminating (in phase Pending or Running
/// and have a deletionTimestamp).
///
/// This field is beta-level. The job controller populates the field when
/// the feature gate JobPodReplacementPolicy is enabled (enabled by default).
/// +optional
#[prost(int32, optional, tag = "11")]
pub terminating: ::core::option::Option<i32>,
/// 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".
/// +optional
#[prost(string, optional, tag = "7")]
pub completed_indexes: ::core::option::Option<::prost::alloc::string::String>,
/// 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.
///
/// This field is beta-level. It can be used when the `JobBackoffLimitPerIndex`
/// feature gate is enabled (enabled by default).
/// +optional
#[prost(string, optional, tag = "10")]
pub failed_indexes: ::core::option::Option<::prost::alloc::string::String>,
/// uncountedTerminatedPods holds the UIDs of Pods that have terminated but
/// the job controller hasn't yet accounted for in the status counters.
///
/// The 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
/// counter.
///
/// Old jobs might not be tracked using this field, in which case the field
/// remains null.
/// The structure is empty for finished jobs.
/// +optional
#[prost(message, optional, tag = "8")]
pub uncounted_terminated_pods: ::core::option::Option<UncountedTerminatedPods>,
/// The number of active pods which have a Ready condition and are not
/// terminating (without a deletionTimestamp).
#[prost(int32, optional, tag = "9")]
pub ready: ::core::option::Option<i32>,
}
/// JobTemplateSpec describes the data a Job should have when created from a template
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct JobTemplateSpec {
/// Standard object's metadata of the jobs created from this template.
/// More info: <https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata>
/// +optional
#[prost(message, optional, tag = "1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ObjectMeta>,
/// Specification of the desired behavior of the job.
/// More info: <https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status>
/// +optional
#[prost(message, optional, tag = "2")]
pub spec: ::core::option::Option<JobSpec>,
}
/// PodFailurePolicy describes how failed pods influence the backoffLimit.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PodFailurePolicy {
/// A list of pod failure policy rules. The rules are evaluated in order.
/// Once a rule matches a Pod failure, the remaining of the rules are ignored.
/// When no rule matches the Pod failure, the default handling applies - the
/// counter of pod failures is incremented and it is checked against
/// the backoffLimit. At most 20 elements are allowed.
/// +listType=atomic
#[prost(message, repeated, tag = "1")]
pub rules: ::prost::alloc::vec::Vec<PodFailurePolicyRule>,
}
/// PodFailurePolicyOnExitCodesRequirement describes the requirement for handling
/// a failed pod based on its container exit codes. In particular, it lookups the
/// .state.terminated.exitCode for each app container and init container status,
/// represented by the .status.containerStatuses and .status.initContainerStatuses
/// fields in the Pod status, respectively. Containers completed with success
/// (exit code 0) are excluded from the requirement check.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PodFailurePolicyOnExitCodesRequirement {
/// Restricts the check for exit codes to the container with the
/// specified name. When null, the rule applies to all containers.
/// When specified, it should match one the container or initContainer
/// names in the pod template.
/// +optional
#[prost(string, optional, tag = "1")]
pub container_name: ::core::option::Option<::prost::alloc::string::String>,
/// Represents the relationship between the container exit code(s) and the
/// specified values. Containers completed with success (exit code 0) are
/// excluded from the requirement check. Possible values are:
///
/// - In: the requirement is satisfied if at least one container exit code
/// (might be multiple if there are multiple containers not restricted
/// by the 'containerName' field) is in the set of specified values.
/// - NotIn: the requirement is satisfied if at least one container exit code
/// (might be multiple if there are multiple containers not restricted
/// by the 'containerName' field) is not in the set of specified values.
/// Additional values are considered to be added in the future. Clients should
/// react to an unknown operator by assuming the requirement is not satisfied.
#[prost(string, optional, tag = "2")]
pub operator: ::core::option::Option<::prost::alloc::string::String>,
/// Specifies the set of values. Each returned container exit code (might be
/// multiple in case of multiple containers) is checked against this set of
/// values with respect to the operator. The list of values must be ordered
/// and must not contain duplicates. Value '0' cannot be used for the In operator.
/// At least one element is required. At most 255 elements are allowed.
/// +listType=set
#[prost(int32, repeated, packed = "false", tag = "3")]
pub values: ::prost::alloc::vec::Vec<i32>,
}
/// PodFailurePolicyOnPodConditionsPattern describes a pattern for matching
/// an actual pod condition type.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PodFailurePolicyOnPodConditionsPattern {
/// Specifies the required Pod condition type. To match a pod condition
/// it is required that specified type equals the pod condition type.
#[prost(string, optional, tag = "1")]
pub r#type: ::core::option::Option<::prost::alloc::string::String>,
/// Specifies the required Pod condition status. To match a pod condition
/// it is required that the specified status equals the pod condition status.
/// Defaults to True.
#[prost(string, optional, tag = "2")]
pub status: ::core::option::Option<::prost::alloc::string::String>,
}
/// PodFailurePolicyRule describes how a pod failure is handled when the requirements are met.
/// One of onExitCodes and onPodConditions, but not both, can be used in each rule.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PodFailurePolicyRule {
/// Specifies the action taken on a pod failure when the requirements are satisfied.
/// Possible values are:
///
/// - FailJob: indicates that the pod's job is marked as Failed and all
/// running pods are terminated.
/// - FailIndex: indicates that the pod's index is marked as Failed and will
/// not be restarted.
/// This value is beta-level. It can be used when the
/// `JobBackoffLimitPerIndex` feature gate is enabled (enabled by default).
/// - Ignore: indicates that the counter towards the .backoffLimit is not
/// incremented and a replacement pod is created.
/// - Count: indicates that the pod is handled in the default way - the
/// counter towards the .backoffLimit is incremented.
/// Additional values are considered to be added in the future. Clients should
/// react to an unknown action by skipping the rule.
#[prost(string, optional, tag = "1")]
pub action: ::core::option::Option<::prost::alloc::string::String>,
/// Represents the requirement on the container exit codes.
/// +optional
#[prost(message, optional, tag = "2")]
pub on_exit_codes: ::core::option::Option<PodFailurePolicyOnExitCodesRequirement>,
/// Represents the requirement on the pod conditions. The requirement is represented
/// as a list of pod condition patterns. The requirement is satisfied if at
/// least one pattern matches an actual pod condition. At most 20 elements are allowed.
/// +listType=atomic
/// +optional
#[prost(message, repeated, tag = "3")]
pub on_pod_conditions: ::prost::alloc::vec::Vec<PodFailurePolicyOnPodConditionsPattern>,
}
/// SuccessPolicy describes when a Job can be declared as succeeded based on the success of some indexes.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SuccessPolicy {
/// rules represents the list of alternative rules for the declaring the Jobs
/// as successful before `.status.succeeded >= .spec.completions`. Once any of the rules are met,
/// the "SucceededCriteriaMet" condition is added, and the lingering pods are removed.
/// The terminal state for such a Job has the "Complete" condition.
/// Additionally, these rules are evaluated in order; Once the Job meets one of the rules,
/// other rules are ignored. At most 20 elements are allowed.
/// +listType=atomic
#[prost(message, repeated, tag = "1")]
pub rules: ::prost::alloc::vec::Vec<SuccessPolicyRule>,
}
/// SuccessPolicyRule describes rule for declaring a Job as succeeded.
/// Each rule must have at least one of the "succeededIndexes" or "succeededCount" specified.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SuccessPolicyRule {
/// succeededIndexes specifies the set of indexes
/// which need to be contained in the actual set of the succeeded indexes for the Job.
/// The list of indexes must be within 0 to ".spec.completions-1" and
/// must not contain duplicates. At least one element is required.
/// The indexes are represented as intervals separated by commas.
/// The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen.
/// The number are listed in 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".
/// When this field is null, this field doesn't default to any value
/// and is never evaluated at any time.
///
/// +optional
#[prost(string, optional, tag = "1")]
pub succeeded_indexes: ::core::option::Option<::prost::alloc::string::String>,
/// succeededCount specifies the minimal required size of the actual set of the succeeded indexes
/// for the Job. When succeededCount is used along with succeededIndexes, the check is
/// constrained only to the set of indexes specified by succeededIndexes.
/// For example, given that succeededIndexes is "1-4", succeededCount is "3",
/// and completed indexes are "1", "3", and "5", the Job isn't declared as succeeded
/// because only "1" and "3" indexes are considered in that rules.
/// When this field is null, this doesn't default to any value and
/// is never evaluated at any time.
/// When specified it needs to be a positive integer.
///
/// +optional
#[prost(int32, optional, tag = "2")]
pub succeeded_count: ::core::option::Option<i32>,
}
/// UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't
/// been accounted in Job status counters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UncountedTerminatedPods {
/// succeeded holds UIDs of succeeded Pods.
/// +listType=set
/// +optional
#[prost(string, repeated, tag = "1")]
pub succeeded: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// failed holds UIDs of failed Pods.
/// +listType=set
/// +optional
#[prost(string, repeated, tag = "2")]
pub failed: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
impl crate::Resource for CronJob {
const API_VERSION: &'static str = "batch/v1";
const GROUP: &'static str = "batch";
const VERSION: &'static str = "v1";
const KIND: &'static str = "CronJob";
const URL_PATH_SEGMENT: &'static str = "cronjobs";
type Scope = crate::NamespaceResourceScope;
}
impl crate::Metadata for CronJob {
type Ty = crate::apimachinery::pkg::apis::meta::v1::ObjectMeta;
fn metadata(&self) -> Option<&<Self as crate::Metadata>::Ty> {
self.metadata.as_ref()
}
fn metadata_mut(&mut self) -> Option<&mut <Self as crate::Metadata>::Ty> {
self.metadata.as_mut()
}
}
impl crate::HasSpec for CronJob {
type Spec = crate::api::batch::v1::CronJobSpec;
fn spec(&self) -> Option<&<Self as crate::HasSpec>::Spec> {
self.spec.as_ref()
}
fn spec_mut(&mut self) -> Option<&mut <Self as crate::HasSpec>::Spec> {
self.spec.as_mut()
}
}
impl crate::HasStatus for CronJob {
type Status = crate::api::batch::v1::CronJobStatus;
fn status(&self) -> Option<&<Self as crate::HasStatus>::Status> {
self.status.as_ref()
}
fn status_mut(&mut self) -> Option<&mut <Self as crate::HasStatus>::Status> {
self.status.as_mut()
}
}
impl crate::Resource for Job {
const API_VERSION: &'static str = "batch/v1";
const GROUP: &'static str = "batch";
const VERSION: &'static str = "v1";
const KIND: &'static str = "Job";
const URL_PATH_SEGMENT: &'static str = "jobs";
type Scope = crate::NamespaceResourceScope;
}
impl crate::Metadata for Job {
type Ty = crate::apimachinery::pkg::apis::meta::v1::ObjectMeta;
fn metadata(&self) -> Option<&<Self as crate::Metadata>::Ty> {
self.metadata.as_ref()
}
fn metadata_mut(&mut self) -> Option<&mut <Self as crate::Metadata>::Ty> {
self.metadata.as_mut()
}
}
impl crate::HasSpec for Job {
type Spec = crate::api::batch::v1::JobSpec;
fn spec(&self) -> Option<&<Self as crate::HasSpec>::Spec> {
self.spec.as_ref()
}
fn spec_mut(&mut self) -> Option<&mut <Self as crate::HasSpec>::Spec> {
self.spec.as_mut()
}
}
impl crate::HasStatus for Job {
type Status = crate::api::batch::v1::JobStatus;
fn status(&self) -> Option<&<Self as crate::HasStatus>::Status> {
self.status.as_ref()
}
fn status_mut(&mut self) -> Option<&mut <Self as crate::HasStatus>::Status> {
self.status.as_mut()
}
}
impl crate::HasConditions for Job {
type Condition = crate::api::batch::v1::JobCondition;
fn conditions(&self) -> Option<&[<Self as crate::HasConditions>::Condition]> {
self.status.as_ref().map(|s| s.conditions.as_slice())
}
fn conditions_mut(&mut self) -> Option<&mut Vec<<Self as crate::HasConditions>::Condition>> {
self.status.as_mut().and_then(|s| Some(s.conditions.as_mut()))
}
}