@@ -30,6 +30,9 @@ const (
3030 FluxCDSourceControllerResourceName = "fluxcd-source-controller"
3131 FluxCDKustomizationControllerResourceName = "fluxcd-kustomize-controller"
3232 FluxCDHelmControllerResourceName = "fluxcd-helm-controller"
33+ FluxCDNotificationControllerName = "fluxcd-notification-controller"
34+ FluxCDImageReflectorControllerName = "fluxcd-image-reflector-controller"
35+ FluxCDImageAutomationControllerName = "fluxcd-image-automation-controller"
3336
3437 EnvsDirectoryName = "envs"
3538 ResourcesDirectoryName = "resources"
@@ -251,6 +254,21 @@ func (m *DeploymentRepoManager) ApplyTemplates(ctx context.Context) error {
251254 return fmt .Errorf ("failed to apply fluxcd helm controller template input: %w" , err )
252255 }
253256
257+ err = applyFluxCDTemplateInput (templateInput , m .fluxcdCV , FluxCDNotificationControllerName , "notificationController" )
258+ if err != nil {
259+ return fmt .Errorf ("failed to apply fluxcd helm controller template input: %w" , err )
260+ }
261+
262+ err = applyFluxCDTemplateInput (templateInput , m .fluxcdCV , FluxCDImageReflectorControllerName , "imageReflectorController" )
263+ if err != nil {
264+ return fmt .Errorf ("failed to apply fluxcd image reflector controller template input: %w" , err )
265+ }
266+
267+ err = applyFluxCDTemplateInput (templateInput , m .fluxcdCV , FluxCDImageAutomationControllerName , "imageAutomationController" )
268+ if err != nil {
269+ return fmt .Errorf ("failed to apply fluxcd image automation controller template input: %w" , err )
270+ }
271+
254272 err = TemplateDir (m .templatesDir , templateInput , m .gitRepo )
255273 if err != nil {
256274 return fmt .Errorf ("failed to apply templates from directory %s: %w" , m .templatesDir , err )
0 commit comments