| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package IO::K8s::Apimachinery::Pkg::Version::Info; |
|
2
|
|
|
|
|
|
|
# ABSTRACT: Info contains versioning information. how we'll want to distribute that information. |
|
3
|
|
|
|
|
|
|
our $VERSION = '1.008'; |
|
4
|
1
|
|
|
1
|
|
1668
|
use IO::K8s::Resource; |
|
|
1
|
|
|
|
|
4
|
|
|
|
1
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
k8s buildDate => Str, 'required'; |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
k8s compiler => Str, 'required'; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
k8s gitCommit => Str, 'required'; |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
k8s gitTreeState => Str, 'required'; |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
k8s gitVersion => Str, 'required'; |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
k8s goVersion => Str, 'required'; |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
k8s major => Str, 'required'; |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
k8s minor => Str, 'required'; |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
k8s platform => Str, 'required'; |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
1; |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
__END__ |