Skip to content

Commit

Permalink
fix: make worker settable
Browse files Browse the repository at this point in the history
  • Loading branch information
philtweir committed Oct 11, 2024
1 parent c2424c4 commit cd39c3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion archesproject/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
description: An initial Helm chart for archesproject.org software (unofficial)
name: archesproject
type: application
version: 0.0.11
version: 0.0.12
appVersion: "7.5.1"
keywords:
- arches
Expand Down
2 changes: 1 addition & 1 deletion archesproject/templates/deployment-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
name: {{ template "arches.fullname" . }}-env
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ default .Chart.AppVersion .Values.image.tag }}"
image: "{{ default .Values.image.repository .Values.worker.image.repository }}:{{ default .Chart.AppVersion .Values.worker.image.tag | default .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
resources:
{{- toYaml .Values.resourcesWorker | nindent 12 }}
Expand Down

0 comments on commit cd39c3c

Please sign in to comment.