@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
21 lines • 808 B
TypeScript
import type { InputOptions } from "../../interfaces";
type DeployEnvironmentRequestOptions = {
imageURL?: string;
} & InputOptions;
/**
* Prompt a question to ask for Cert Issuer: Let's Encrypt, Custom Issuer or None
* @param options
* @returns
*/
export declare const askForCertIssuer: (options?: {
question?: string;
defaultValue?: string;
}) => Promise<"none" | "letsencrypt" | "custom">;
export declare const askForDeployEnvironmentInfo: (options: DeployEnvironmentRequestOptions) => Promise<{
project: import("../../entities").IProject;
app: import("../../entities").IApp;
appConfig: import("../../interfaces").AppConfig;
deployEnvironment: import("../../interfaces").ClientDeployEnvironmentConfig;
}>;
export {};
//# sourceMappingURL=ask-deploy-environment-info.d.ts.map