Fix deployment by the convention

This commit is contained in:
dvirlabs 2025-07-10 03:22:22 +03:00
parent b781fe57eb
commit 9980bc7fd6
2 changed files with 6 additions and 5 deletions

View File

@ -14,8 +14,8 @@ spec:
spec:
containers:
- name: tunedrop
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.tag }}"
imagePullPolicy: {{ .Values.backend.image.pullPolicy }}
env:
- name: MUSIC_DIR
value: {{ .Values.env.MUSIC_DIR | quote }}

View File

@ -1,7 +1,8 @@
backend:
image:
repository: my-apps/tunedrop
tag: latest
pullPolicy: IfNotPresent
tag: latest
ingress:
enabled: true