From c0a01e0aef5221d1f1fb3d8f7f7366ca720685dc Mon Sep 17 00:00:00 2001 From: Paul Fouquet Date: Fri, 1 Dec 2023 10:31:24 +1300 Subject: [PATCH] fix: argo-workflows kubernetes compoenent label is wrong --- infra/charts/argo.workflows.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/charts/argo.workflows.ts b/infra/charts/argo.workflows.ts index fbf6f253d..6d9d6656c 100644 --- a/infra/charts/argo.workflows.ts +++ b/infra/charts/argo.workflows.ts @@ -54,7 +54,7 @@ const appVersion = 'v3.4.11'; export class ArgoWorkflows extends Chart { constructor(scope: Construct, id: string, props: ArgoWorkflowsProps & ChartProps) { - super(scope, id, applyDefaultLabels(props, 'argo-workflows', appVersion, 'logs', 'workflows')); + super(scope, id, applyDefaultLabels(props, 'argo', appVersion, 'argo-workflows', 'workflows')); const artifactRepository = { archiveLogs: true,