@daocloud-proto/kpanda 0.26.0-rc2-dev-e945da0d → 0.26.0-rc2-dev-aef3dec2
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.
|
@@ -195,7 +195,7 @@ export type Container = {
|
|
|
195
195
|
ports?: Ports[]
|
|
196
196
|
envFrom?: EnvFromSource[]
|
|
197
197
|
env?: EnvVar[]
|
|
198
|
-
resources?:
|
|
198
|
+
resources?: ResourceRequirements
|
|
199
199
|
volumeMounts?: VolumeMount[]
|
|
200
200
|
livenessProbe?: Probe
|
|
201
201
|
readinessProbe?: Probe
|
|
@@ -274,11 +274,7 @@ export type ResourceList = {
|
|
|
274
274
|
cpu?: string
|
|
275
275
|
memory?: string
|
|
276
276
|
storage?: string
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
export type ResourceRequirementsMap = {
|
|
280
|
-
limits?: {[key: string]: string}
|
|
281
|
-
requests?: {[key: string]: string}
|
|
277
|
+
resources?: {[key: string]: string}
|
|
282
278
|
}
|
|
283
279
|
|
|
284
280
|
export type ResourceRequirements = {
|