File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -84,11 +84,13 @@ include('./health-monitors/gpu-health-monitor/Tiltfile')
8484include ('./health-monitors/syslog-health-monitor/Tiltfile' )
8585include ('./labeler-module/Tiltfile' )
8686
87+ mongodb_image_override = os .getenv ('MONGODB_IMAGE_OVERRIDE' )
8788yaml = 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)
9395k8s_yaml (yaml )
9496
You can’t perform that action at this time.
0 commit comments