Kubernetes: Resource quotas as default objects (#20951)

* Fixed the lack of `resourcequotas`

Signed-off-by: Jente Sondervorst <jentesondervorst@gmail.com>

* Fixed the lack of `resourcequotas`

Signed-off-by: Jente Sondervorst <jentesondervorst@gmail.com>

* Fixed the lack of `resourcequotas`

Signed-off-by: Jente Sondervorst <jentesondervorst@gmail.com>

* Fixed the lack of `resourcequotas`

Signed-off-by: Jente Sondervorst <jentesondervorst@gmail.com>

---------

Signed-off-by: Jente Sondervorst <jentesondervorst@gmail.com>
This commit is contained in:
Jenson3210
2023-11-06 22:13:59 +01:00
committed by GitHub
parent f4d6e6382c
commit df40b067e1
8 changed files with 43 additions and 8 deletions
+1
View File
@@ -341,6 +341,7 @@ export type KubernetesObjectTypes =
| 'configmaps'
| 'deployments'
| 'limitranges'
| 'resourcequotas'
| 'replicasets'
| 'horizontalpodautoscalers'
| 'jobs'
@@ -78,6 +78,12 @@ export const DEFAULT_OBJECTS: ObjectToFetch[] = [
plural: 'limitranges',
objectType: 'limitranges',
},
{
group: '',
apiVersion: 'v1',
plural: 'resourcequotas',
objectType: 'resourcequotas',
},
{
group: 'apps',
apiVersion: 'v1',
@@ -95,6 +95,7 @@ export type KubernetesObjectTypes =
| 'configmaps'
| 'deployments'
| 'limitranges'
| 'resourcequotas'
| 'replicasets'
| 'horizontalpodautoscalers'
| 'jobs'