diff --git a/dist/index.js b/dist/index.js index 6cea69ec..0dbca4b2 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 ef16f0c9..a221581b 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 dd7450e8..cdb77273 100644 --- a/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts +++ b/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts @@ -101,6 +101,12 @@ class KubernetesTaskRunner { } } + const configMapLogs = await kubeClient.readNamespacedConfigMap(`${jobName}-logs`, namespace); + if (configMapLogs.body.data) { + const logs = configMapLogs.body.data[`logs`] || ``; + CloudRunnerLogger.log(logs); + } + return output; }