Skip to content

Commit 290f7d8

Browse files
committed
chore: undo some changes
Signed-off-by: Ajay Mishra <[email protected]>
1 parent f7fcd85 commit 290f7d8

File tree

5 files changed

+4
-37
lines changed

5 files changed

+4
-37
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,6 @@ jobs:
118118
- component: file-server-cleanup
119119
make_command: 'make -C log-collector docker-publish-file-server-cleanup'
120120
container_name: 'nvsentinel/file-server-cleanup'
121-
- component: event-exporter
122-
make_command: 'make -C event-exporter docker-publish'
123-
container_name: 'nvsentinel/event-exporter'
124121
steps:
125122
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
126123
with:

docker/Makefile

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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-event-exporter build-log-collector
40+
build-all: build-gpu-health-monitor build-syslog-health-monitor build-metadata-collector build-log-collector
4141
@echo "All Docker images built successfully for local development"
4242

4343
# GPU health monitor (special case with DCGM variants)
@@ -67,11 +67,6 @@ 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-
7570
.PHONY: build-log-collector
7671
build-log-collector:
7772
@echo "Building log collector..."
@@ -84,7 +79,7 @@ build-log-collector:
8479

8580
# Publish all Docker images to registry (CI-like behavior)
8681
.PHONY: publish-all
87-
publish-all: publish-gpu-health-monitor publish-syslog-health-monitor publish-metadata-collector publish-event-exporter publish-log-collector
82+
publish-all: publish-gpu-health-monitor publish-syslog-health-monitor publish-metadata-collector publish-log-collector
8883
@echo "All Docker images published successfully to registry"
8984

9085
# GPU health monitor publish (special case with DCGM variants)
@@ -114,11 +109,6 @@ publish-metadata-collector:
114109
@echo "Publishing metadata collector..."
115110
$(MAKE) -C ../metadata-collector docker-publish
116111

117-
.PHONY: publish-event-exporter
118-
publish-event-exporter:
119-
@echo "Publishing event exporter..."
120-
$(MAKE) -C ../event-exporter docker-publish
121-
122112
.PHONY: publish-log-collector
123113
publish-log-collector:
124114
@echo "Publishing log collector..."

event-exporter/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# =============================================================================
88

99
IS_GO_MODULE := 1
10-
HAS_DOCKER := 1
10+
IS_KO_MODULE := 1
1111

1212
export CGO_ENABLED := 1
1313

event-exporter/Tiltfile

Lines changed: 0 additions & 21 deletions
This file was deleted.

scripts/build-image-list.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ out="versions.txt"
4444
# Define array of dynamic images with their respective tags (sorted!)
4545
declare -a dynamic_images=(
4646
"${CONTAINER_REGISTRY}/${CONTAINER_ORG}/nvsentinel/csp-health-monitor:${SAFE_REF_NAME}"
47+
"${CONTAINER_REGISTRY}/${CONTAINER_ORG}/nvsentinel/event-exporter:${SAFE_REF_NAME}"
4748
"${CONTAINER_REGISTRY}/${CONTAINER_ORG}/nvsentinel/fault-quarantine:${SAFE_REF_NAME}"
4849
"${CONTAINER_REGISTRY}/${CONTAINER_ORG}/nvsentinel/fault-remediation:${SAFE_REF_NAME}"
4950
"${CONTAINER_REGISTRY}/${CONTAINER_ORG}/nvsentinel/file-server-cleanup:${SAFE_REF_NAME}"

0 commit comments

Comments
 (0)