Skip to content

Commit 2d62fa2

Browse files
committed
Removed saving Get for volumes
1 parent 4f7c581 commit 2d62fa2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.0
1+
4.0.1

src/utils/file-io.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ export async function fetchAndSaveData(type: RuntimeType, namespace: string) {
8585
if (itemType === 'Volumeclaims') {
8686
const pvcList = getPVCList(resources);
8787
await Deno.writeTextFile(`${dirPath}/VolumeClaimsList.txt`, pvcList);
88-
await writeGetApiCalls(resources.items, itemType);
88+
// await writeGetApiCalls(resources.items, itemType);
8989
continue;
9090
}
9191

9292
if (itemType === 'Volumes') {
9393
const pvList = getPVList(resources);
9494
await Deno.writeTextFile(`${dirPath}/VolumesList.txt`, pvList);
95-
await writeGetApiCalls(resources.items, itemType);
95+
// await writeGetApiCalls(resources.items, itemType);
9696
continue;
9797
}
9898

0 commit comments

Comments
 (0)