UNPKG

@catladder/pipeline

Version:

Panter workflow for cloud CI/CD and DevOps

5 lines 435 B
import type { Config, ComponentContext } from "../types"; import type { DeployConfigKubernetesCluster } from "./types"; export declare const getFullKubernetesClusterName: (cluster: DeployConfigKubernetesCluster) => string | undefined; export declare const getKubernetesNamespace: (config: Pick<Config, "customerName" | "appName">, env: string) => string; export declare const contextIsStoppable: (context: ComponentContext) => boolean;