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 }, }, }, },