diff --git a/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts b/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts index 349076468..dad98a3cd 100644 --- a/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts +++ b/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts @@ -232,7 +232,12 @@ export class KubeClient extends Client { await this.waitPodReady(name); if (longRunning) - await this.runCommand(["wait", "--for=condition=Ready", "--timeout=240s", `Pod/${name}`]); + await this.runCommand([ + "wait", + "--for=condition=Ready", + "--timeout=240s", + `Pod/${name}`, + ]); logTable = new CreateLogTable({ colWidths: [20, 100], @@ -569,7 +574,12 @@ export class KubeClient extends Client { xinfra, }); debug("waiting for pod: fileserver, to be ready"); - await this.runCommand(["wait", "--for=condition=Ready", "--timeout=240s", "Pod/fileserver"]); + await this.runCommand([ + "wait", + "--for=condition=Ready", + "--timeout=240s", + "Pod/fileserver", + ]); await this.waitPodReady("fileserver"); debug("pod: fileserver, ready"); let fileServerOk = false;