Add LimitRanges as Default Objects

Signed-off-by: Salomon Moreno <msalomon@vmware.com>
This commit is contained in:
Salomon Moreno
2022-06-16 16:04:05 -05:00
parent fe391c8bb4
commit 60e5f9fe68
6 changed files with 33 additions and 0 deletions
+7
View File
@@ -22,6 +22,7 @@ import {
V1HorizontalPodAutoscaler,
V1Ingress,
V1Job,
V1LimitRange,
V1Pod,
V1ReplicaSet,
V1Service,
@@ -97,6 +98,7 @@ export type FetchResponse =
| ServiceFetchResponse
| ConfigMapFetchResponse
| DeploymentFetchResponse
| LimitRangeFetchReponse
| ReplicaSetsFetchResponse
| HorizontalPodAutoscalersFetchResponse
| JobsFetchResponse
@@ -130,6 +132,11 @@ export interface ReplicaSetsFetchResponse {
resources: Array<V1ReplicaSet>;
}
export interface LimitRangeFetchReponse {
type: 'limitranges';
resources: Array<V1LimitRange>;
}
export interface HorizontalPodAutoscalersFetchResponse {
type: 'horizontalpodautoscalers';
resources: Array<V1HorizontalPodAutoscaler>;