Skip to content

Commit f863931

Browse files
authored
mc-router: use consistent image tag default (#265)
1 parent 50657d5 commit f863931

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

charts/mc-router/Chart.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
apiVersion: v1
22
name: mc-router
3-
version: 1.2.6
4-
appVersion: 1.20.0
3+
version: 1.3.0
4+
# not used
5+
appVersion: 1.0.0
56
home: https://github.com/itzg/mc-router
67
description: Routes Minecraft client connections to backend servers based upon the requested server address.
78
keywords:

charts/mc-router/templates/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ spec:
4646
- name: {{ .Chart.Name }}
4747
securityContext:
4848
{{- toYaml .Values.securityContext | nindent 12 }}
49-
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
49+
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
5050
imagePullPolicy: {{ .Values.image.pullPolicy }}
5151
env:
5252
{{- include "mc-router.envMap" (list "IN_KUBE_CLUSTER" "true") }}

charts/mc-router/values.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ replicaCount: 1
66

77
image:
88
repository: itzg/mc-router
9-
pullPolicy: IfNotPresent
10-
# Overrides the image tag whose default is the chart appVersion.
11-
tag: ""
9+
tag: latest
10+
pullPolicy: Always
1211

1312
imagePullSecrets: []
1413
nameOverride: ""

0 commit comments

Comments
 (0)