From 5a42daec6a20b2f456cf222418ace145fd562a53 Mon Sep 17 00:00:00 2001 From: Paul Fouquet Date: Fri, 19 Apr 2024 09:46:53 +1200 Subject: [PATCH] fix: node nodeAntiAffinity seems to break karpenter TDE-1112 --- infra/charts/argo.workflows.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/infra/charts/argo.workflows.ts b/infra/charts/argo.workflows.ts index 60790143e..0ab49a876 100644 --- a/infra/charts/argo.workflows.ts +++ b/infra/charts/argo.workflows.ts @@ -147,8 +147,10 @@ export class ArgoWorkflows extends Chart { }, ], parallelism: 3, - // FIXME: `nodeAntiAffinity` - to retry on different node - is not working yet (https://github.com/argoproj/argo-workflows/pull/12701) - retryStrategy: { limit: 2, affinity: { nodeAntiAffinity: {} } }, + /** TODO: `nodeAntiAffinity` - to retry on different node - is not working yet (https://github.com/argoproj/argo-workflows/pull/12701) + * `affinity: { nodeAntiAffinity: {} }` seems to break `karpenter`, need more investigation + */ + retryStrategy: { limit: 2 }, }, }, },