File Coverage

blib/lib/IO/K8s/Api/Core/V1/NodeStatus.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::NodeStatus;
2             # ABSTRACT: NodeStatus is information about the current status of a node.
3             our $VERSION = '1.008';
4 1     1   1672 use IO::K8s::Resource;
  1         3  
  1         11  
5              
6             k8s addresses => ['Core::V1::NodeAddress'];
7              
8              
9             k8s allocatable => { Str => 1 };
10              
11              
12             k8s capacity => { Str => 1 };
13              
14              
15             k8s conditions => ['Core::V1::NodeCondition'];
16              
17              
18             k8s config => 'Core::V1::NodeConfigStatus';
19              
20              
21             k8s daemonEndpoints => 'Core::V1::NodeDaemonEndpoints';
22              
23              
24             k8s features => 'Core::V1::NodeFeatures';
25              
26              
27             k8s images => ['Core::V1::ContainerImage'];
28              
29              
30             k8s nodeInfo => 'Core::V1::NodeSystemInfo';
31              
32              
33             k8s phase => Str;
34              
35              
36             k8s runtimeHandlers => ['Core::V1::NodeRuntimeHandler'];
37              
38              
39             k8s volumesAttached => ['Core::V1::AttachedVolume'];
40              
41              
42             k8s volumesInUse => [Str];
43              
44              
45             1;
46              
47             __END__