From aaf91ab56a5f0532d4ddeec610d2b2c23731a824 Mon Sep 17 00:00:00 2001 From: Christophe Duong Date: Fri, 1 Apr 2022 16:05:20 +0200 Subject: [PATCH] Print docker image in logs when running on kube --- .../java/io/airbyte/workers/process/KubeProcessFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-workers/src/main/java/io/airbyte/workers/process/KubeProcessFactory.java b/airbyte-workers/src/main/java/io/airbyte/workers/process/KubeProcessFactory.java index 52afc70692ff0..33793c3738450 100644 --- a/airbyte-workers/src/main/java/io/airbyte/workers/process/KubeProcessFactory.java +++ b/airbyte-workers/src/main/java/io/airbyte/workers/process/KubeProcessFactory.java @@ -110,7 +110,7 @@ public Process create(final String jobId, try { // used to differentiate source and destination processes with the same id and attempt final String podName = createPodName(imageName, jobId, attempt); - LOGGER.info("Attempting to start pod = {}", podName); + LOGGER.info("Attempting to start pod = {} for {}", podName, imageName); final int stdoutLocalPort = KubePortManagerSingleton.getInstance().take(); LOGGER.info("{} stdoutLocalPort = {}", podName, stdoutLocalPort);