add doc comment, add cronjobs/jobs

Signed-off-by: Andrew Tran <atran@brex.com>
This commit is contained in:
Andrew Tran
2021-11-29 09:48:49 -06:00
parent 65ddccb5e8
commit 3a01096ddd
+9
View File
@@ -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;
};
};