@catladder/cli
Version:
Panter cli tool for cloud CI/CD and DevOps
6 lines (5 loc) • 424 B
TypeScript
import type { Config, ComponentContext } from "../types";
import type { DeployConfigKubernetesCluster } from "./types";
export declare const getFullKubernetesClusterName: (cluster: DeployConfigKubernetesCluster) => string;
export declare const getKubernetesNamespace: (config: Pick<Config, "customerName" | "appName">, env: string) => string;
export declare const contextIsStoppable: (context: ComponentContext) => boolean;