From 3c34f1cef34b598e47d79bbe2750bd4447760eec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Djema=C3=AF?= <53857555+SamyDjemai@users.noreply.github.com> Date: Wed, 6 Nov 2024 09:48:16 +0100 Subject: [PATCH] fix: add tolerations during reset pod creation --- .../src/main/kotlin/pods/factories/ReplicationPodFactory.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/airbyte-workload-launcher/src/main/kotlin/pods/factories/ReplicationPodFactory.kt b/airbyte-workload-launcher/src/main/kotlin/pods/factories/ReplicationPodFactory.kt index 0f586164ba..fbc93f03cb 100644 --- a/airbyte-workload-launcher/src/main/kotlin/pods/factories/ReplicationPodFactory.kt +++ b/airbyte-workload-launcher/src/main/kotlin/pods/factories/ReplicationPodFactory.kt @@ -153,6 +153,7 @@ data class ReplicationPodFactory( .withImagePullSecrets(imagePullSecrets) .withVolumes(replicationVolumes.allVolumes) .withNodeSelector(nodeSelectors) + .withTolerations(tolerations) .withAutomountServiceAccountToken(false) .withSecurityContext(workloadSecurityContextProvider.defaultPodSecurityContext()) .endSpec()