File Coverage

blib/lib/IO/K8s/Api/Core/V1/ContainerStatus.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::Core::V1::ContainerStatus;
2             # ABSTRACT: ContainerStatus contains details for the current status of this container.
3             our $VERSION = '1.008';
4 1     1   1143 use IO::K8s::Resource;
  1         2  
  1         7  
5              
6             k8s allocatedResources => { Str => 1 };
7              
8              
9             k8s allocatedResourcesStatus => ['Core::V1::ResourceStatus'];
10              
11              
12             k8s containerID => Str;
13              
14              
15             k8s image => Str, 'required';
16              
17              
18             k8s imageID => Str, 'required';
19              
20              
21             k8s lastState => 'Core::V1::ContainerState';
22              
23              
24             k8s name => Str, 'required';
25              
26              
27             k8s ready => Bool, 'required';
28              
29              
30             k8s resources => 'Core::V1::ResourceRequirements';
31              
32              
33             k8s restartCount => Int, 'required';
34              
35              
36             k8s started => Bool;
37              
38              
39             k8s state => 'Core::V1::ContainerState';
40              
41              
42             k8s user => 'Core::V1::ContainerUser';
43              
44              
45             k8s volumeMounts => ['Core::V1::VolumeMountStatus'];
46              
47              
48             1;
49              
50             __END__