@@ -37,7 +37,7 @@ ALL_MODULES := $(GO_MODULES) $(PYTHON_MODULES) $(CONTAINER_MODULES)
3737
3838# Build all Docker images for local development
3939.PHONY : build-all
40- build-all : build-gpu-health-monitor build-syslog-health-monitor build-metadata-collector build-log-collector
40+ build-all : build-gpu-health-monitor build-syslog-health-monitor build-metadata-collector build-event-exporter build- log-collector
4141 @echo " All Docker images built successfully for local development"
4242
4343# GPU health monitor (special case with DCGM variants)
@@ -67,6 +67,11 @@ build-metadata-collector:
6767 @echo " Building metadata collector..."
6868 $(MAKE ) -C ../metadata-collector docker-build
6969
70+ .PHONY : build-event-exporter
71+ build-event-exporter :
72+ @echo " Building event exporter..."
73+ $(MAKE ) -C ../event-exporter docker-build
74+
7075.PHONY : build-log-collector
7176build-log-collector :
7277 @echo " Building log collector..."
@@ -79,7 +84,7 @@ build-log-collector:
7984
8085# Publish all Docker images to registry (CI-like behavior)
8186.PHONY : publish-all
82- publish-all : publish-gpu-health-monitor publish-syslog-health-monitor publish-metadata-collector publish-log-collector
87+ publish-all : publish-gpu-health-monitor publish-syslog-health-monitor publish-metadata-collector publish-event-exporter publish- log-collector
8388 @echo " All Docker images published successfully to registry"
8489
8590# GPU health monitor publish (special case with DCGM variants)
@@ -109,6 +114,11 @@ publish-metadata-collector:
109114 @echo " Publishing metadata collector..."
110115 $(MAKE ) -C ../metadata-collector docker-publish
111116
117+ .PHONY : publish-event-exporter
118+ publish-event-exporter :
119+ @echo " Publishing event exporter..."
120+ $(MAKE ) -C ../event-exporter docker-publish
121+
112122.PHONY : publish-log-collector
113123publish-log-collector :
114124 @echo " Publishing log collector..."
0 commit comments