You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Enabled specifies whether the ROI dashboard should be available in the UI, and if the metrics infrastructure that provides dashboard data is deployed
@@ -3310,6 +3310,155 @@ declare class ManagementV1AgentAuditConfig {
3310
3310
}[];
3311
3311
constructor();
3312
3312
}
3313
+
declare class StorageV1Storage {
3314
+
/**
3315
+
* Size the size of the metrics backend\'s persistent volume
3316
+
*/
3317
+
"size"?: string;
3318
+
/**
3319
+
* StorageClass the storage class to use when provisioning the metrics backend\'s persistent volume If set to \"-\" or \"\" dynamic provisioning is disabled If set to undefined or null (the default), the cluster\'s default storage class is used for provisioning
* Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.
3340
+
*/
3341
+
"name": string;
3342
+
/**
3343
+
* Request is the name chosen for a request in the referenced claim. If empty, everything from the claim is made available, otherwise only the result of this request.
* Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. This field is immutable. It can only be set for containers.
3364
+
*/
3365
+
"claims"?: Array<V1ResourceClaim>;
3366
+
/**
3367
+
* Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
3368
+
*/
3369
+
"limits"?: {
3370
+
[key: string]: string;
3371
+
};
3372
+
/**
3373
+
* Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
declare class ManagementV1AgentCostControlConfig {
3441
+
/**
3442
+
* Enabled specifies whether the ROI dashboard should be available in the UI, and if the metrics infrastructure that provides dashboard data is deployed
* DefaultImageRegistry defines if we should prefix the virtual cluster image
3326
3476
*/
@@ -4322,133 +4472,6 @@ declare class ManagementV1ClusterVirtualClusterDefaults {
4322
4472
}[];
4323
4473
constructor();
4324
4474
}
4325
-
declare class StorageV1Storage {
4326
-
/**
4327
-
* Size the size of the metrics backend\'s persistent volume
4328
-
*/
4329
-
"size"?: string;
4330
-
/**
4331
-
* StorageClass the storage class to use when provisioning the metrics backend\'s persistent volume If set to \"-\" or \"\" dynamic provisioning is disabled If set to undefined or null (the default), the cluster\'s default storage class is used for provisioning
* Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.
4352
-
*/
4353
-
"name": string;
4354
-
/**
4355
-
* Request is the name chosen for a request in the referenced claim. If empty, everything from the claim is made available, otherwise only the result of this request.
* Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. This field is immutable. It can only be set for containers.
4376
-
*/
4377
-
"claims"?: Array<V1ResourceClaim>;
4378
-
/**
4379
-
* Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
4380
-
*/
4381
-
"limits"?: {
4382
-
[key: string]: string;
4383
-
};
4384
-
/**
4385
-
* Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
0 commit comments