| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package IO::K8s::Api::Storage::V1::CSIStorageCapacity; |
|
2
|
|
|
|
|
|
|
# ABSTRACT: CSIStorageCapacity stores the result of one CSI GetCapacity call. For a given StorageClass, this describes the available capacity in a particular topology segment. This can be used when considering where to instantiate new PersistentVolumes. |
|
3
|
|
|
|
|
|
|
our $VERSION = '1.008'; |
|
4
|
2
|
|
|
2
|
|
6099
|
use IO::K8s::APIObject; |
|
|
2
|
|
|
|
|
7
|
|
|
|
2
|
|
|
|
|
85
|
|
|
5
|
|
|
|
|
|
|
with 'IO::K8s::Role::Namespaced'; |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
k8s capacity => Quantity; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
k8s maximumVolumeSize => Quantity; |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
k8s nodeTopology => 'Meta::V1::LabelSelector'; |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
k8s storageClassName => Str, 'required'; |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__END__ |