Skip to content

Commit ad7d068

Browse files
committed
set anoter image for mongodb/arm64
Signed-off-by: Davanum Srinivas <[email protected]>
1 parent 078a877 commit ad7d068

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/e2e-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,8 @@ jobs:
221221
CTLPTL_YAML: ctlptl-config.yaml
222222
# Use same cluster name suffix for consistency
223223
CLUSTER_NAME_SUFFIX: "-${{ matrix.arch }}"
224+
# Override MongoDB image for ARM64 architecture
225+
MONGODB_IMAGE_OVERRIDE: ${{ matrix.arch == 'arm64' && 'docker.io/dlavrenuek/bitnami-mongodb-arm:8.0.4' || '' }}
224226
run: |
225227
make e2e-test-ci
226228

Tiltfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,13 @@ include('./health-monitors/gpu-health-monitor/Tiltfile')
8484
include('./health-monitors/syslog-health-monitor/Tiltfile')
8585
include('./labeler-module/Tiltfile')
8686

87+
mongodb_image_override = os.getenv('MONGODB_IMAGE_OVERRIDE')
8788
yaml = helm(
8889
'./distros/kubernetes/nvsentinel',
8990
name='nvsentinel',
9091
namespace='nvsentinel',
9192
values=['./distros/kubernetes/nvsentinel/values.yaml', './distros/kubernetes/nvsentinel/values-tilt.yaml'],
93+
set=['mongodb-store.mongodb.image=' + mongodb_image_override] if mongodb_image_override else [],
9294
)
9395
k8s_yaml(yaml)
9496

0 commit comments

Comments
 (0)