From 2d76622f77f2ff54b87193e491664e0a4e2ae0a4 Mon Sep 17 00:00:00 2001 From: Frank Lin Date: Wed, 24 Dec 2025 17:23:44 +1000 Subject: [PATCH] Prevent Plugin source type from crashing manifest parsing --- source/Calamari/ArgoCD/Domain/ApplicationStatus.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Calamari/ArgoCD/Domain/ApplicationStatus.cs b/source/Calamari/ArgoCD/Domain/ApplicationStatus.cs index ae514006e9..1fed4c0583 100644 --- a/source/Calamari/ArgoCD/Domain/ApplicationStatus.cs +++ b/source/Calamari/ArgoCD/Domain/ApplicationStatus.cs @@ -41,11 +41,11 @@ public class StatusSummary public List Images { get; set; } = new List(); } -// Note: We only support these types currently. Argo offers Kustomize and Plugin as possible types though. public enum SourceType { Directory, Helm, - Kustomize + Kustomize, + Plugin } }