From f1c87a2833cee5ab64b0436363ab1b0d4db38b8f Mon Sep 17 00:00:00 2001 From: Rokibul Hasan Date: Sun, 29 Oct 2023 22:22:37 +0600 Subject: [PATCH] Fix FluxCDHelmRepository Signed-off-by: Tamal Saha --- hub/helm.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hub/helm.go b/hub/helm.go index f11b20a8a..bf264adef 100644 --- a/hub/helm.go +++ b/hub/helm.go @@ -110,8 +110,8 @@ func FluxCDHelmRepository(kc client.Client) kmapi.TypedObjectReference { return kmapi.TypedObjectReference{ APIGroup: releasesapi.SourceGroupHelmRepository, Kind: releasesapi.SourceKindHelmRepository, - Namespace: FluxCDHelmRepositoryName(), - Name: BootstrapHelmRepositoryName(), + Namespace: BootstrapHelmRepositoryNamespace(), + Name: FluxCDHelmRepositoryName(), } } }