@catladder/cli
Version:
Panter cli tool for cloud CI/CD and DevOps
11 lines (10 loc) • 415 B
TypeScript
import type { ComponentContext } from "../../types";
import type { VariableValue } from "../../variables/VariableValue";
/**
* separate by secrets and public.
* we evalulate the actual values later, but want to store the secrets in kubernetes secrets
*/
export declare const createKubeEnv: (context: ComponentContext) => {
secret: Record<string, VariableValue>;
public: Record<string, VariableValue>;
};