diff --git a/dist/index.js b/dist/index.js index c1d10967..73766848 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 54e0d6b5..e77c3e21 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/src/model/cloud-runner/providers/k8s/index.ts b/src/model/cloud-runner/providers/k8s/index.ts index b5fdb700..048a69b8 100644 --- a/src/model/cloud-runner/providers/k8s/index.ts +++ b/src/model/cloud-runner/providers/k8s/index.ts @@ -14,6 +14,7 @@ import { CoreV1Api } from '@kubernetes/client-node'; import CloudRunner from '../../cloud-runner'; import { ProviderResource } from '../provider-resource'; import { ProviderWorkflow } from '../provider-workflow'; +import { RemoteClientLogger } from '../../remote-client/remote-client-logger'; class Kubernetes implements ProviderInterface { public static Instance: Kubernetes; @@ -48,6 +49,7 @@ class Kubernetes implements ProviderInterface { body.data['logs'] = logs; body.metadata = { name: `${this.jobName}-logs` }; await this.kubeClient.createNamespacedConfigMap(this.namespace, body); + RemoteClientLogger.log(`Pushed logs to Kubernetes ConfigMap`); } async listResources(): Promise {