We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dc0977 commit 6e73b3bCopy full SHA for 6e73b3b
src/logic/core.js
@@ -47,8 +47,8 @@ export async function processData(dirPath, k8sResources) {
47
48
await writeYaml(pod, `spec_${pod.metadata.name}`, `${dirPath}/${k8sType}/${pod.metadata.name}`);
49
50
- const logs = await getPodLogs(pod.metadata.name);
51
- console.log(`Gathering logs for pod ${pod}`);
+ const logs = await getPodLogs(pod);
+ console.log(`Gathering logs for pod ${pod.metadata.name}`);
52
for (const [containerName, logData] of Object.entries(logs)) {
53
await Deno.writeTextFile(
54
`${dirPath}/${k8sType}/${pod.metadata.name}/log_${containerName}.log`,
0 commit comments