@daocloud-proto/kpanda 0.26.0-dev-da375c2f → 0.26.0-dev-29789bc6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -83,7 +83,8 @@ export type VGPUNodeStats = {
|
|
|
83
83
|
physicalGpuNumber?: number
|
|
84
84
|
totalVirtualGpuNumber?: number
|
|
85
85
|
allocatedVirtualGpuNumber?: number
|
|
86
|
-
|
|
86
|
+
allocatedComputePower?: string
|
|
87
|
+
totalComputePower?: string
|
|
87
88
|
totalGpuMemory?: string
|
|
88
89
|
allocatedGpuMemory?: string
|
|
89
90
|
}
|
|
@@ -91,4 +92,5 @@ export type VGPUNodeStats = {
|
|
|
91
92
|
export type MIGNodeStats = {
|
|
92
93
|
totalGpuNumber?: number
|
|
93
94
|
allocatedGpuNumber?: number
|
|
95
|
+
totalMigNumber?: number
|
|
94
96
|
}
|
|
@@ -195,7 +195,7 @@ export type Container = {
|
|
|
195
195
|
ports?: Ports[]
|
|
196
196
|
envFrom?: EnvFromSource[]
|
|
197
197
|
env?: EnvVar[]
|
|
198
|
-
resources?:
|
|
198
|
+
resources?: ResourceRequirementsMap
|
|
199
199
|
volumeMounts?: VolumeMount[]
|
|
200
200
|
livenessProbe?: Probe
|
|
201
201
|
readinessProbe?: Probe
|
|
@@ -276,6 +276,11 @@ export type ResourceList = {
|
|
|
276
276
|
storage?: string
|
|
277
277
|
}
|
|
278
278
|
|
|
279
|
+
export type ResourceRequirementsMap = {
|
|
280
|
+
limits?: {[key: string]: string}
|
|
281
|
+
requests?: {[key: string]: string}
|
|
282
|
+
}
|
|
283
|
+
|
|
279
284
|
export type ResourceRequirements = {
|
|
280
285
|
limits?: ResourceList
|
|
281
286
|
requests?: ResourceList
|