File Coverage

blib/lib/IO/K8s/CertManager.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 0 1 0.0
total 6 7 85.7


line stmt bran cond sub pod time code
1             package IO::K8s::CertManager;
2             # ABSTRACT: cert-manager CRD resource map provider for IO::K8s
3             our $VERSION = '1.008';
4 2     2   1778 use Moo;
  2         3  
  2         17  
5             with 'IO::K8s::Role::ResourceMap';
6              
7             sub resource_map {
8             return {
9             # cert-manager.io/v1
10 6     6 0 5410 Certificate => 'CertManager::V1::Certificate',
11             CertificateRequest => 'CertManager::V1::CertificateRequest',
12             Issuer => 'CertManager::V1::Issuer',
13             ClusterIssuer => 'CertManager::V1::ClusterIssuer',
14             # acme.cert-manager.io/v1
15             Order => 'CertManager::V1::Order',
16             Challenge => 'CertManager::V1::Challenge',
17             };
18             }
19              
20             1;
21              
22             __END__