Skip to content

Commit 0c0a47e

Browse files
committed
chore(ai-worker): made initContainer image configurable with values
Signed-off-by: Daniel Hendricken <[email protected]>
1 parent 207ab61 commit 0c0a47e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

charts/nextcloud/templates/nextcloud-ai-worker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ spec:
4949
{{- toYaml .Values.aiWorker.podSecurityContext | nindent 8 }}
5050
initContainers:
5151
- name: wait-for-service
52-
image: alpine/curl
52+
image: {{ .Values.aiWorker.image.repository }}:{{ .Values.aiWorker.image.tag }}
5353
command:
5454
- sh
5555
- -c

charts/nextcloud/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -689,6 +689,11 @@ dnsConfig: {}
689689
aiWorker:
690690
enabled: false
691691

692+
image:
693+
repository: alpine/curl
694+
tag: latest
695+
pullPolicy: IfNotPresent
696+
692697
# Number of replicas to be deployed
693698
replicaCount: 1
694699

0 commit comments

Comments
 (0)