fix(chart): image tags default to latest

This commit is contained in:
Grraahaam
2023-01-31 02:10:28 +01:00
parent 2cc8e59ca8
commit aa5d761081
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ spec:
spec:
containers:
- name: {{ template "infisical.name" . }}-{{ $backend.name }}
image: "{{ $backend.image.repository }}:{{ $backend.image.tag | default .Chart.AppVersion }}"
image: "{{ $backend.image.repository }}:{{ $backend.image.tag | default "latest" }}"
imagePullPolicy: {{ $backend.image.pullPolicy }}
readinessProbe:
httpGet:

View File

@@ -25,7 +25,7 @@ spec:
spec:
containers:
- name: {{ template "infisical.name" . }}-{{ $frontend.name }}
image: "{{ $frontend.image.repository }}:{{ $frontend.image.tag | default .Chart.AppVersion }}"
image: "{{ $frontend.image.repository }}:{{ $frontend.image.tag | default "latest" }}"
imagePullPolicy: {{ $frontend.image.pullPolicy }}
readinessProbe:
httpGet: