| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package IO::K8s::Api::Core::V1::EndpointSubset; |
|
2
|
|
|
|
|
|
|
# ABSTRACT: EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. |
|
3
|
|
|
|
|
|
|
our $VERSION = '1.008'; |
|
4
|
3
|
|
|
3
|
|
3409
|
use IO::K8s::Resource; |
|
|
3
|
|
|
|
|
8
|
|
|
|
3
|
|
|
|
|
35
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
k8s addresses => ['Core::V1::EndpointAddress']; |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
k8s notReadyAddresses => ['Core::V1::EndpointAddress']; |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
k8s ports => ['Core::V1::EndpointPort']; |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
1; |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__END__ |