File Coverage

blib/lib/IO/K8s/Api/Node/V1/RuntimeClass.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::Node::V1::RuntimeClass;
2             # ABSTRACT: RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://kubernetes.io/docs/concepts/containers/runtime-class/
3             our $VERSION = '1.008';
4 1     1   1392 use IO::K8s::APIObject;
  1         3  
  1         11  
5              
6              
7             k8s handler => Str, 'required';
8              
9              
10             k8s overhead => 'Node::V1::Overhead';
11              
12              
13             k8s scheduling => 'Node::V1::Scheduling';
14              
15             1;
16              
17             __END__