Skip to content

Commit

Permalink
fix hardcoded migrate image (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
kisahm authored Nov 7, 2024
1 parent bc9d901 commit 4afdbdb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
serviceAccountName: {{ include "gpu-metrics-exporter.serviceAccountName" . }}
containers:
- name: migrate
image: alpine/k8s:1.31.0
image: "{{.Values.migrate.image.repository}}:{{.Values.migrate.image.tag}}"
command:
- /bin/sh
- -c
Expand Down
6 changes: 6 additions & 0 deletions charts/gpu-metrics-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,9 @@ gke:
- matchExpressions:
- key: cloud.google.com/gke-accelerator
operator: Exists

migrate:
image:
repository: alpine/k8s
pullPolicy: IfNotPresent
tag: 1.31.0

0 comments on commit 4afdbdb

Please sign in to comment.