From 6dbcabe672b2e1b43ce264d29fd16cb28a1b5951 Mon Sep 17 00:00:00 2001 From: Phil Weir Date: Sun, 12 Jan 2025 01:34:20 +0000 Subject: [PATCH] fix: make worker default to general http image --- archesproject/Chart.yaml | 4 ++-- archesproject/templates/deployment-worker.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/archesproject/Chart.yaml b/archesproject/Chart.yaml index 78a02b7..a26ce90 100644 --- a/archesproject/Chart.yaml +++ b/archesproject/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 description: An initial Helm chart for archesproject.org software (unofficial) name: archesproject type: application -version: 0.0.14 -appVersion: "7.5.1" +version: 0.0.15 +appVersion: "7.6.4" keywords: - arches - heritage diff --git a/archesproject/templates/deployment-worker.yaml b/archesproject/templates/deployment-worker.yaml index 362bc23..5f09a64 100644 --- a/archesproject/templates/deployment-worker.yaml +++ b/archesproject/templates/deployment-worker.yaml @@ -33,7 +33,7 @@ spec: name: {{ template "arches.fullname" . }}-env securityContext: {{- toYaml .Values.securityContext | nindent 12 }} - image: "{{ default .Values.image.repository .Values.worker.image.repository }}:{{ default .Chart.AppVersion .Values.worker.image.tag | default .Values.image.tag }}" + image: "{{ default .Values.image.repository .Values.worker.image.repository }}:{{ .Values.worker.image.tag | default .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} resources: {{- toYaml .Values.resourcesWorker | nindent 12 }}