@catladder/cli
Version:
Panter cli tool for cloud CI/CD and DevOps
37 lines (33 loc) • 1.27 kB
text/typescript
import type Vorpal from "vorpal";
import { getProjectPods } from "../../../../kubernetes";
import { logError } from "../../../../utils/log";
import { getProjectNamespace } from "../../../../utils/projects";
import { getShell } from "../../../../utils/shell";
import { envAndComponents } from "./utils/autocompletions";
import ensureCluster from "./utils/ensureCluster";
export default async (vorpal: Vorpal) =>
vorpal
.command(
"project-get-shell <envComponent>",
"get a shell to a pod in the environment",
)
.autocomplete(await envAndComponents())
.action(async function ({ envComponent }) {
await ensureCluster.call(this, envComponent);
const namespace = await getProjectNamespace(envComponent);
const pods = await getProjectPods(envComponent);
const runningPodNames = pods
.filter((p) => p.status.phase == "Running")
.map((r) => r.metadata.name);
if (runningPodNames.length === 0) {
logError(this, "sorry, no running pods found");
return;
}
const { podName } = await this.prompt({
type: "list",
name: "podName",
choices: runningPodNames,
message: "Which pod? 🤔",
});
return getShell(namespace, podName);
});