1import { eptKubeCli } from "./eptKubeCliF.mts"2import type { WithClusterName } from '../ctxF/klusterCtxF.mts'4type KubePodsProps = WithClusterName & { labelSel: string }6export const kubePods = async ({cluster_name, labelSel}: KubePodsProps) => {7 await eptKubeCli([cluster_name, 'get', 'pod', '-l', labelSel])8}