File Coverage

blib/lib/IO/K8s/Api/Batch/V1/JobSpec.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package IO::K8s::Api::Batch::V1::JobSpec;
2             # ABSTRACT: JobSpec describes how the job execution will look like.
3             our $VERSION = '1.008';
4 4     4   3897 use IO::K8s::Resource;
  4         13  
  4         41  
5              
6             k8s activeDeadlineSeconds => Int;
7              
8              
9             k8s backoffLimit => Int;
10              
11              
12             k8s backoffLimitPerIndex => Int;
13              
14              
15             k8s completionMode => Str;
16              
17              
18             k8s completions => Int;
19              
20              
21             k8s managedBy => Str;
22              
23              
24             k8s manualSelector => Bool;
25              
26              
27             k8s maxFailedIndexes => Int;
28              
29              
30             k8s parallelism => Int;
31              
32              
33             k8s podFailurePolicy => 'Batch::V1::PodFailurePolicy';
34              
35              
36             k8s podReplacementPolicy => Str;
37              
38              
39             k8s selector => 'Meta::V1::LabelSelector';
40              
41              
42             k8s successPolicy => 'Batch::V1::SuccessPolicy';
43              
44              
45             k8s suspend => Bool;
46              
47              
48             k8s template => 'Core::V1::PodTemplateSpec', 'required';
49              
50              
51             k8s ttlSecondsAfterFinished => Int;
52              
53              
54             1;
55              
56             __END__