12 streamStdout?: boolean 15export const streamPodLogs = async (props: PodLogsProps) => { 16 await retPodLogs({streamStdout: true, follow: true, timestamps: true, pretty: true, ...props}) 19export const retPodLogs = async ({name, fuzzyPodName, ...props}: PodLogsProps) => { 20 const {cluster_name} = props 21 let podH: {cluster_name: string, fuzzyPodName?: string, labels?: {name: string}} = {cluster_name, fuzzyPodName} 22 if (name) podH = {...podH, labels: {name}} 25 const {podName, containerName} = podInfo