import { KubernetesObject } from "@kubernetes/client-node"; import { kind } from "kubernetes-fluent-client"; import { Assets } from "./assets"; /** Generate the pepr-system namespace */ export declare function getNamespace(namespaceLabels?: Record): KubernetesObject; export declare function getWatcher(assets: Assets, hash: string, buildTimestamp: string, imagePullSecret?: string): kind.Deployment | null; export declare function getDeployment(assets: Assets, hash: string, buildTimestamp: string, imagePullSecret?: string): kind.Deployment | null; export declare function getModuleSecret(name: string, data: Buffer, hash: string): kind.Secret; export declare function service(name: string, assets: Assets): kind.Service | null; export declare function watcherService(name: string, assets: Assets): kind.Service | null; //# sourceMappingURL=k8sObjects.d.ts.map