Merge pull request #112 from V-Paranoiaque/fix-custom-image-tag

Fix when using a custom tag
This commit is contained in:
ARUNAVO RAY
2025-10-05 18:22:47 +05:30
committed by GitHub

View File

@@ -49,7 +49,7 @@ spec:
terminationGracePeriodSeconds: {{ .Values.deployment.terminationGracePeriodSeconds }}
containers:
- name: gitea-mirror
image: {{ .Values.image.registry }}/{{ .Values.image.repository }}:v{{ .Values.image.tag | default .Chart.AppVersion | toString }}
image: {{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default (printf "v%s" .Chart.AppVersion) }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
envFrom:
- configMapRef: