import { autobind } from "../../utils"; import { KubeObject } from "../kube-object"; import { KubeApi } from "../kube-api"; @autobind() export class ServiceAccount extends KubeObject { static kind = "ServiceAccount"; static namespaced = true; static apiBase = "/api/v1/serviceaccounts" secrets?: { name: string; }[] imagePullSecrets?: { name: string; }[] getSecrets() { return this.secrets || []; } getImagePullSecrets() { return this.imagePullSecrets || []; } } export const serviceAccountsApi = new KubeApi({ objectConstructor: ServiceAccount, });