Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/kor/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
securityContext:
{{ toYaml . | nindent 12 }}
{{- end }}
image: "{{ .Values.prometheusExporter.deployment.image.repository }}:{{ .Values.prometheusExporter.deployment.image.tag }}"
image: "{{ .Values.prometheusExporter.deployment.image.repository }}:{{ .Values.prometheusExporter.deployment.image.tag | default (printf "v%s" .Chart.AppVersion) }}"
command:
{{- toYaml .Values.prometheusExporter.command | nindent 12 }}
args:
Expand Down
2 changes: 1 addition & 1 deletion charts/kor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ prometheusExporter:
deployment:
image:
repository: yonahdissen/kor
tag: latest
# tag: latest, default is appVersion read from Chart.yaml
restartPolicy: Always
imagePullPolicy: Always
imagePullSecrets: []
Expand Down