Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion flux/src/overview/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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]);

Expand Down
4 changes: 3 additions & 1 deletion flux/src/runtime/RuntimeList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
Loading