diff --git a/dist/index.js b/dist/index.js index 7d0347b6..6cafe525 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index bad2b12c..07255836 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts b/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts index f4a6bbfc..3362afbf 100644 --- a/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts +++ b/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts @@ -48,7 +48,10 @@ class KubernetesTaskRunner { } if (chunk.includes(`LOGS:`)) { const result = RemoteClientLogger.HandleLogChunkLine(chunk); - CloudRunnerLogger.log(`Logs found HandleLogChunkLineResult:${result}\n${chunk}`); + + // remove "LOGS: " and decode base64 remaining + const unpacked = Buffer.from(chunk.split(`LOGS: `)[1], 'base64').toString('ascii'); + CloudRunnerLogger.log(`Logs found HandleLogChunkLineResult:${result}\n${unpacked}`); } } };