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
137
node_modules/@kubernetes/client-node/dist/gen/model/v1Container.js
generated
vendored
Normal file
137
node_modules/@kubernetes/client-node/dist/gen/model/v1Container.js
generated
vendored
Normal file
@@ -0,0 +1,137 @@
|
||||
"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.V1Container = void 0;
|
||||
/**
|
||||
* A single application container that you want to run within a pod.
|
||||
*/
|
||||
class V1Container {
|
||||
static getAttributeTypeMap() {
|
||||
return V1Container.attributeTypeMap;
|
||||
}
|
||||
}
|
||||
exports.V1Container = V1Container;
|
||||
V1Container.discriminator = undefined;
|
||||
V1Container.attributeTypeMap = [
|
||||
{
|
||||
"name": "args",
|
||||
"baseName": "args",
|
||||
"type": "Array<string>"
|
||||
},
|
||||
{
|
||||
"name": "command",
|
||||
"baseName": "command",
|
||||
"type": "Array<string>"
|
||||
},
|
||||
{
|
||||
"name": "env",
|
||||
"baseName": "env",
|
||||
"type": "Array<V1EnvVar>"
|
||||
},
|
||||
{
|
||||
"name": "envFrom",
|
||||
"baseName": "envFrom",
|
||||
"type": "Array<V1EnvFromSource>"
|
||||
},
|
||||
{
|
||||
"name": "image",
|
||||
"baseName": "image",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "imagePullPolicy",
|
||||
"baseName": "imagePullPolicy",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "lifecycle",
|
||||
"baseName": "lifecycle",
|
||||
"type": "V1Lifecycle"
|
||||
},
|
||||
{
|
||||
"name": "livenessProbe",
|
||||
"baseName": "livenessProbe",
|
||||
"type": "V1Probe"
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"baseName": "name",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "ports",
|
||||
"baseName": "ports",
|
||||
"type": "Array<V1ContainerPort>"
|
||||
},
|
||||
{
|
||||
"name": "readinessProbe",
|
||||
"baseName": "readinessProbe",
|
||||
"type": "V1Probe"
|
||||
},
|
||||
{
|
||||
"name": "resources",
|
||||
"baseName": "resources",
|
||||
"type": "V1ResourceRequirements"
|
||||
},
|
||||
{
|
||||
"name": "securityContext",
|
||||
"baseName": "securityContext",
|
||||
"type": "V1SecurityContext"
|
||||
},
|
||||
{
|
||||
"name": "startupProbe",
|
||||
"baseName": "startupProbe",
|
||||
"type": "V1Probe"
|
||||
},
|
||||
{
|
||||
"name": "stdin",
|
||||
"baseName": "stdin",
|
||||
"type": "boolean"
|
||||
},
|
||||
{
|
||||
"name": "stdinOnce",
|
||||
"baseName": "stdinOnce",
|
||||
"type": "boolean"
|
||||
},
|
||||
{
|
||||
"name": "terminationMessagePath",
|
||||
"baseName": "terminationMessagePath",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "terminationMessagePolicy",
|
||||
"baseName": "terminationMessagePolicy",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "tty",
|
||||
"baseName": "tty",
|
||||
"type": "boolean"
|
||||
},
|
||||
{
|
||||
"name": "volumeDevices",
|
||||
"baseName": "volumeDevices",
|
||||
"type": "Array<V1VolumeDevice>"
|
||||
},
|
||||
{
|
||||
"name": "volumeMounts",
|
||||
"baseName": "volumeMounts",
|
||||
"type": "Array<V1VolumeMount>"
|
||||
},
|
||||
{
|
||||
"name": "workingDir",
|
||||
"baseName": "workingDir",
|
||||
"type": "string"
|
||||
}
|
||||
];
|
||||
//# sourceMappingURL=v1Container.js.map
|
Reference in New Issue
Block a user