File Coverage

blib/lib/IO/K8s/Api/Core/V1/ServiceAccount.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::ServiceAccount;
2             # ABSTRACT: ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets
3             our $VERSION = '1.008';
4 4     4   3899 use IO::K8s::APIObject;
  4         9  
  4         43  
5             with 'IO::K8s::Role::Namespaced';
6              
7              
8             k8s automountServiceAccountToken => Bool;
9              
10              
11             k8s imagePullSecrets => ['Core::V1::LocalObjectReference'];
12              
13              
14             k8s secrets => ['Core::V1::ObjectReference'];
15              
16             1;
17              
18             __END__