From 3a01096ddd472682d72890d21fce4f4f05f479ce Mon Sep 17 00:00:00 2001 From: Andrew Tran Date: Mon, 29 Nov 2021 09:48:49 -0600 Subject: [PATCH] add doc comment, add cronjobs/jobs Signed-off-by: Andrew Tran --- plugins/kubernetes-backend/schema.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/plugins/kubernetes-backend/schema.d.ts b/plugins/kubernetes-backend/schema.d.ts index 86f0653b53..fa8c35253d 100644 --- a/plugins/kubernetes-backend/schema.d.ts +++ b/plugins/kubernetes-backend/schema.d.ts @@ -63,6 +63,13 @@ export interface Config { apiVersion: string; plural: string; }>; + + /** + * (Optional) API Version Overrides + * If set, the specified api version will be used to make requests for the corresponding object. + * If running a legacy Kubernetes version, you may use this to override the default api versions + * that are not supported in your cluster. + */ apiVersionOverrides?: { pods?: string; services?: string; @@ -70,6 +77,8 @@ export interface Config { deployments?: string; replicasets?: string; horizontalpodautoscalers?: string; + cronjobs?: string; + jobs?: string; ingresses?: string; }; };