Add LimitRanges as Default Objects
Signed-off-by: Salomon Moreno <msalomon@vmware.com>
This commit is contained in:
@@ -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>;
|
||||
|
||||
Reference in New Issue
Block a user