Add node modules and compiled JavaScript from main (#54)
Co-authored-by: Oliver King <oking3@uncc.edu>
This commit is contained in:
committed by
GitHub
parent
4a983766a0
commit
52d71d28bd
62
node_modules/@kubernetes/client-node/dist/gen/model/v1beta1CSIStorageCapacity.js
generated
vendored
Normal file
62
node_modules/@kubernetes/client-node/dist/gen/model/v1beta1CSIStorageCapacity.js
generated
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
"use strict";
|
||||
/**
|
||||
* Kubernetes
|
||||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||||
*
|
||||
* The version of the OpenAPI document: v1.22.2
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.V1beta1CSIStorageCapacity = void 0;
|
||||
/**
|
||||
* 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. For example this can express things like: - StorageClass \"standard\" has \"1234 GiB\" available in \"topology.kubernetes.io/zone=us-east1\" - StorageClass \"localssd\" has \"10 GiB\" available in \"kubernetes.io/hostname=knode-abc123\" The following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero The producer of these objects can decide which approach is more suitable. They are consumed by the kube-scheduler if the CSIStorageCapacity beta feature gate is enabled there and a CSI driver opts into capacity-aware scheduling with CSIDriver.StorageCapacity.
|
||||
*/
|
||||
class V1beta1CSIStorageCapacity {
|
||||
static getAttributeTypeMap() {
|
||||
return V1beta1CSIStorageCapacity.attributeTypeMap;
|
||||
}
|
||||
}
|
||||
exports.V1beta1CSIStorageCapacity = V1beta1CSIStorageCapacity;
|
||||
V1beta1CSIStorageCapacity.discriminator = undefined;
|
||||
V1beta1CSIStorageCapacity.attributeTypeMap = [
|
||||
{
|
||||
"name": "apiVersion",
|
||||
"baseName": "apiVersion",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "capacity",
|
||||
"baseName": "capacity",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "kind",
|
||||
"baseName": "kind",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "maximumVolumeSize",
|
||||
"baseName": "maximumVolumeSize",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "metadata",
|
||||
"baseName": "metadata",
|
||||
"type": "V1ObjectMeta"
|
||||
},
|
||||
{
|
||||
"name": "nodeTopology",
|
||||
"baseName": "nodeTopology",
|
||||
"type": "V1LabelSelector"
|
||||
},
|
||||
{
|
||||
"name": "storageClassName",
|
||||
"baseName": "storageClassName",
|
||||
"type": "string"
|
||||
}
|
||||
];
|
||||
//# sourceMappingURL=v1beta1CSIStorageCapacity.js.map
|
Reference in New Issue
Block a user