@catladder/cli
Version:
Panter cli tool for cloud CI/CD and DevOps
20 lines • 560 B
TypeScript
export declare const commandKubePortForward: import("../../core").CommandDef<{
readonly namespace: {
readonly type: "string";
readonly message: "kubernetes namespace";
readonly positional: true;
};
readonly podName: {
readonly type: "string";
readonly message: "Which pod? 🤔";
readonly choices: (ctx: any) => Promise<any[]>;
};
readonly localPort: {
readonly type: "number";
readonly message: "Local port: ";
};
readonly remotePort: {
readonly type: "number";
readonly message: "Remote port: ";
};
}>;