Skip to content

Commit

Permalink
fix(k8s): add force option to zcat read (#1753)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola authored Mar 26, 2024
1 parent 6095e06 commit 60f561a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,7 @@ export class KubeClient extends Client {
}

async readgzippedLogFile(podName: string, file: string): Promise<string> {
const args = ["exec", podName, "--", "zcat", file];
const args = ["exec", podName, "--", "zcat", "-f", file];
const result = await this.runCommand(args, {
scoped: true,
allowFail: false,
Expand Down

0 comments on commit 60f561a

Please sign in to comment.