From 3f7f00f3a0c765c2e32f70274fcad5e8fba0e628 Mon Sep 17 00:00:00 2001 From: justinsb Date: Wed, 6 Nov 2024 20:46:28 -0500 Subject: [PATCH] fix: don't include unmanageddetector in base This causes it to be included twice, which is an error. --- config/installbundle/base/kustomization.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/installbundle/base/kustomization.yaml b/config/installbundle/base/kustomization.yaml index c886f57a07..987747f618 100644 --- a/config/installbundle/base/kustomization.yaml +++ b/config/installbundle/base/kustomization.yaml @@ -22,5 +22,6 @@ resources: - ../components/roles - ../components/rolebindings - ../components/recorder - - ../components/unmanageddetector - - ../components/webhook \ No newline at end of file + - ../components/webhook + # Note: unmanageddetector is only used in namespaced mode + #- ../components/unmanageddetector \ No newline at end of file