import type { Deployment } from "kubernetes-models/apps/v1/Deployment"; import type { Job } from "kubernetes-models/batch/v1/Job"; declare type Manifest = Deployment | Job; /** * * This function will add a [[waitForPostgres | wait-for-postgres]] initContainer to the first container of a given [[Deployment]] * * ```typescript * import { addWaitForPostgres } from "@socialgouv/kosko-charts/utils" * * addWaitForPostgres(deployment); * ``` * @category utils * @return {Manifest} */ export declare const addWaitForPostgres: (deployment: Manifest) => Manifest; export {};