diff --git a/flux/src/overview/index.tsx b/flux/src/overview/index.tsx index 5348bebe7..d7bd7631d 100644 --- a/flux/src/overview/index.tsx +++ b/flux/src/overview/index.tsx @@ -148,13 +148,15 @@ export function FluxOverview() { const imageAutomationController = pods?.filter( pod => pod.metadata.labels?.['app'] === 'image-automation-controller' ); + const sourceWatcher = pods?.filter(pod => pod.metadata.labels?.['app'] === 'source-watcher'); return helmController?.concat( kustomizeController, notificationController, sourceController, imageReflectorController, - imageAutomationController + imageAutomationController, + sourceWatcher ); }, [pods]); diff --git a/flux/src/runtime/RuntimeList.tsx b/flux/src/runtime/RuntimeList.tsx index dbf0c086f..a405d184d 100644 --- a/flux/src/runtime/RuntimeList.tsx +++ b/flux/src/runtime/RuntimeList.tsx @@ -33,13 +33,15 @@ export function FluxRunTime() { const imageAutomationController = pods?.filter( pod => pod.metadata.labels?.['app'] === 'image-automation-controller' ); + const sourceWatcher = pods?.filter(pod => pod.metadata.labels?.['app'] === 'source-watcher'); const controllers = helmController?.concat( kustomizeController, notificationController, sourceController, imageReflectorController, - imageAutomationController + imageAutomationController, + sourceWatcher ); return (