Skip to content

Commit

Permalink
fix hardcoded migrate image (#38)
Browse files Browse the repository at this point in the history
kisahm authored Nov 7, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent bc9d901 commit 4afdbdb
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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
6 changes: 6 additions & 0 deletions charts/gpu-metrics-exporter/values.yaml
Original file line number Diff line number Diff line change
@@ -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.