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: spec:
containers: containers:
- name: tunedrop - name: tunedrop
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.backend.image.pullPolicy }}
env: env:
- name: MUSIC_DIR - name: MUSIC_DIR
value: {{ .Values.env.MUSIC_DIR | quote }} value: {{ .Values.env.MUSIC_DIR | quote }}

View File

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