@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
16 lines • 691 B
TypeScript
import type { ICluster } from "../../entities";
export interface InstallStackOptions {
skipable?: boolean;
onUpdate?: (msg: string, type?: "log" | "error" | "warn") => void;
}
/**
* Install `NGINX Ingress` stack to your cluster
* @copyright https://kubernetes.github.io/ingress-nginx/
*/
export declare const installNginxIngressStack: (cluster: ICluster, options?: InstallStackOptions) => Promise<string | boolean>;
/**
* Install `CertManager` stack to your cluster
* @copyright https://cert-manager.io/
*/
export declare const installCertManagerStack: (cluster: ICluster, options?: InstallStackOptions) => Promise<string | boolean>;
//# sourceMappingURL=stack-install.d.ts.map