Skip to content

Commit

Permalink
replace hardcoded image (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
kisahm authored Nov 1, 2024
1 parent 8f5a4cc commit 44c0d95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/gpu-metrics-exporter/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ spec:
{{- if eq .Values.provider "gke"}}
privileged: true
{{- end }}
image: "nvcr.io/nvidia/k8s/dcgm-exporter:3.3.7-3.5.0-ubuntu22.04"
imagePullPolicy: "IfNotPresent"
image: "{{ .Values.dcgmExporter.image.repository }}:{{ .Values.dcgmExporter.image.tag }}"
imagePullPolicy: {{ .Values.dcgmExporter.image.pullPolicy }}
command: [ "/bin/bash", "-c" ]
args:
{{- if eq .Values.provider "gke"}}
Expand Down

0 comments on commit 44c0d95

Please sign in to comment.