diff --git a/helm-charts/infisical/templates/backend-deployment.yaml b/helm-charts/infisical/templates/backend-deployment.yaml index 582a84788..09047dd58 100644 --- a/helm-charts/infisical/templates/backend-deployment.yaml +++ b/helm-charts/infisical/templates/backend-deployment.yaml @@ -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: diff --git a/helm-charts/infisical/templates/frontend-deployment.yaml b/helm-charts/infisical/templates/frontend-deployment.yaml index 3a5985132..762bd1852 100644 --- a/helm-charts/infisical/templates/frontend-deployment.yaml +++ b/helm-charts/infisical/templates/frontend-deployment.yaml @@ -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: