UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

29 lines (28 loc) 725 B
import type { ComponentContext } from "../../types/context"; export declare const createMongodbBaseConfig: (context: ComponentContext) => { mongodb: { enabled: boolean; auth: { enabled: boolean; rootPassword: string; replicaSetKey: string; }; persistence: { storageClass: string; }; backup: { enabled: boolean; hostToBackup: string; pvcToBackup: string; image: string; schedule: string; volumeSnapshotClass: string; }; }; env: { secret: { MONGO_OPLOG_URL?: string; MONGO_URL: string; }; }; };